/* =============================================================
   MISSÕES DO FOCO — Premium Landing Page
   Style: Apple × Notion × Headspace × Stripe
   ============================================================= */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Colors */
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;

  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #059669;

  --amber-50:  #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;

  --purple-50:  #faf5ff;
  --purple-100: #f3e8ff;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;

  --teal-50:  #f0fdfa;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;

  --rose-50:  #fff1f2;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;

  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;

  --emerald-500: #10b981;
  --emerald-600: #059669;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Spacing */
  --section-py: 5rem;
  --container-max: 1120px;
  --container-px: 1.5rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
  --shadow-glow-blue: 0 0 40px rgba(37,99,235,.18);
  --shadow-glow-green: 0 0 40px rgba(5,150,105,.18);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 280ms;
  --duration-slow: 500ms;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input { font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--gray-600); line-height: 1.75; }

.text-gradient {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--purple-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

section { padding-block: var(--section-py); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-title { margin-block: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-500); }

/* ─── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--blue  { background: var(--blue-50);   color: var(--blue-700);   border: 1px solid var(--blue-200); }
.badge--green { background: var(--green-50);  color: var(--green-700);  border: 1px solid var(--green-100); }
.badge--amber { background: var(--amber-50);  color: var(--amber-600);  border: 1px solid var(--amber-100); }
.badge--gray  { background: var(--gray-100);  color: var(--gray-600);   border: 1px solid var(--gray-200); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              background var(--duration-fast);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(37,99,235,.35), 0 1px 3px rgba(37,99,235,.2);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
  box-shadow: 0 8px 24px rgba(37,99,235,.45), 0 2px 6px rgba(37,99,235,.25);
}

.btn--outline {
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  background: white;
}
.btn--outline:hover {
  border-color: var(--blue-300);
  color: var(--blue-700);
  background: var(--blue-50);
}

.btn--nav {
  background: var(--blue-600);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}
.btn--nav:hover {
  background: var(--blue-700);
  transform: none;
  box-shadow: none;
}

.btn--lg  { padding: 0.9rem 2rem; font-size: 1.05rem; border-radius: var(--radius-xl); }
.btn--xl  { padding: 1.1rem 2.4rem; font-size: 1.15rem; border-radius: var(--radius-xl); }
.btn--full { width: 100%; justify-content: center; }

/* ─── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, var(--blue-700), var(--indigo-600));
  color: white;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar p {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--duration-normal);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-900);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: 5rem 6rem;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f7ff 0%, #faf5ff 50%, #f0fdf4 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue-200), transparent);
  top: -100px; right: -100px;
  animation: blob-float 8s ease-in-out infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple-100), transparent);
  bottom: -80px; left: -80px;
  animation: blob-float 10s ease-in-out infinite reverse;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--green-100), transparent);
  top: 40%; left: 40%;
  animation: blob-float 12s ease-in-out infinite 2s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 10px) scale(0.95); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 560px; }
.hero__title { margin-block: 1rem 1.25rem; }
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__subtitle strong { color: var(--gray-800); }

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__price-hint {
  font-size: 0.95rem;
  color: var(--gray-500);
}
.hero__price-hint strong { color: var(--blue-600); font-size: 1.1rem; }

.hero__seals {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.seal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
}
.seal svg { color: var(--blue-500); flex-shrink: 0; }

/* ── Hero visual — livro com capa real ───────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-real {
  position: relative;
  width: 280px;
  animation: book-float 4s ease-in-out infinite;
}

@keyframes book-float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(-2deg); }
}

.book-real__wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    -6px 0 0 0 #c7c9d9,
    var(--shadow-xl),
    0 0 60px rgba(37,99,235,.18);
}

.book-real__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.book-real__spine {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 14px;
  background: linear-gradient(90deg, #b0b2c4 0%, #d8dae8 50%, #b0b2c4 100%);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  z-index: 3;
  transform: translateX(-8px);
}

.book-real__pages {
  position: absolute;
  right: -5px;
  top: 3px;
  width: 97%;
  height: calc(100% - 6px);
  background: repeating-linear-gradient(
    90deg,
    #e8e9ef 0px,
    #f4f5f8 1px,
    #f4f5f8 3px,
    #e8e9ef 4px
  );
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  z-index: 1;
  box-shadow: 2px 2px 8px rgba(0,0,0,.1);
}

.book-real__shadow {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 24px;
  background: rgba(30,58,138,.25);
  border-radius: 50%;
  filter: blur(18px);
  z-index: 0;
  animation: shadow-float 4s ease-in-out infinite;
}

@keyframes shadow-float {
  0%, 100% { transform: translateX(-50%) scaleX(1);    opacity: 0.45; }
  50%       { transform: translateX(-50%) scaleX(0.82); opacity: 0.22; }
}

/* ─── PAIN SECTION ───────────────────────────────────────────── */
.pain { background: white; }

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.pain-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-50), var(--purple-50));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-600);
}
.pain-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--gray-800); }
.pain-card p  { font-size: 0.9rem; }

.pain__empathy {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-50), var(--purple-50));
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
}
.pain__empathy p { font-size: 1.05rem; color: var(--gray-700); line-height: 1.8; }
.pain__empathy p:first-child { margin-bottom: 0.75rem; }

/* ─── SOLUTION SECTION ───────────────────────────────────────── */
.solution {
  background: linear-gradient(160deg, var(--gray-50) 0%, white 100%);
}
.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.solution__content { max-width: 520px; }
.solution__lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin-block: 1.25rem;
  font-weight: 500;
}
.solution__content p { margin-bottom: 1rem; }

.solution__list {
  margin-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.solution__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.solution__list li svg { flex-shrink: 0; }

.solution__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  line-height: 1.5;
}
.solution__disclaimer svg { color: var(--amber-500); flex-shrink: 0; margin-top: 1px; }

/* Activity Previews */
.solution__card-stack {
  position: relative;
  height: 380px;
}

.activity-preview {
  position: absolute;
  width: 200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--duration-slow) var(--ease-out);
}
.activity-preview:hover { transform: translateY(-6px) scale(1.03) !important; }

.activity-preview--1 { top: 0; left: 50%; transform: translateX(-50%) rotate(-6deg); z-index: 1; }
.activity-preview--2 { top: 80px; left: 55%; transform: translateX(-50%) rotate(4deg); z-index: 2; }
.activity-preview--3 { top: 160px; left: 45%; transform: translateX(-50%) rotate(-2deg); z-index: 3; }

.activity-preview--1 { background: linear-gradient(145deg, var(--green-600), var(--teal-600)); }
.activity-preview--2 { background: linear-gradient(145deg, var(--blue-600), var(--indigo-600)); }
.activity-preview--3 { background: linear-gradient(145deg, var(--amber-500), var(--rose-500)); }

.activity-preview__header {
  padding: 0.75rem 1rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.activity-preview__body {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.activity-preview__body p {
  color: white;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
}
.activity-preview__footer {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.1);
  text-align: center;
}

/* ─── TERRITORIES ────────────────────────────────────────────── */
.territories { background: white; }

.territories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.territory-card {
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.territory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.territory-card--blue   { background: linear-gradient(145deg, var(--blue-50), #eef2ff);   border: 1.5px solid var(--blue-100);   }
.territory-card--green  { background: linear-gradient(145deg, var(--green-50), #ecfdf5);  border: 1.5px solid var(--green-100);  }
.territory-card--amber  { background: linear-gradient(145deg, var(--amber-50), #fff7ed); border: 1.5px solid var(--amber-100); }
.territory-card--purple { background: linear-gradient(145deg, var(--purple-50), #fdf4ff); border: 1.5px solid var(--purple-100); }

.territory-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.territory-card--blue   .territory-card__icon { background: var(--blue-600);   color: white; }
.territory-card--green  .territory-card__icon { background: var(--green-600);  color: white; }
.territory-card--amber  .territory-card__icon { background: var(--amber-500);  color: white; }
.territory-card--purple .territory-card__icon { background: var(--purple-600); color: white; }

.territory-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.territory-card p  { font-size: 0.9rem; margin-bottom: 1rem; }
.territory-card ul { display: flex; flex-direction: column; gap: 0.35rem; }
.territory-card ul li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 1.1rem;
  position: relative;
}
.territory-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gray-400);
}

.territory-card__tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.06);
  color: var(--gray-600);
}

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery { background: var(--gray-50); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  aspect-ratio: 3/4;
  display: block;
  padding: 0;
  border: 1.5px solid var(--gray-200);
}
.gallery__item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-300);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__item:hover img               { transform: scale(1.04); }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  text-align: center;
  transition: opacity var(--duration-normal);
}
.gallery__item:hover .gallery__label { opacity: 0; }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(37,99,235,0.55);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--duration-normal);
}

/* ─── BENEFITS ───────────────────────────────────────────────── */
.benefits { background: white; }

.benefits__comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.comparison-col {
  border-radius: var(--radius-2xl);
  padding: 2rem;
}
.comparison-col--bad  {
  background: #fff5f5;
  border: 1.5px solid #fecaca;
}
.comparison-col--good {
  background: linear-gradient(145deg, var(--green-50), #ecfdf5);
  border: 1.5px solid var(--green-100);
}

.comparison-col__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.comparison-col__header h3 { font-size: 1.05rem; }
.comparison-col--bad  .comparison-col__header { color: #dc2626; }
.comparison-col--good .comparison-col__header { color: var(--green-700); }

.comparison-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.comparison-col ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.comparison-col--bad  ul li svg { color: #ef4444; flex-shrink: 0; }
.comparison-col--good ul li svg { color: var(--green-600); flex-shrink: 0; }

.comparison-col__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}
.comparison-col__divider span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.benefits__quote {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.benefits__quote blockquote {
  position: relative;
  background: linear-gradient(135deg, var(--blue-50), var(--purple-50));
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
}
.benefits__quote blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.75;
}
.benefits__quote cite {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: normal;
}
.benefits__quote cite strong { color: var(--gray-700); }

/* ─── INCLUDED ───────────────────────────────────────────────── */
.included { background: var(--gray-50); }

.included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.included-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.included-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.included-item__icon--blue   { background: var(--blue-50);   color: var(--blue-600);   }
.included-item__icon--green  { background: var(--green-50);  color: var(--green-600);  }
.included-item__icon--amber  { background: var(--amber-50);  color: var(--amber-600);  }
.included-item__icon--purple { background: var(--purple-50); color: var(--purple-600); }
.included-item__icon--teal   { background: var(--teal-50);   color: var(--teal-600);   }

.included-item__text { flex: 1; }
.included-item__text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}
.included-item__text span { font-size: 0.85rem; color: var(--gray-500); }

/* ─── STORY ──────────────────────────────────────────────────── */
.story {
  background: linear-gradient(160deg, #fefce8 0%, #faf5ff 50%, #eff6ff 100%);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.story__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.story__avatar-wrapper {
  position: relative;
}
.story__avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
  background: linear-gradient(135deg, var(--blue-100), var(--purple-100));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: avatar-pulse 3s ease-in-out infinite;
}
@keyframes avatar-pulse {
  0%, 100% { box-shadow: var(--shadow-xl), 0 0 0 0 rgba(37,99,235,0.2); }
  50%       { box-shadow: var(--shadow-xl), 0 0 0 10px rgba(37,99,235,0.05); }
}
.story__avatar svg { width: 100%; height: 100%; }

.story__badge-age {
  position: absolute;
  bottom: 8px;
  right: 0;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 2px solid white;
  box-shadow: var(--shadow-md);
}

.story__card-mini {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.story__card-mini p {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.story__card-mini strong { font-size: 0.85rem; color: var(--blue-700); }

.story__content { max-width: 560px; }
.story__content p { margin-bottom: 1rem; }

.story__numbers {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.story__number {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.story__number strong {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--blue-600);
}
.story__number span { font-size: 0.8rem; color: var(--gray-500); }

/* ─── OFFER ──────────────────────────────────────────────────── */
.offer { background: white; }

.offer__card {
  background: linear-gradient(145deg, #f8faff, #faf5ff);
  border: 2px solid var(--blue-100);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
}

.offer__badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

.offer__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.offer__book-real {
  position: relative;
  width: 200px;
  animation: book-float-offer 4s ease-in-out infinite;
}
@keyframes book-float-offer {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-8px) rotate(-3deg); }
}
.offer__book-real__wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: -6px 0 0 0 #c7c9d9, var(--shadow-xl), 0 0 60px rgba(37,99,235,.18);
}
.offer__book-real__img {
  display: block;
  width: 100%;
  height: auto;
}
.offer__book-real__spine {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 14px;
  background: linear-gradient(90deg, #b0b2c4 0%, #d8dae8 50%, #b0b2c4 100%);
  transform: translateX(-8px);
  border-radius: 2px 0 0 2px;
  z-index: 3;
}
.offer__book-real__pages {
  position: absolute;
  right: -5px;
  top: 3px;
  width: 6px;
  bottom: 3px;
  background: repeating-linear-gradient(
    90deg,
    #e8e9ef 0px, #f4f5f8 1px, #f4f5f8 3px, #e8e9ef 4px
  );
  z-index: 1;
  border-radius: 0 1px 1px 0;
}

.offer__details h2 { font-size: 2rem; margin-bottom: 0.4rem; }
.offer__subtitle { font-size: 1rem; color: var(--gray-500); margin-bottom: 1.75rem; }

.offer__price-block { margin-bottom: 2rem; }
.offer__price-old {
  display: inline-block;
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}
.offer__price-current {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.offer__price-label { font-size: 0.85rem; color: var(--gray-500); }
.offer__price-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-700);
  letter-spacing: -0.04em;
  line-height: 1;
}
.offer__price-note { font-size: 0.8rem; color: var(--gray-400); }

.offer__seals {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.offer__seal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
}
.offer__seal svg { color: var(--green-600); }

/* ─── ORDER BUMP ─────────────────────────────────────────────── */
.order-bump { padding-top: 0; }

.order-bump__card {
  background: linear-gradient(145deg, #fffbeb, #fff7ed);
  border: 2px dashed var(--amber-400);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
}

.order-bump__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber-400);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.order-bump__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.bump-book-real {
  position: relative;
  width: 140px;
  flex-shrink: 0;
  animation: book-float-offer 4s ease-in-out infinite;
}
.bump-book-real__wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: -4px 0 0 0 #c7c9d9, var(--shadow-lg), 0 0 30px rgba(245,158,11,.2);
}
.bump-book-real__img {
  display: block;
  width: 100%;
  height: auto;
}
.bump-book-real__spine {
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 10px;
  background: linear-gradient(90deg, #b0b2c4 0%, #d8dae8 50%, #b0b2c4 100%);
  transform: translateX(-6px);
  border-radius: 2px 0 0 2px;
  z-index: 3;
}
.bump-book-real__pages {
  position: absolute;
  right: -4px;
  top: 3px;
  bottom: 3px;
  width: 5px;
  background: repeating-linear-gradient(
    90deg,
    #e8e9ef 0px, #f4f5f8 1px, #f4f5f8 3px, #e8e9ef 4px
  );
  border-radius: 0 1px 1px 0;
  z-index: 1;
}

.order-bump__text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.order-bump__text h3 strong { color: var(--amber-600); }
.order-bump__text p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.order-bump__text ul { display: flex; flex-direction: column; gap: 0.3rem; }
.order-bump__text ul li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 1.1rem;
  position: relative;
}
.order-bump__text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
}

.order-bump__action { text-align: center; }
.order-bump__price { margin-bottom: 1rem; }
.order-bump__price-old {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}
.order-bump__price-new {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--amber-600);
}

.order-bump__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.4;
}
.order-bump__checkbox input { display: none; }
.order-bump__checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--amber-400);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration-fast), border-color var(--duration-fast);
  margin-top: 1px;
}
.order-bump__checkbox input:checked + .order-bump__checkbox-custom {
  background: var(--amber-500);
  border-color: var(--amber-500);
}
.order-bump__checkbox input:checked + .order-bump__checkbox-custom::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

/* ─── GUARANTEE ──────────────────────────────────────────────── */
.guarantee { background: var(--gray-50); }

.guarantee__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  background: white;
  border: 1px solid var(--green-100);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.guarantee__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-50), #ecfdf5);
  border: 2px solid var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}

.guarantee__text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.guarantee__text p  { font-size: 0.95rem; margin-bottom: 0.5rem; }

.guarantee__badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-green), var(--shadow-md);
  flex-shrink: 0;
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
.guarantee__badge-inner {
  text-align: center;
  color: white;
}
.guarantee__badge-days {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.guarantee__badge-text { font-size: 0.7rem; font-weight: 600; opacity: 0.85; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { background: white; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card__stars {
  color: var(--amber-400);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.testimonial-card blockquote p {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.testimonial-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.testimonial-card cite strong { font-size: 0.875rem; color: var(--gray-800); }
.testimonial-card cite span   { font-size: 0.8rem;   color: var(--gray-400); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--gray-50); }

.faq__list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.faq__item {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--duration-normal);
}
.faq__item:hover { box-shadow: var(--shadow-md); }
.faq__item.open  { border-color: var(--blue-200); box-shadow: var(--shadow-md); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: color var(--duration-fast);
}
.faq__item.open .faq__question { color: var(--blue-700); }
.faq__icon {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--duration-normal) var(--ease-out);
}
.faq__item.open .faq__icon { transform: rotate(180deg); color: var(--blue-500); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out),
              padding var(--duration-normal);
}
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq__cta {
  text-align: center;
}
.faq__cta p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ─── CTA FINAL ──────────────────────────────────────────────── */
.cta-final {
  background: white;
  padding-block: 4rem;
}
.cta-final__card {
  position: relative;
  background: linear-gradient(145deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
  border-radius: var(--radius-2xl);
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
}
.cta-final__blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.3), transparent);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.cta-final__card h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.cta-final__card h2 .text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-final__card p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.cta-final__card .btn--primary {
  background: white;
  color: var(--blue-700);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.cta-final__card .btn--primary:hover {
  background: var(--blue-50);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.cta-final__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.85rem !important;
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 1;
}
.cta-final__guarantee svg { color: rgba(255,255,255,0.4); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding-block: 4rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand .nav__logo { color: white; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.7; }

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.footer__links ul, .footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a, .footer__contact a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--duration-fast);
}
.footer__links a:hover, .footer__contact a:hover { color: white; }

.footer__disclaimer {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.footer__disclaimer svg { color: var(--amber-400); flex-shrink: 0; margin-top: 2px; }
.footer__disclaimer p {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.7;
}
.footer__disclaimer strong { color: var(--gray-300); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__bottom p, .footer__bottom a {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.footer__bottom p:last-child {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer__bottom a:hover { color: var(--gray-300); }

/* ─── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.lightbox__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  max-width: 500px;
  width: 90%;
}
.lightbox__content {
  flex: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
  animation: lightbox-in 0.3s var(--ease-out);
}
@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast);
  backdrop-filter: blur(4px);
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }

.lightbox__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration-fast);
  backdrop-filter: blur(4px);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }

.lightbox__counter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate="fade-up"]    { transform: translateY(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"]  { transform: translateX(30px); }

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; }

  .hero__grid,
  .solution__grid,
  .story__grid { grid-template-columns: 1fr; gap: 3rem; }

  .hero__visual { order: -1; }
  .book-real    { width: 200px; }

  .pain__grid        { grid-template-columns: repeat(2, 1fr); }
  .territories__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid     { grid-template-columns: repeat(4, 1fr); }
  .included__grid    { grid-template-columns: 1fr; }

  .benefits__comparison { grid-template-columns: 1fr; }
  .comparison-col__divider { padding: 0; }

  .guarantee__card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .guarantee__icon { margin-inline: auto; }
  .guarantee__badge { margin-inline: auto; }

  .offer__grid { grid-template-columns: 1fr; text-align: center; }
  .offer__book-preview { display: flex; justify-content: center; }
  .offer__seals { justify-content: center; }

  .order-bump__content { grid-template-columns: 1fr; text-align: center; }
  .coloring-book-preview { margin-inline: auto; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .story__grid { grid-template-columns: 1fr; }
  .story__visual { margin-inline: auto; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 3rem;
    --container-px: 1.25rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .topbar { display: none; }

  .hero { padding-block: 3rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { order: -1; }
  .book-mockup { width: 200px; height: 256px; }
  .hero__seals { gap: 0.75rem; }
  .hero__cta { flex-direction: column; align-items: flex-start; }

  .pain__grid        { grid-template-columns: 1fr; }
  .territories__grid { grid-template-columns: 1fr; }
  .gallery__grid     { grid-template-columns: repeat(2, 1fr); }

  .activity-preview { width: 160px; }
  .activity-preview--1 { left: 50%; }
  .activity-preview--2 { left: 55%; }
  .activity-preview--3 { left: 45%; }
  .solution__card-stack { height: 320px; }

  .offer__card    { padding: 1.75rem; }
  .order-bump__card { padding: 1.5rem; }
  .guarantee__card  { padding: 2rem; }
  .cta-final__card  { padding: 3rem 1.5rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .included__grid { grid-template-columns: 1fr; }

  .story__numbers { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__seals { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .offer__price-value { font-size: 2.4rem; }
  .nav__inner { height: 60px; }
}

/* ─── SCROLL TO TOP (OPTIONAL POLISH) ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
  .book-mockup { animation: none; }
}
