@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0F172A;
  --blue: #3B82F6;
  --violet: #7C3AED;
  --blue-light: #60A5FA;
  --violet-light: #A78BFA;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  --gradient-soft: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-xl: 0 40px 100px rgba(15,23,42,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--gray-600); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge--blue {
  background: #EFF6FF;
  color: var(--blue);
  border: 1px solid #BFDBFE;
}

.badge--violet {
  background: #F5F3FF;
  color: var(--violet);
  border: 1px solid #DDD6FE;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.45);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn--secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
}

.btn--large { padding: 18px 36px; font-size: 1.05rem; }
.btn--small { padding: 10px 20px; font-size: 0.85rem; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 20px rgba(15,23,42,0.06);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  color: #0F172A;
  line-height: 1;
}

.nav__logo-x {
  background: linear-gradient(135deg, #3B82F6 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex: 1;
}

.nav__links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.15s ease;
}

.nav__links a:hover, .nav__links a.active {
  color: var(--navy);
  background: var(--gray-50);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}

/* ── HERO ── */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__content { position: relative; z-index: 1; }

.hero__badge { margin-bottom: 24px; }

.hero__headline {
  margin-bottom: 24px;
  color: var(--navy);
}

.hero__subline {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
}

.hero__trust-item .check {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__trust-item .check svg {
  width: 10px;
  height: 10px;
  stroke: white;
  stroke-width: 2.5;
}

/* HERO VISUAL */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__dashboard {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.hero__dashboard-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero__dashboard-body { padding: 24px; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.metric-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--gray-100);
}

.metric-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.metric-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.metric-card__change {
  font-size: 0.75rem;
  font-weight: 600;
  color: #10B981;
  margin-top: 2px;
}

.claim-list { display: flex; flex-direction: column; gap: 8px; }

.claim-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
}

.claim-item__info { display: flex; align-items: center; gap: 10px; }

.claim-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.claim-item__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.claim-item__id {
  font-size: 0.7rem;
  color: var(--gray-400);
}

.claim-item__amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.claim-item__badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.claim-item__badge--ready { background: #DCFCE7; color: #166534; }
.claim-item__badge--review { background: #FEF9C3; color: #854D0E; }
.claim-item__badge--filed { background: #EFF6FF; color: #1E40AF; }

/* ── TRUST BAR ── */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.trust-bar__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.trust-bar__logo:hover { color: var(--gray-400); }

.trust-bar__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-200);
  border-radius: 8px;
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section--alt { background: var(--gray-50); }
.section--dark { background: var(--navy); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section__badge { margin-bottom: 16px; }
.section__title { margin-bottom: 16px; color: var(--navy); }
.section__subtitle { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; }

/* ── VOICE SECTION ── */
.voice-section { padding: 100px 0; }

.voice-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.voice-section__taglines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.voice-tagline {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-200);
  transition: color 0.3s;
  line-height: 1.2;
  padding: 8px 0;
}

.voice-tagline.active { color: var(--navy); }
.voice-tagline span { display: block; }

.voice-section__copy {
  padding-left: 40px;
  border-left: 3px solid var(--gray-100);
}

.voice-section__copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--navy);
}

.voice-section__copy p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.specialty-tag {
  padding: 6px 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.2s;
}

.specialty-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #EFF6FF;
}

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.benefit-card:hover::before { opacity: 1; }

.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 100%);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-card__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  transition: all 0.3s;
  position: relative;
}

.step-card:hover .step-card__number {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}

.step-card__num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.step-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ── PRODUCT SHOWCASE ── */
.product-showcase {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.product-showcase::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.product-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.product-showcase__content h2 { color: white; margin-bottom: 16px; }
.product-showcase__content p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.feature-list li .check-icon {
  width: 22px;
  height: 22px;
  background: rgba(59,130,246,0.2);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-list li .check-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--blue-light);
  stroke-width: 2.5;
}

.product-showcase__screen {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.screen-header h4 {
  color: white;
  font-size: 0.9rem;
}

.screen-header .status-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(16,185,129,0.15);
  color: #6EE7B7;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16,185,129,0.3);
}

.progress-items { display: flex; flex-direction: column; gap: 14px; }

.progress-item { }

.progress-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.progress-item__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.progress-item__pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gradient);
  transition: width 1s ease;
}

/* ── WHO WE HELP ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.who-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: default;
}

.who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.who-card:hover .who-card__icon-bg {
  background: linear-gradient(135deg, #EFF6FF, #F5F3FF);
}

.who-card__icon-bg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gray-50);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  font-size: 1.35rem;
}

.who-card h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card__icon svg { width: 22px; height: 22px; }

.why-card h4 { margin-bottom: 8px; color: var(--navy); }
.why-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ── STATS ── */
.stats-section {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; }

.stat-item__value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.4;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gray-200); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.faq-item__question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.faq-item.open .faq-item__icon {
  background: var(--gradient);
  transform: rotate(45deg);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-500);
  stroke-width: 2;
}

.faq-item.open .faq-item__icon svg { stroke: white; }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-item__answer { max-height: 300px; }

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-500);
}

/* ── FINAL CTA ── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.06) 0%, rgba(124,58,237,0.04) 50%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 72px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand {}
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.footer__social-link:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.footer__col ul li a:hover { color: white; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}

.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ── MOBILE MENU ── */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.96);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  backdrop-filter: blur(20px);
}

.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
}

.page-hero__badge { margin-bottom: 20px; }
.page-hero__badge .badge { background: rgba(59,130,246,0.15); color: #93C5FD; border-color: rgba(59,130,246,0.3); }

.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.15rem; max-width: 580px; line-height: 1.7; }

/* ── FEATURES PAGE ── */
.features-section { padding: 100px 0; }

.features-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.feature-tab {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.feature-tab.active, .feature-tab:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

.features-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-big-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s;
}

.feature-big-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-big-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 16px;
}

.feature-big-card h3 { margin-bottom: 12px; font-size: 1.15rem; color: var(--navy); }
.feature-big-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }

/* ── ABOUT PAGE ── */
.about-mission { padding: 100px 0; }

.about-mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission__content h2 { margin-bottom: 24px; color: var(--navy); }
.about-mission__content p { font-size: 1.05rem; line-height: 1.8; color: var(--gray-500); margin-bottom: 20px; }

.about-mission__visual {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: white;
}

.about-mission__visual h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: white;
}

.mission-points { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.mission-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.mission-points li::before {
  content: '→';
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CONTACT PAGE ── */
.contact-section { padding: 100px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; color: var(--navy); }
.contact-info p { font-size: 1.05rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg { width: 20px; height: 20px; }

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 { margin-bottom: 32px; color: var(--navy); font-size: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select { appearance: none; cursor: pointer; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { display: none; }
  .hero__subline { max-width: 100%; }
  .voice-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .voice-section__copy { padding-left: 0; border-left: none; border-top: 3px solid var(--gray-100); padding-top: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .product-showcase__inner { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .features-big-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mission__inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 32px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__actions .btn:not(.btn--primary) { display: none; }
  .nav__mobile-toggle { display: flex; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  .hero { padding: 120px 0 80px; }
  .section { padding: 72px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .features-big-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar__logos { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-direction: column; align-items: flex-start; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-in { animation: fadeInUp 0.6s ease both; }
.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

.float { animation: float 4s ease-in-out infinite; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
