@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --navy:        #1E3A5F;
  --navy-deep:   #0F1D33;
  --navy-mid:    #162847;
  --navy-light:  #4A6FA5;
  --accent:      #5B8CC9;
  --white:       #FFFFFF;
  --cream:       #FAF8F5;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-border: #E5E7EB;
  --gray-text:   #6B7280;
  --gray-dark:   #1A1A1A;
  --red-soft:    #EF4444;
  --gold:        #F59E0B;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --page-px: clamp(1.25rem, 5vw, 6rem);
  --max-w: 1140px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Noise texture ── */

.hero-noise,
.section-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  z-index: 0;
}

/* Sections sit flush — no gradient dividers */

/* ── Utilities ── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.section-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #8BB8E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-copy {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.7;
  max-width: 560px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.hide-mobile { display: inline; }
@media (max-width: 767px) { .hide-mobile { display: none; } }
@media (max-width: 600px) { .section-copy { text-align: left; } }

/* ── Reveal system ── */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-reveal="left"]             { transform: translate3d(-30px, 0, 0); }
[data-reveal="left"].is-visible  { transform: translate3d(0, 0, 0); }

[data-reveal="right"]            { transform: translate3d(30px, 0, 0); }
[data-reveal="right"].is-visible { transform: translate3d(0, 0, 0); }

[data-reveal="scale"]            { transform: scale(0.92) translate3d(0, 0, 0); }
[data-reveal="scale"].is-visible { transform: scale(1) translate3d(0, 0, 0); }

[data-reveal="bounce"] {
  transform: scale(0.6) translate3d(0, 0, 0);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s var(--ease-spring);
}
[data-reveal="bounce"].is-visible { transform: scale(1) translate3d(0, 0, 0); }

/* Closing lines are animated by JS scroll progress — disable CSS reveal */
.closing-lines p[data-reveal] {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="left"],
  [data-reveal="right"],
  [data-reveal="scale"],
  [data-reveal="bounce"] {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .closing-lines p { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════ */
/* NAV                                         */
/* ═══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem var(--page-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(15, 29, 51, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-brand:hover .nav-logo { opacity: 1; }

.nav-wordmark {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  background: var(--white) !important;
  color: var(--navy-deep) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91, 140, 201, 0.3);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-overlay { display: none; }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }

  .nav-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(15, 29, 51, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }

  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-overlay a {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
  }
}

/* ═══════════════════════════════════════════ */
/* 1. HERO                                     */
/* ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding: 6rem var(--page-px) 4rem;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(30, 58, 95, 0.45), transparent),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(74, 111, 165, 0.18), transparent),
    var(--navy-deep);
  will-change: transform;
  backface-visibility: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(91, 140, 201, 0.08);
  top: 10%;
  left: -10%;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(30, 58, 95, 0.12);
  bottom: 5%;
  right: -10%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  filter: grayscale(0.4) brightness(0.7) contrast(1.05);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, transparent 0%, rgba(15, 29, 51, 0.85) 100%),
    linear-gradient(to bottom, rgba(15, 29, 51, 0.15) 0%, rgba(15, 29, 51, 0.6) 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0.6rem 1.5rem;
  background: rgba(91, 140, 201, 0.18);
  border: 1px solid rgba(91, 140, 201, 0.35);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: hero-sub-in 0.6s var(--ease-out-expo) 0.05s both;
  box-shadow: 0 0 20px rgba(91, 140, 201, 0.15);
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  animation: badge-shimmer 2.8s ease-in-out infinite;
}

@keyframes badge-shimmer {
  0%   { left: -80%; }
  100% { left: 160%; }
}

.hero-heading {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.hero-heading span { display: block; overflow: hidden; }

@keyframes hero-line-up {
  from { clip-path: inset(0 0 100% 0); transform: translateY(30px); filter: blur(4px); }
  to   { clip-path: inset(0 0 0 0);    transform: translateY(0);    filter: blur(0); }
}

.hero-heading span:nth-child(1) { animation: hero-line-up 1s var(--ease-out-expo) 0.15s both; }

@keyframes hero-sub-in {
  from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.hero-tagline {
  font-size: clamp(1.125rem, 4vw, 2.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  white-space: nowrap;
  animation: hero-sub-in 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-sub {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  animation: hero-sub-in 0.8s var(--ease-out-expo) 0.55s both;
}

/* VSL */
.vsl-wrapper {
  margin-bottom: 2.5rem;
}

.vsl-placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.vsl-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(91, 140, 201, 0.3), transparent 50%, rgba(91, 140, 201, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.vsl-placeholder:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 140, 201, 0.3);
  box-shadow: 0 0 60px rgba(91, 140, 201, 0.08);
}

.vsl-placeholder:hover::before { opacity: 1; }

.vsl-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vsl-placeholder:hover .vsl-play {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.18);
}

.vsl-play svg {
  width: 22px;
  height: 22px;
  color: var(--white);
  margin-left: 2px;
}

.vsl-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Hero CTA */
@keyframes hero-btn-in {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-cta-group {
  animation: hero-btn-in 0.7s var(--ease-out-expo) 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 2.25rem;
  background: var(--white);
  color: var(--navy-deep);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.3s;
  letter-spacing: -0.01em;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 60px rgba(91, 140, 201, 0.15);
}

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

.btn-primary--dark {
  background: var(--navy);
  color: var(--white);
}

.btn-primary--dark:hover {
  box-shadow: 0 8px 30px rgba(15, 29, 51, 0.3), 0 0 40px rgba(91, 140, 201, 0.1);
}

.hero-hint {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
  font-weight: 500;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.25; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

.scroll-hint {
  animation: scroll-bounce 2.5s ease-in-out infinite 2s;
  opacity: 0;
}

.scroll-hint svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255, 255, 255, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-heading span,
  .hero-sub,
  .hero-hint,
  .hero-cta-group,
  .btn-primary {
    animation: none !important;
    clip-path: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
  .scroll-hint { animation: none; opacity: 0.4; }
  .hero-badge::after { animation: none; }
}

@media (max-width: 767px) {
  .hero { padding: 5rem 1.25rem 3rem; }
  .hero-video { opacity: 0.22; }
  .btn-primary { width: 100%; padding: 1rem 1.5rem; }
  .vsl-placeholder { aspect-ratio: 16 / 10; border-radius: var(--radius-md); }
  .vsl-play { width: 48px; height: 48px; }
  .vsl-play svg { width: 18px; height: 18px; }
}

/* ═══════════════════════════════════════════ */
/* 2. PROBLEM                                  */
/* ═══════════════════════════════════════════ */

.problem {
  background: var(--cream);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.problem-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.problem .eyebrow { color: var(--navy-light); text-align: center; }
.problem-intro .section-heading { color: var(--navy); }
.problem-intro .section-copy { color: var(--gray-text); margin: 0 auto; text-align: center; }

.problem-lead {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 2rem;
  font-style: italic;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15, 29, 51, 0.06);
}

.problem-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.problem-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-card-icon svg { width: 20px; height: 20px; }

.problem-card-icon--fb {
  background: #E8F0FE;
  color: #1877F2;
}

.problem-card-icon--web {
  background: var(--gray-100);
  color: var(--gray-text);
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.problem-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.problem-card li {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.55;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.problem-x {
  color: var(--red-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.problem-punchline {
  text-align: center;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--gray-text);
  line-height: 1.7;
}

.problem-punchline strong {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 767px) {
  .problem-cards { grid-template-columns: 1fr; }
  .problem-card { padding: 1.5rem 1.25rem; }
}

/* ═══════════════════════════════════════════ */
/* 3. SOLUTION                                 */
/* ═══════════════════════════════════════════ */

.solution {
  background: var(--navy-deep);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.solution-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.solution-orb--1 {
  width: 450px;
  height: 450px;
  background: rgba(30, 58, 95, 0.35);
  top: -15%;
  right: -8%;
}

.solution-orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(91, 140, 201, 0.08);
  bottom: -15%;
  left: -8%;
}

.solution .eyebrow { color: var(--accent); text-align: center; }
.solution .section-heading { color: var(--white); text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

.solution-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.solution-feature {
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}

.solution-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 140, 201, 0.2);
  transform: translateY(-4px);
}

.solution-feature-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s, width 0.3s;
}

.solution-feature:hover .solution-feature-line {
  opacity: 1;
  width: 60px;
}

.solution-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  border-radius: 14px;
  background: rgba(91, 140, 201, 0.1);
  border: 1px solid rgba(91, 140, 201, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.solution-feature:hover .solution-icon-wrap {
  background: rgba(91, 140, 201, 0.18);
  transform: scale(1.05);
}

.solution-icon-wrap svg { width: 24px; height: 24px; }

.solution-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.solution-feature p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 767px) {
  .solution-features { grid-template-columns: 1fr; gap: 1rem; }
  .solution-feature { padding: 1.75rem 1.25rem 1.5rem; }
}

/* ═══════════════════════════════════════════ */
/* 4. MID-PAGE CTA                             */
/* ═══════════════════════════════════════════ */

.mid-cta {
  background: var(--white);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.mid-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.mid-cta-heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.mid-cta-right {
  display: contents;
}

.mid-cta-copy {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: var(--gray-text);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .mid-cta-inner {
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .mid-cta .btn-primary--dark { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════ */
/* 5. TESTIMONIALS                             */
/* ═══════════════════════════════════════════ */

.testimonials {
  background: var(--cream);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.testimonials .eyebrow { color: var(--navy-light); }
.testimonials .section-heading { color: var(--navy); margin-bottom: 2rem; text-align: center; }

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1.5rem;
  cursor: grab;
}

.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.testimonial-card {
  flex: 0 0 min(82vw, 320px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15, 29, 51, 0.06);
}


.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-dark);
  flex: 1;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

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

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.testimonial-arrow:hover {
  border-color: var(--navy-light);
  background: var(--gray-50);
  transform: scale(1.05);
}

.testimonial-arrow svg { width: 18px; height: 18px; color: var(--navy); }

.testimonial-dots {
  display: flex;
  gap: 0.375rem;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testimonial-dot.is-active {
  background: var(--navy);
  transform: scale(1.4);
}

@media (min-width: 768px) {
  .testimonial-card { flex: 0 0 320px; }
}

/* ═══════════════════════════════════════════ */
/* 6. SELLERS                                  */
/* ═══════════════════════════════════════════ */

.sellers {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.sellers .eyebrow { color: var(--navy-light); }
.sellers .section-heading { color: var(--navy); font-size: clamp(2rem, 5.5vw, 3.5rem); text-align: center; }

.sellers-sub {
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  max-width: none;
  white-space: nowrap;
  text-align: center;
}

.sellers-sub strong {
  font-weight: 900;
  color: var(--navy);
}

.sellers-sub em {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

.seller-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.seller-card {
  width: calc(33.333% - 0.85rem);
  background: var(--gray-50);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
}

.seller-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 29, 51, 0.06);
  border-color: rgba(91, 140, 201, 0.2);
}


.seller-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.seller-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.seller-card p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 767px) {
  .seller-card { width: 100%; padding: 1.5rem 1.25rem; }
  .seller-num { font-size: 1.75rem; }
  .sellers-sub { white-space: normal; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .seller-card { width: calc(50% - 0.75rem); }
}

.sellers-cta {
  margin-top: 3rem;
  text-align: center;
}

.sellers-cta-copy {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════ */
/* 7. RECAP                                    */
/* ═══════════════════════════════════════════ */

.recap {
  background: var(--navy-deep);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.recap .section-heading { color: var(--white); margin-bottom: 2.5rem; }

.recap-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.recap-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.recap-icon svg { width: 100%; height: 100%; }

.recap-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.recap-item p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  text-align: center;
}

.recap .btn-primary { animation: none; }

@media (max-width: 767px) {
  .recap-items {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .recap .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .recap-item h3 { font-size: 1.5rem; }
  .recap-item p { font-size: 1.125rem; }

  .recap .btn-primary { width: 100%; }
}

/* ═══════════════════════════════════════════ */
/* 8. REPUTATION                               */
/* ═══════════════════════════════════════════ */

.reputation {
  background: var(--cream);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.reputation-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.reputation .eyebrow { color: var(--navy-light); }
.reputation .section-heading { color: var(--navy); max-width: 560px; text-align: center; font-size: clamp(1.5rem, 4vw, 2.6rem); }
.reputation .section-copy { color: var(--gray-text); margin-bottom: 1rem; }
.reputation .section-copy:last-child { margin-bottom: 0; }

.reputation-visual {
  display: flex;
  justify-content: center;
}

.reputation-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 300px;
  width: 100%;
}

.reputation-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 1rem;
}

.reputation-step-dot {
  grid-column: 1;
  grid-row: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  z-index: 1;
}

.reputation-step-dot svg { width: 20px; height: 20px; }

.reputation-step--done .reputation-step-dot {
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-color: transparent;
  color: var(--white);
}

.reputation-step-line {
  grid-column: 1;
  grid-row: 2;
  width: 2px;
  background: var(--gray-border);
  justify-self: center;
  min-height: 1.5rem;
}

.reputation-step-content {
  grid-column: 2;
  grid-row: 1 / -1;
  padding: 0.5rem 0 1.5rem;
}

.reputation-step:last-child .reputation-step-content {
  padding-bottom: 0;
}

.reputation-step-content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.reputation-step-content p {
  font-size: 0.8125rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.reputation-note {
  margin-top: 1.5rem;
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: var(--gray-text);
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 767px) {
  .reputation-content { grid-template-columns: 1fr; }
  .reputation-steps { max-width: 280px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════ */
/* 9. FOR WHOM                                 */
/* ═══════════════════════════════════════════ */

.for-whom {
  background: var(--navy-deep);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.for-whom .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.for-whom .eyebrow { color: var(--accent); }
.for-whom-text { display: block; text-align: center; }
.for-whom .section-heading { color: var(--white); white-space: nowrap; font-size: clamp(1.6rem, 4.5vw, 2.6rem); }
.for-whom .section-copy { color: rgba(255, 255, 255, 0.65); max-width: none; text-align-last: center; font-size: clamp(1.05rem, 1.8vw, 1.25rem); }

.for-whom-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.for-whom-tags .tag {
  font-size: clamp(0.6rem, 1.4vw, 1rem);
  padding: clamp(0.25rem, 0.5vw, 0.4rem) clamp(0.5rem, 1vw, 1rem);
  white-space: nowrap;
}

.tag {
  padding: 0.4rem 1rem;
  background: rgba(91, 140, 201, 0.1);
  border: 1px solid rgba(91, 140, 201, 0.2);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

/* Phone device */
.phone-device {
  margin: 0 auto;
  width: 260px;
  max-width: 100%;
}

.phone-device-bezel {
  position: relative;
  background: #1A1A1A;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-device-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}

.phone-device-screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #F9FAFB;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .for-whom .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .for-whom-text { display: block; width: 100%; }
  .for-whom .section-copy { margin-left: auto; margin-right: auto; }
  .for-whom-tags { justify-content: center; }
  .phone-device { width: 200px; }
}

/* ═══════════════════════════════════════════ */
/* 10. CLOSING CTA                             */
/* ═══════════════════════════════════════════ */

.closing-cta {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  text-align: center;
}

.closing-lines {
  max-width: 520px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.closing-lines p {
  font-size: clamp(0.9375rem, 1.6vw, 1.05rem);
  color: var(--gray-dark);
  line-height: 1.65;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.closing-arrow {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  color: var(--gray-text);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .closing-cta .btn-primary--dark { width: 100%; }
}

/* ═══════════════════════════════════════════ */
/* 11. FAQ                                     */
/* ═══════════════════════════════════════════ */

.faq {
  background: var(--cream);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.faq .eyebrow { color: var(--navy-light); text-align: center; }
.faq .section-heading { color: var(--navy); margin-bottom: 2.5rem; text-align: center; }

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-item:first-child { border-top: 1px solid var(--gray-border); }

.faq-item summary {
  padding: 1.25rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s;
}

.faq-item summary:hover { color: var(--accent); }

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

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--navy-light);
  transition: transform 0.3s var(--ease-out-expo);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.faq-contact {
  margin: 3rem auto 0;
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 680px;
  text-align: center;
}

.faq-contact a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(30, 58, 95, 0.3);
  transition: text-decoration-color 0.2s;
}

.faq-contact a:hover {
  text-decoration-color: var(--navy);
}

/* ═══════════════════════════════════════════ */
/* FINAL DOWNLOAD CTA                          */
/* ═══════════════════════════════════════════ */

.download {
  background: var(--navy-deep);
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem var(--page-px);
  overflow: hidden;
  position: relative;
}

.download-glow {
  position: absolute;
  width: clamp(250px, 45vw, 500px);
  height: clamp(250px, 45vw, 500px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(91, 140, 201, 0.12) 0%, rgba(30, 58, 95, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.download-glow--2 {
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  background: radial-gradient(circle, rgba(30, 58, 95, 0.15) 0%, transparent 50%);
}

.download > div:last-of-type {
  position: relative;
  z-index: 1;
}

.download-heading {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.download-sub {
  font-size: clamp(0.9375rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.download-coming-soon {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.store-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s var(--ease-spring);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.store-btn svg { width: 20px; height: 20px; fill: currentColor; }


.download-qr {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.qr-box {
  width: 160px;
  height: 160px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.qr-box img {
  width: 136px;
  height: 136px;
  display: block;
  image-rendering: pixelated;
}

.qr-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

@media (max-width: 767px) {
  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 260px; justify-content: center; }
}

/* ═══════════════════════════════════════════ */
/* FOOTER                                      */
/* ═══════════════════════════════════════════ */

.footer {
  background: var(--navy-deep);
  padding: 2.5rem var(--page-px) 2rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  border-radius: 4px;
}

.footer-wordmark {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s, background 0.2s;
}

.footer-social a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 600px) {
  .footer-top { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
