/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B3A6B;
  --navy-light: #2a4f8e;
  --navy-dark: #0e1a35;
  --hero-bg: #0e1a35;
  --accent: #1B3A6B;
  --accent-blue: #4B9EFF;
  --green: #00b67a;
  --choice-blue: #3470d4;
  --white: #ffffff;
  --off-white: #F8F9FC;
  --gray-50: #fafafa;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.10), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12), 0 10px 10px -5px rgba(0,0,0,0.04);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-nav {
  background: var(--navy);
  color: var(--white);
  padding: 9px 20px;
  font-size: 14px;
  border-color: var(--navy);
  border-radius: 8px;
}

.btn-nav:hover { background: var(--navy-light); border-color: var(--navy-light); }

.btn-primary {
  background: linear-gradient(135deg, #5B9AF8 0%, #3B72E4 100%);
  color: var(--white);
  padding: 13px 28px;
  font-size: 15px;
  border: none;
  box-shadow: 0 4px 16px rgba(59,114,228,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px rgba(59,114,228,0.5);
  filter: brightness(1.07);
}

.btn-primary:active { transform: translateY(0) scale(0.97); }

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 700;
}

.btn-cta-white {
  background: var(--white);
  color: var(--navy);
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn-cta-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero-section {
  background: var(--hero-bg);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30,60,120,0.55) 0%, transparent 70%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Trustpilot badge */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.tp-stars {
  display: inline-flex;
  gap: 3px;
}

.tp-star {
  width: 22px;
  height: 22px;
  background: #00b67a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.tp-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.tp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #00b67a;
  border-radius: 2px;
  color: white;
  font-size: 10px;
}

.hero-eyebrow {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  margin-bottom: 16px;
  letter-spacing: 0;
}

.hero-headline {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.13;
  letter-spacing: -0.025em;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero-accent {
  color: var(--accent-blue);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.80);
  max-width: 580px;
  margin: 0 auto 28px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-sub strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

.hero-card-prompt {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

/* Hero two-choice cards — photo top, blue label bottom */
.hero-choices {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.choice-card {
  display: flex;
  flex-direction: column;
  background: var(--choice-blue);
  border-radius: 14px;
  width: 200px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: all 0.2s ease;
  cursor: pointer;
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

.choice-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.choice-label {
  background: var(--choice-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 14px 12px;
  line-height: 1.3;
}

.hero-image-wrap { margin-top: 48px; }
.hero-image { width: 100%; max-width: 700px; border-radius: 16px; box-shadow: var(--shadow-xl); }

/* ── As seen in ──────────────────────────────────────────────────────────── */
.seen-in-section {
  background: var(--hero-bg);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.seen-in-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
}

.seen-in-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section base ────────────────────────────────────────────────────────── */
.section { padding: 72px 0; background: var(--hero-bg); }
.section-light { background: var(--hero-bg); }
.section-alt { background: #0a1628; }
.section-dark { background: var(--hero-bg); }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.section-eyebrow.light { color: rgba(255,255,255,0.45); }

.section-heading {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-heading.white { color: var(--white); }
.section-heading.center { text-align: center; }

.section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.section-sub.center { text-align: center; }

.section-cta-row {
  text-align: center;
  margin-top: 48px;
}

/* ── How It Works — vertical list ────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.step-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.step-row:last-child { border-bottom: none; }

.step-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--choice-blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-num-check {
  background: #00b67a;
  font-size: 20px;
}

.step-body {}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.step-desc strong { color: rgba(255,255,255,0.90); }

/* ── Investor benefits ───────────────────────────────────────────────────── */
.benefits-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 768px) { .benefits-two-col { grid-template-columns: 1fr; gap: 36px; } }

.benefits-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  margin-bottom: 16px;
}

.benefits-intro strong { color: rgba(255,255,255,0.92); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.benefit-card p strong { color: rgba(255,255,255,0.95); }

.benefits-right-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.benefits-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.benefits-check-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding-left: 26px;
  position: relative;
  line-height: 1.55;
}

.benefits-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.benefits-check-list li strong { color: rgba(255,255,255,0.95); }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.testimonial-stars {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  flex: 1;
}

.testimonial-text strong { color: rgba(255,255,255,0.96); font-style: normal; }

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--choice-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ── About ───────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

.about-text {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text strong { color: var(--white); }

.about-list {
  list-style: none;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.about-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00b67a;
  font-weight: 700;
}

.about-list li strong { color: var(--white); }

.about-img-placeholder {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-icon { font-size: 80px; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s ease;
}

.faq-question:hover { background: rgba(255,255,255,0.04); }

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.40);
  flex-shrink: 0;
  line-height: 1;
}

details[open] .faq-question::after { content: '−'; }

.faq-answer {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  padding: 0 22px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.section-final-cta {
  background: var(--hero-bg);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 72px 0;
  text-align: center;
}

.cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.cta-heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  line-height: 1.2;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand {}

.footer-logo-text { color: var(--white); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  line-height: 1.5;
}

.footer-contact-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-contact-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  font-size: 16px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}

.contact-link {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-link:hover { color: var(--white); }

.contact-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255,255,255,0.65); }

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  max-width: 600px;
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-section { padding: 56px 0 64px; }
  .hero-choices { flex-direction: column; align-items: center; }
  .choice-card { width: 100%; max-width: 340px; }
  .section { padding: 56px 0; }
  .section-final-cta { padding: 60px 0; }
  .btn-lg { width: 100%; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
