/* ─── TOKENS (André Brand) ─── */
:root {
  --teal: #20B59A;
  --teal-dark: #1a9e86;
  --teal-soft: rgba(32, 181, 154, 0.10);
  --teal-glow: rgba(32, 181, 154, 0.22);
  --navy: #142B3A;
  --mint: #E9F7F3;
  --warm-white: #FAFCFB;
  --slate: #64747D;
  --coral: #F27C73;
  --surface: #ffffff;
  --border-c: rgba(20, 43, 58, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-data: 'Inter', 'Manrope', system-ui, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--teal); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250, 252, 251, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border-c);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy);
}
.nav__logo-mark { height: 28px; width: auto; }
.nav__logo-word { height: 16px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.nav__links a { color: var(--slate); transition: color 0.2s; }
.nav__links a:hover { color: var(--navy); }
.nav__cta {
  background: var(--teal); color: white !important;
  padding: 8px 20px; border-radius: 100px;
  font-weight: 700; transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 100px; font-weight: 700; font-size: 15px;
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn--primary {
  background: var(--teal); color: white;
  box-shadow: 0 4px 24px -4px var(--teal-glow);
}
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 32px -4px var(--teal-glow); }
.btn--ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border-c);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 24px 80px;
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.35;
}
.hero__blob--1 { width: 600px; height: 600px; background: var(--mint); top: -100px; right: -100px; }
.hero__blob--2 { width: 400px; height: 400px; background: rgba(32, 181, 154, 0.08); bottom: -50px; left: -100px; }
.hero__blob--3 { width: 300px; height: 300px; background: rgba(233, 247, 243, 0.5); top: 40%; left: 30%; }

.hero__content {
  position: relative; z-index: 2;
  max-width: 540px; flex-shrink: 0;
}
.hero__badge {
  display: inline-block;
  padding: 6px 16px; border-radius: 100px;
  background: var(--teal-soft); color: var(--teal);
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy);
}
.hero__title-accent { color: var(--teal); }
.hero__subtitle {
  font-size: 17px; color: var(--slate);
  margin-top: 20px; line-height: 1.7; max-width: 460px;
}
.hero__actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border-c);
}
.hero__stat-number { font-size: 24px; font-weight: 800; color: var(--teal); font-family: var(--font-data); }
.hero__stat-label { font-size: 13px; color: var(--slate); font-weight: 600; margin-top: 2px; }

/* Hero Phone */
.hero__phone {
  position: relative; z-index: 2;
  margin-left: auto; flex-shrink: 0;
}
.hero__phone-frame {
  width: 280px; height: 580px;
  background: var(--warm-white);
  border-radius: 36px;
  box-shadow: 0 30px 80px -20px rgba(20,43,58,0.12), 0 0 0 1px var(--border-c);
  overflow: hidden; position: relative;
  padding: 12px;
}
.hero__phone-screen {
  width: 100%; height: 100%;
  border-radius: 26px; overflow: hidden;
  background: var(--warm-white);
}

/* ─── MOCKUP (shared) ─── */
.mockup { padding: 16px 14px; height: 100%; font-size: 11px; }
.mockup__header { display: flex; align-items: center; justify-content: space-between; }
.mockup__greeting { font-size: 16px; font-weight: 800; color: var(--navy); }
.mockup__sub { font-size: 10.5px; color: var(--slate); margin-top: 1px; }
.mockup__icon-btn {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--mint); display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.mockup__injection-card {
  margin-top: 12px; padding: 14px;
  border-radius: 18px; background: var(--teal); color: white;
  box-shadow: 0 8px 20px -8px rgba(32,181,154,0.4);
}
.mockup__injection-top { display: flex; align-items: center; justify-content: space-between; }
.mockup__injection-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em; opacity: 0.9;
}
.mockup__injection-freq { font-size: 9px; font-weight: 700; opacity: 0.75; }
.mockup__countdown { display: flex; align-items: baseline; gap: 12px; margin-top: 10px; }
.mockup__countdown-num { font-size: 28px; font-weight: 800; line-height: 1; font-family: var(--font-data); }
.mockup__countdown-num small { font-size: 12px; font-weight: 700; }
.mockup__countdown-next { font-size: 10px; opacity: 0.85; margin-left: auto; text-align: right; line-height: 1.3; }
.mockup__injection-btn {
  margin-top: 12px; padding: 10px; border-radius: 12px;
  background: rgba(255,255,255,0.2); text-align: center;
  font-size: 12px; font-weight: 700;
}
.mockup__weight-card {
  margin-top: 10px; padding: 12px 14px;
  border-radius: 18px; background: white; border: 1px solid var(--border-c);
}
.mockup__weight-header { display: flex; justify-content: space-between; }
.mockup__weight-label { font-size: 10px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: 0.04em; }
.mockup__weight-link { font-size: 10px; font-weight: 700; color: var(--teal); }
.mockup__weight-row { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.mockup__weight-value { font-size: 18px; font-weight: 800; color: var(--teal); font-family: var(--font-data); }
.mockup__weight-pct { font-size: 10px; color: var(--slate); font-weight: 600; }
.mockup__weight-chart { width: 100%; height: 36px; margin-top: 6px; display: block; }
.mockup__streak {
  margin-top: 10px; padding: 10px 12px; border-radius: 14px;
  background: var(--mint); display: flex; align-items: center; gap: 8px;
}
.mockup__streak-icon { font-size: 20px; }
.mockup__streak-title { font-size: 11.5px; font-weight: 700; color: var(--navy); }
.mockup__streak-text { font-size: 10px; color: var(--slate); }

/* Mockup - simple header */
.mockup__simple-header { display: flex; align-items: center; gap: 10px; }
.mockup__back-btn {
  width: 28px; height: 28px; border-radius: 9px;
  background: var(--mint); display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.mockup__page-title { font-size: 14px; font-weight: 800; color: var(--navy); }

/* Tags */
.mockup__tags-row { display: flex; gap: 6px; margin-top: 10px; }
.mockup__tag {
  padding: 5px 10px; border-radius: 9px;
  background: white; border: 1px solid var(--border-c);
  font-size: 10px; font-weight: 600; color: var(--slate);
}
.mockup__tag--active { background: var(--teal-soft); color: var(--teal); border-color: transparent; font-weight: 700; }

/* Body map */
.mockup__body-map { margin-top: 8px; text-align: center; }
.mockup__body-svg { width: 140px; height: auto; }
.mockup__zone-callout {
  margin-top: 4px; padding: 5px 8px; border-radius: 8px;
  font-size: 9px; font-weight: 700; text-align: left;
}
.mockup__zone-callout--ok { background: var(--teal-soft); color: var(--teal); }
.mockup__zone-callout--warn { background: rgba(242, 124, 115, 0.1); color: var(--coral); margin-top: 3px; }

/* Progress mockup */
.mockup__progress-stats {
  display: flex; margin-top: 12px; padding: 10px 0;
  border-radius: 14px; background: white; border: 1px solid var(--border-c);
}
.mockup__progress-stat { flex: 1; text-align: center; }
.mockup__progress-stat + .mockup__progress-stat { border-left: 1px solid var(--border-c); }
.mockup__progress-stat-label { font-size: 9px; font-weight: 700; text-transform: uppercase; color: var(--slate); letter-spacing: 0.04em; }
.mockup__progress-stat-value { font-size: 14px; font-weight: 800; margin-top: 2px; font-family: var(--font-data); }
.mockup__progress-stat--active .mockup__progress-stat-label { color: var(--teal); }
.mockup__progress-stat--active .mockup__progress-stat-value { color: var(--teal); }
.mockup__chart-card {
  margin-top: 10px; padding: 10px; border-radius: 14px;
  background: white; border: 1px solid var(--border-c);
}
.mockup__chart-header {
  display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 700; color: var(--slate); padding: 0 4px;
}
.mockup__chart-svg { width: 100%; height: 80px; margin-top: 6px; display: block; }
.mockup__milestone {
  margin-top: 10px; padding: 8px 10px; border-radius: 12px;
  background: var(--teal-soft); display: flex; align-items: center; gap: 8px;
}
.mockup__milestone-icon { font-size: 20px; }
.mockup__milestone-title { font-size: 11px; font-weight: 700; color: var(--teal); }
.mockup__milestone-desc { font-size: 10px; color: var(--navy); opacity: 0.7; }

/* Symptoms mockup */
.mockup__chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.mockup__chip {
  padding: 5px 9px; border-radius: 8px; font-size: 10px; font-weight: 600;
  background: white; border: 1px solid var(--border-c); color: var(--slate);
}
.mockup__chip--active { background: var(--teal-soft); border-color: var(--teal); color: var(--teal); font-weight: 700; }
.mockup__severity-label { font-size: 9px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 10px; }
.mockup__severity-row { display: flex; gap: 5px; margin-top: 6px; }
.mockup__severity-btn {
  flex: 1; text-align: center; padding: 7px 0; border-radius: 8px;
  background: white; border: 1px solid var(--border-c);
  font-size: 11px; font-weight: 700; color: var(--slate);
}
.mockup__severity-btn--active { background: var(--coral); color: white; border-color: transparent; }
.mockup__note-field {
  margin-top: 8px; padding: 8px 10px; border-radius: 10px;
  background: white; border: 1px solid var(--border-c);
  font-size: 10px; color: var(--slate); line-height: 1.4;
}
.mockup__save-btn {
  margin-top: 8px; padding: 10px; border-radius: 12px;
  background: var(--teal); color: white; text-align: center;
  font-size: 12px; font-weight: 800;
}
.mockup__timeline-label { font-size: 9px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 12px; margin-bottom: 6px; }
.mockup__timeline-item { display: flex; gap: 8px; margin-bottom: 8px; align-items: flex-start; }
.mockup__timeline-dot {
  width: 24px; height: 24px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.mockup__timeline-dot--primary { background: var(--teal-soft); }
.mockup__timeline-dot--warn { background: rgba(242, 124, 115, 0.1); }
.mockup__timeline-title { font-size: 10.5px; font-weight: 700; color: var(--navy); }
.mockup__timeline-desc { font-size: 9.5px; color: var(--slate); }

/* ─── SECTION INTRO ─── */
.section-intro { padding: 120px 24px 60px; text-align: center; }
.section-intro__label {
  display: inline-block;
  padding: 6px 16px; border-radius: 100px;
  background: var(--teal-soft); color: var(--teal);
  font-size: 13px; font-weight: 700; letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.section-intro__title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--navy);
}
.section-intro__desc {
  font-size: 16px; color: var(--slate);
  margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* ─── FEATURE SECTIONS ─── */
.feature { padding: 80px 24px; }
.feature__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px;
}
.feature--reverse .feature__inner { flex-direction: row-reverse; }
.feature__image-wrap { flex: 1; display: flex; justify-content: center; position: relative; }
.feature__image-container {
  width: 280px; height: 580px;
  border-radius: 36px; overflow: hidden;
  transform: scale(0.7); opacity: 0;
  will-change: transform, opacity;
}
.feature__phone-frame {
  width: 100%; height: 100%;
  background: var(--warm-white);
  border-radius: 36px;
  box-shadow: 0 30px 80px -20px rgba(20,43,58,0.12), 0 0 0 1px var(--border-c);
  overflow: hidden; padding: 12px;
}
.feature__phone-screen {
  width: 100%; height: 100%;
  border-radius: 26px; overflow: hidden; overflow-y: auto;
  background: var(--warm-white);
}
.feature__phone-screen::-webkit-scrollbar { display: none; }

.feature__text { flex: 1; }
.feature__number {
  font-size: 60px; font-weight: 800;
  color: var(--mint); line-height: 1;
  margin-bottom: 8px; font-family: var(--font-data);
}
.feature__title {
  font-size: clamp(24px, 3vw, 32px); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--navy);
}
.feature__desc {
  font-size: 15px; color: var(--slate);
  margin-top: 14px; line-height: 1.7; max-width: 440px;
}
.feature__list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.feature__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.feature__list li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--teal-soft); flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2320B59A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12 6 6L20 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ─── PARALLAX DIVIDER ─── */
.parallax-divider {
  position: relative; height: 70vh; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.parallax-divider__bg {
  position: absolute; inset: -100px 0;
  background:
    linear-gradient(135deg, rgba(32, 181, 154, 0.12) 0%, rgba(32, 181, 154, 0.04) 50%, transparent 100%),
    radial-gradient(ellipse at 30% 50%, rgba(32, 181, 154, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(233, 247, 243, 0.15) 0%, transparent 50%),
    var(--navy);
  will-change: transform;
}
.parallax-divider__content {
  position: relative; z-index: 2;
  text-align: center; padding: 24px; color: white;
}
.parallax-divider__title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em;
}
.parallax-divider__text {
  font-size: 18px; opacity: 0.7; margin-top: 16px;
  max-width: 440px; margin-left: auto; margin-right: auto;
}

/* ─── STEPS ─── */
.how-it-works { padding: 100px 24px 80px; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 48px;
}
.step {
  background: white;
  border: 1px solid var(--border-c);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(40px);
}
.step__number {
  position: absolute; top: -10px; right: 16px;
  font-size: 100px; font-weight: 800; color: var(--mint);
  line-height: 1; pointer-events: none; font-family: var(--font-data);
}
.step__icon { margin-bottom: 16px; }
.step__title { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
.step__desc { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ─── PILLARS ─── */
.pillars { padding: 80px 24px; background: var(--mint); }
.pillars__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.pillar {
  background: white;
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center;
  opacity: 0; transform: translateY(30px);
}
.pillar__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.pillar__title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.pillar__desc { font-size: 13px; color: var(--slate); line-height: 1.5; }

/* ─── SCREENSHOTS SECTION ─── */
.screenshots { padding: 80px 24px; }
.screenshots__carousel {
  position: relative; margin-top: 48px;
}
.screenshots__track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 40px 16px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.screenshots__track::-webkit-scrollbar { display: none; }
.screenshots__arrow {
  position: absolute; top: 50%; transform: translateY(-70%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%; border: 1.5px solid var(--border-c);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(20,43,58,0.08);
  transition: opacity .2s, background .2s, box-shadow .2s;
}
.screenshots__arrow:hover {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 20px rgba(32,181,154,0.25);
}
.screenshots__arrow:disabled {
  opacity: 0; pointer-events: none;
}
.screenshots__arrow--prev { left: -6px; }
.screenshots__arrow--next { right: -6px; }
.screenshots__dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 20px;
}
.screenshots__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-c); border: none; padding: 0;
  cursor: pointer; transition: background .25s, transform .25s;
}
.screenshots__dot--active {
  background: var(--teal); transform: scale(1.3);
}
.screenshot-card {
  flex: 0 0 260px; scroll-snap-align: center;
  text-align: center;
  opacity: 0; transform: translateY(20px);
}
.screenshot-card__frame {
  width: 260px; height: 460px;
  background: white;
  border-radius: 32px;
  box-shadow: 0 20px 60px -16px rgba(20,43,58,0.1), 0 0 0 1px var(--border-c);
  overflow: hidden; padding: 10px;
  margin-bottom: 14px;
}
.screenshot-card__screen {
  width: 100%; height: 100%;
  border-radius: 24px; overflow: hidden;
  background: var(--warm-white);
}
.screenshot-card__screen img {
  width: 100%; display: block;
  object-fit: cover; object-position: top;
}
.screenshot-card__caption {
  font-size: 14px; font-weight: 700; color: var(--navy);
}
@media (max-width: 600px) {
  .screenshots__arrow { display: none; }
  .screenshots__track { padding: 0 8px 16px; }
}

/* ─── SUBPAGES (legal / faq / docs / contacto) ─── */
.page { padding: 120px 24px 80px; }
.page__inner { max-width: 760px; margin: 0 auto; }
.page__back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--teal); margin-bottom: 20px; }
.page__label { display: inline-block; padding: 6px 16px; border-radius: 100px; background: var(--teal-soft); color: var(--teal); font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.page__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.page__desc { font-size: 16px; color: var(--slate); margin-top: 12px; line-height: 1.7; }
.page__updated { font-size: 12px; color: var(--slate); margin-top: 10px; }
.notice { margin-top: 20px; padding: 14px 16px; border-radius: 14px; font-size: 14px; line-height: 1.6; border: 1px solid var(--border-c); background: white; }
.notice--warn { background: rgba(242,124,115,0.08); border-color: rgba(242,124,115,0.3); }
.notice--info { background: var(--teal-soft); border-color: transparent; }
.legal h2 { font-size: 20px; font-weight: 800; margin: 32px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--navy); line-height: 1.75; }
.legal ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.legal p { margin-top: 8px; color: var(--slate); }
.legal p strong, .legal li strong { color: var(--navy); }
.faq-search { margin-top: 20px; width: 100%; padding: 12px 16px; border-radius: 14px; border: 1px solid var(--border-c); font: inherit; font-size: 15px; background: white; color: var(--navy); }
.faq-item { background: white; border: 1px solid var(--border-c); border-radius: 16px; margin-top: 12px; overflow: hidden; }
.faq-item summary { padding: 16px 18px; font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__answer { padding: 0 18px 16px; font-size: 14px; color: var(--slate); line-height: 1.7; }
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.doc-card { background: white; border: 1px solid var(--border-c); border-radius: 20px; padding: 22px; display: block; }
.doc-card:hover { border-color: var(--teal); }
.doc-card__cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal); }
.doc-card__title { font-size: 17px; font-weight: 800; margin-top: 6px; }
.doc-card__desc { font-size: 13px; color: var(--slate); margin-top: 6px; line-height: 1.6; }
.doc-article { font-size: 15px; line-height: 1.8; color: var(--slate); margin-top: 24px; }
.doc-article h2 { color: var(--navy); font-size: 20px; font-weight: 800; margin: 32px 0 10px; }
.doc-article h3 { color: var(--navy); font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.doc-article p { margin-top: 8px; }
.doc-article p strong { color: var(--navy); }
.doc-article ul, .doc-article ol { list-style-position: outside; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.doc-article li { line-height: 1.7; }
.doc-article ul { list-style: disc; }
.doc-article ol { list-style: decimal; }
.doc-article a { color: var(--teal); font-weight: 600; }
.contact-card { background: white; border: 1px solid var(--border-c); border-radius: 20px; padding: 24px; margin-top: 24px; }
.contact-card a { color: var(--teal); font-weight: 800; font-size: 18px; }
@media (max-width: 768px) { .doc-grid { grid-template-columns: 1fr; } }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 80px 24px 100px; }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: white; border: 1px solid var(--border-c);
  border-radius: var(--radius-lg); padding: 28px;
  opacity: 0; transform: translateY(30px);
}
.testimonial__stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial__text { font-size: 14px; line-height: 1.7; color: var(--navy); font-weight: 500; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-c); }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.testimonial__name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial__detail { font-size: 12px; color: var(--slate); }

/* ─── DOWNLOAD ─── */
.download {
  position: relative; padding: 120px 24px;
  text-align: center; overflow: hidden;
  background: var(--navy); color: white;
}
.download__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.download__blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.2;
}
.download__blob--1 { width: 500px; height: 500px; background: var(--teal); top: -150px; left: -100px; }
.download__blob--2 { width: 400px; height: 400px; background: var(--teal); bottom: -150px; right: -100px; }
.download__title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.download__desc {
  font-size: 17px; opacity: 0.7; margin-top: 16px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.download__buttons {
  display: flex; gap: 16px; justify-content: center; margin-top: 36px;
  position: relative; z-index: 1; flex-wrap: wrap;
}
.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; border-radius: 14px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: white; transition: all 0.3s ease;
}
.store-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.store-btn small { font-size: 11px; opacity: 0.7; display: block; text-align: left; }
.store-btn strong { font-size: 16px; font-weight: 700; display: block; }
.download__disclaimer {
  font-size: 12px; opacity: 0.4; margin-top: 32px;
  position: relative; z-index: 1;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 40px;
}
.footer__logo { font-size: 20px; font-weight: 800; color: white; display: flex; align-items: center; gap: 8px; }
.footer__logo-mark { height: 28px; width: auto; }
.footer__tagline { font-size: 13px; opacity: 0.5; margin-top: 6px; }
.footer__links { display: flex; gap: 60px; }
.footer__col h5 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.footer__col a { display: block; font-size: 13px; margin-bottom: 8px; transition: color 0.2s; }
.footer__col a:hover { color: var(--teal); }
.footer__bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; opacity: 0.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero__content { max-width: 100%; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__phone { margin: 40px auto 0; }
  .feature__inner { flex-direction: column !important; gap: 48px; }
  .feature__text { text-align: center; }
  .feature__desc { margin-left: auto; margin-right: auto; }
  .feature__list { align-items: center; }
  .steps { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .hero__title { font-size: 32px; }
  .hero__phone-frame { width: 240px; height: 500px; border-radius: 30px; }
  .hero__phone-screen { border-radius: 22px; }
  .feature__image-container { width: 240px; height: 500px; border-radius: 30px; }
  .feature__phone-frame { border-radius: 30px; }
  .feature__phone-screen { border-radius: 22px; }
  .feature__number { font-size: 40px; }
  .pillars__grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .footer__inner { flex-direction: column; }
  .footer__links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 16px; align-items: center; }
  .download__buttons { flex-direction: column; align-items: center; }
}
