/* =====================================================
   ONEFITT — MAIN STYLESHEET v2
   Mobile-first. Base = 375px. Scales up.
   Brand: Navy #011132 · Red #E20000 · Silver #ADB5BD
   Fonts: Montserrat · Sora · Archivo
   ===================================================== */

/* ─── TOKENS ──────────────────────────────────────── */
:root {
  --red:      #E20000;
  --red-dark: #c50000;
  --navy:     #011132;
  --navy-2:   #051d4a;
  --navy-3:   #020f28;
  --silver:   #ADB5BD;
  --white:    #FFFFFF;
  --off:      #F5F5F3;
  --text-dim: #3a4a66;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ─── UTILITY ─────────────────────────────────────── */
.container {
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { max-width: 1200px; padding: 0 2.5rem; } }

.label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
}
.accent { color: var(--red); }
.dim    { color: var(--silver); }

.divider {
  width: 2rem;
  height: 2px;
  background: var(--red);
  margin: 1.2rem 0 1.8rem;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) { .btn { padding: 1rem 2rem; font-size: 0.82rem; } }

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover,
.btn-primary:active { background: var(--red-dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover,
.btn-ghost:active {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(1,17,50,0.22);
}
.btn-ghost-dark:hover { border-color: var(--navy); background: rgba(1,17,50,0.05); }

.btn-arrow::after { content: '\2192'; font-size: 0.95rem; }

/* ─── REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s;
}
@media (min-width: 640px) { .nav { padding: 1.2rem 2rem; } }
@media (min-width: 1024px) { .nav { padding: 1.4rem 2.5rem; } }

.nav.scrolled {
  background: rgba(1,17,50,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  z-index: 201;
}
.nav-logo img { height: 28px; width: auto; }
@media (min-width: 768px) { .nav-logo img { height: 32px; } }
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: none;
}

/* Desktop links */
.nav-links {
  display: none;
  list-style: none;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    font-family: 'Archivo', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}
.nav-links a { color: var(--silver); transition: color 0.2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* Desktop CTA */
.nav-cta {
  display: none;
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  background: var(--red);
  color: var(--white);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark); }
@media (min-width: 1024px) { .nav-cta { display: block; } }

/* Mobile toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 201;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1,17,50,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.nav-mobile-links a {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}
.nav-mobile-links a:hover,
.nav-mobile-links a.active { color: var(--white); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
@media (min-width: 768px)  { .hero { padding: 8rem 0 4rem; } }
@media (min-width: 1024px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0;
    min-height: 100svh;
  }
}

.hero-content {
  padding: 0 1.25rem 2rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px)  { .hero-content { padding: 0 2rem 3rem; } }
@media (min-width: 1024px) { .hero-content { padding: 10rem 4rem 8rem 2.5rem; } }

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.5rem; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero-eyebrow { font-size: 0.72rem; margin-bottom: 2rem; }
  .hero-eyebrow::before { width: 2rem; }
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  color: transparent;
}
@media (min-width: 768px) { .hero-headline { margin-bottom: 2rem; } }

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.05rem; margin-bottom: 2.5rem; } }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.hero-actions .btn { width: 100%; }
@media (min-width: 480px) { .hero-actions .btn { width: auto; } }

/* Hero image panel */
.hero-image {
  display: none;
}
@media (min-width: 1024px) {
  .hero-image {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%);
    align-self: stretch;
    min-height: 100svh;
  }
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.78;
  mix-blend-mode: luminosity;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 35%);
}
.hero-image-placeholder {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  opacity: 0.12;
}
.hero-image-placeholder svg { width: 48px; }
.hero-image-placeholder p {
  font-family: 'Archivo', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  text-align: center;
  line-height: 1.8;
}
.hero-geo {
  position: absolute;
  right: 6%; bottom: 8%;
  width: 160px; height: 160px;
  border: 1px solid rgba(226,0,0,0.1);
  transform: rotate(12deg);
  z-index: 1;
}
.hero-geo::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(226,0,0,0.06);
}
@media (min-width: 1280px) {
  .hero-geo { width: 200px; height: 200px; }
}

/* =====================================================
   DISQUALIFIER
   ===================================================== */
.disqualifier {
  background: var(--navy-3);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 1.8rem 0;
}
.disqualifier-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .disqualifier-inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.disqualifier-dot {
  width: 1.8rem; height: 1.8rem;
  border: 1px solid rgba(226,0,0,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.disqualifier-dot::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
@media (min-width: 768px) { .disqualifier-dot { display: flex; } }
.disqualifier-lines {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.disqualifier-line {
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver);
  line-height: 1.6;
}
@media (min-width: 768px) { .disqualifier-line { font-size: 0.82rem; } }
.disqualifier-conclusion {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .disqualifier-conclusion {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-top: 0;
    padding-left: 1.5rem;
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-strip {
  background: var(--red);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-family: 'Archivo', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  padding: 0 2rem;
}
.marquee-inner span::after {
  content: '\00B7';
  padding-left: 2rem;
  color: rgba(255,255,255,0.4);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   SECTION BASE
   ===================================================== */
.section { padding: 5rem 0; }
@media (min-width: 768px)  { .section { padding: 7rem 0; } }
@media (min-width: 1024px) { .section { padding: 9rem 0; } }

.section-off {
  background: var(--off);
  color: var(--navy);
}
.section-off .label { color: var(--red); }
.section-off .divider { background: var(--red); }

.section-navy-2 { background: var(--navy-2); }
.section-navy-3 { background: var(--navy-3); }

/* ─── TWO-COL GRID ────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
}
@media (min-width: 1024px) {
  .two-col-wide { grid-template-columns: 1fr 1.5fr; }
}

/* =====================================================
   SECTION HEADLINES
   ===================================================== */
.section-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-headline-sm {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.15;
}
.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.section-body-navy {
  color: var(--text-dim);
}
.section-body strong { color: var(--white); font-weight: 600; }
.section-body-navy strong { color: var(--navy); font-weight: 600; }
@media (min-width: 768px) { .section-body { font-size: 1rem; } }

/* =====================================================
   PROBLEM SECTION
   ===================================================== */
.problem-callout {
  border-left: 2px solid var(--red);
  padding: 1rem 1.25rem;
  margin-top: 2rem;
  background: rgba(226,0,0,0.04);
}
.problem-callout p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
}
@media (min-width: 768px) { .problem-callout p { font-size: 1.2rem; } }

/* =====================================================
   GUIDE / APPROACH SECTION
   ===================================================== */
.science-lockup {
  display: flex;
  margin: 1.5rem 0 2rem;
}
.science-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(1,17,50,0.2);
  color: var(--text-dim);
}
@media (min-width: 768px) {
  .science-pill { font-size: 0.65rem; padding: 0.5rem 1rem; }
}
.science-pill.navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.science-pill.red  { background: var(--red);  color: var(--white); border-color: var(--red); }
.science-pill:not(:last-child) { border-right: none; }

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.trust-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(1,17,50,0.18);
  color: var(--text-dim);
}

/* Ankit card */
.ankit-card {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  position: relative;
}
@media (min-width: 768px) { .ankit-card { padding: 2.5rem; } }
.ankit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2.5rem; height: 2px;
  background: var(--red);
}
.ankit-photo {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(226,0,0,0.3);
  margin-bottom: 1.2rem;
}
.ankit-photo-fallback {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 2px solid rgba(226,0,0,0.3);
  display: none;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--red);
}
.ankit-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.ankit-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.ankit-bio {
  font-size: 0.88rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.8;
}
.ankit-bio + .ankit-bio { margin-top: 0.8rem; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 2.2rem; left: 14%; right: 14%;
    height: 1px;
    background: linear-gradient(to right, rgba(226,0,0,0.4), rgba(226,0,0,0.15), rgba(226,0,0,0.4));
  }
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    gap: 0;
  }
}
.step-number {
  width: 4.5rem; height: 4.5rem;
  border: 1px solid rgba(226,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--navy);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .step-number { margin-bottom: 1.8rem; } }
.step-number span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--red);
}
.step-content {}
.step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
@media (min-width: 768px) { .step-title { font-size: 1.2rem; } }
.step-body {
  font-size: 0.88rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.8;
}

/* =====================================================
   SERVICES
   ===================================================== */
.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
}
@media (min-width: 640px)  { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-cards { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--navy-2);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
@media (hover: hover) {
  .service-card:hover { background: rgba(255,255,255,0.025); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-card:hover .service-card-arrow { gap: 0.8rem; }
}
.service-card-icon {
  width: 2.2rem; height: 2.2rem;
  border: 1px solid rgba(226,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card-icon svg {
  width: 14px; height: 14px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}
.service-card-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.service-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  flex-grow: 1;
}
.service-card-body {
  font-size: 0.83rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-card-arrow {
  font-family: 'Archivo', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease);
  margin-top: auto;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  margin-top: 3rem;
}
@media (min-width: 768px)  { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--navy);
  padding: 2rem 1.75rem;
  position: relative;
}
@media (min-width: 768px) { .testimonial { padding: 2.5rem; } }
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: rgba(226,0,0,0.08);
  line-height: 1;
}
.testimonial-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
}
@media (min-width: 768px) { .testimonial-text { font-size: 0.92rem; } }
.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--red);
}
.testimonial-detail {
  font-family: 'Archivo', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.25rem;
}

/* =====================================================
   ASSESSMENT SECTION
   ===================================================== */
.assessment-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.assessment-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  margin: 2.5rem 0;
  text-align: left;
}
@media (min-width: 640px) {
  .assessment-steps { grid-template-columns: 1fr auto 1fr; }
}
.assessment-step {
  background: var(--navy-2);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.assessment-step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.1rem;
}
.assessment-step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.assessment-step-body {
  font-size: 0.84rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.78;
}
.assessment-step-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  font-family: 'Archivo', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(173,181,189,0.3);
  background: var(--navy-2);
}
.assessment-meta {
  font-family: 'Archivo', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(173,181,189,0.38);
  margin-top: 1.25rem;
  display: block;
}

/* =====================================================
   APP STRIP
   ===================================================== */
.app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .app-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}
.app-feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--silver);
  font-weight: 300;
}
.app-feature-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.app-feature strong { color: var(--white); font-weight: 600; }

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.phone-ring-1 {
  width: 280px; height: 280px;
  border: 1px solid rgba(226,0,0,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.phone-ring-2 {
  width: 380px; height: 380px;
  border: 1px solid rgba(226,0,0,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.phone-frame {
  width: 200px;
  height: 380px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 1;
}
@media (min-width: 768px) {
  .phone-frame { width: 220px; height: 420px; }
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.phone-screen {
  position: absolute;
  inset: 24px 8px 8px;
  background: var(--navy);
  border-radius: 20px;
  padding: 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.phone-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 0.6rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 0.82rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.phone-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.phone-bar-fill { height: 100%; background: var(--red); border-radius: 2px; }
.phone-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 0.5rem 0.6rem;
}
.phone-card-title {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 0.55rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.phone-card-body {
  font-family: 'Archivo', sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
}
.phone-msg {
  font-family: 'Archivo', sans-serif;
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  margin-top: auto;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-ring-1 { width: 500px; height: 500px; border: 1px solid rgba(226,0,0,0.05); }
.cta-ring-2 { width: 320px; height: 320px; border: 1px solid rgba(226,0,0,0.07); }
.cta-inner { position: relative; z-index: 1; }
.cta-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  color: var(--silver);
  font-weight: 300;
  max-width: 40ch;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 480px) {
  .cta-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 1rem; }
}
.cta-note {
  font-family: 'Archivo', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(173,181,189,0.3);
  margin-top: 1.8rem;
  display: block;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #000d22;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; } }

.footer-brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-brand { grid-column: auto; } }

.footer-logo img {
  height: 28px; width: auto;
  margin-bottom: 0.5rem;
}
.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: none;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: 'Archivo', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.2rem;
}
.footer-location {
  font-size: 0.82rem;
  color: rgba(173,181,189,0.5);
  line-height: 1.85;
}
.footer-location a { transition: color 0.2s; }
.footer-location a:hover { color: var(--white); }
.footer-col-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
  display: block;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.83rem;
  color: var(--silver);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: 'Archivo', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(173,181,189,0.28);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.social-links { display: flex; gap: 1.25rem; }
.social-links a {
  color: rgba(173,181,189,0.32);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--white); }

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 3.2rem; height: 3.2rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 190;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover,
.whatsapp-float:active { transform: scale(1.08); }
.whatsapp-float svg { width: 20px; fill: white; }
@media (min-width: 768px) {
  .whatsapp-float { bottom: 2rem; right: 2rem; width: 3.5rem; height: 3.5rem; }
  .whatsapp-float svg { width: 22px; }
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding: 11rem 0 6rem; } }
.page-hero-inner { max-width: 680px; position: relative; z-index: 1; }
.page-hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.page-hero-sub {
  color: var(--silver);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 50ch;
}
@media (min-width: 768px) { .page-hero-sub { font-size: 1.05rem; } }
