/* ═══════════════════════════════════════════════════════
   od3sign · Landing Auditoría v2 — Pluto-inspired
   Palette: #01303a · #005c53 · #038679 · #191919 · #e25626
   Fonts: Space Grotesk (headings) · Inter (body) · DM Serif Display (italic)
═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --deep: #01303a;
  --teal: #005c53;
  --mid: #038679;
  --dark: #191919;
  --orange: #e25626;
  --orange-dim: rgba(226, 86, 38, 0.15);
  --orange-glow: rgba(226, 86, 38, 0.35);
  --cream: #f1ebe2;
  --cream-60: rgba(241, 235, 226, 0.6);
  --cream-30: rgba(241, 235, 226, 0.3);
  --cream-12: rgba(241, 235, 226, 0.12);
  --cream-06: rgba(241, 235, 226, 0.06);
  --border: rgba(241, 235, 226, 0.1);
  --border-mid: rgba(3, 134, 121, 0.3);
  --white: #ffffff;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'DM Serif Display', serif;

  /* Light section tokens */
  --light-bg: #ffffff;
  --light-h: #01303a;
  --light-body: #005c53;
  --light-dim: #7a9aa3;
  --light-border: rgba(1, 48, 58, 0.1);
  --light-card-bg: rgba(1, 48, 58, 0.04);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 200px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(226, 86, 38, 0.25);

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: inherit;
}

strong {
  font-weight: 600;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: #d44b1f;
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--mid);
  background: var(--cream-06);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* Shimmer/glow CTA animation */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

/* ── TOP BAR ─────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  position: relative;
  z-index: 100;
  text-align: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--cream-60);
}

.top-bar-inner strong {
  color: var(--cream);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: pulse-red 1.8s ease-in-out infinite;
}

@keyframes pulse-red {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
}

.top-bar-cta {
  background: var(--orange);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}

.top-bar-cta:hover {
  background: #d44b1f;
}

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--light-border);
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(1, 48, 58, 0.08);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--light-body);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--deep);
}

.nav-cta {
  margin-left: 16px;
}

.nav-hamburger {
  display: none;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(3, 134, 121, 0.18) 0%, transparent 70%);
}

/* Mesh background orbs */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--mid), transparent 70%);
  top: -200px;
  left: -100px;
  animation-duration: 14s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orange), transparent 70%);
  top: 100px;
  right: -80px;
  animation-duration: 18s;
  animation-delay: -6s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  bottom: -100px;
  left: 30%;
  animation-duration: 10s;
  animation-delay: -3s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}

/* Final CTA orbs */
.orb-f1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--mid), transparent 70%);
  top: -150px;
  right: -100px;
}

.orb-f2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--orange), transparent 70%);
  bottom: -100px;
  left: 10%;
  animation-duration: 16s;
  animation-delay: -4s;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mid);
  opacity: 0.5;
  animation: particleDrift linear infinite;
}

.p1 {
  left: 15%;
  top: 20%;
  width: 3px;
  height: 3px;
  animation-duration: 20s;
}

.p2 {
  left: 75%;
  top: 35%;
  animation-duration: 27s;
  animation-delay: -8s;
  background: var(--orange);
  opacity: 0.4;
}

.p3 {
  left: 40%;
  top: 70%;
  width: 5px;
  height: 5px;
  animation-duration: 23s;
  animation-delay: -5s;
}

.p4 {
  left: 85%;
  top: 60%;
  width: 3px;
  height: 3px;
  animation-duration: 31s;
  animation-delay: -12s;
  background: var(--cream);
  opacity: 0.2;
}

.p5 {
  left: 25%;
  top: 80%;
  animation-duration: 18s;
  animation-delay: -3s;
}

.p6 {
  left: 60%;
  top: 15%;
  width: 3px;
  height: 3px;
  animation-duration: 25s;
  animation-delay: -15s;
  background: var(--orange);
  opacity: 0.3;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream-60);
  background: var(--cream-06);
  animation: badgeFloat 4s ease-in-out infinite;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mid);
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(3, 134, 121, 0.8);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(3, 134, 121, 0);
  }
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Headings */
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.hero h1 em {
  display: block;
  color: var(--cream);
}

.hero-sub {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--cream-60);
  line-height: 1.75;
  text-wrap: balance;
}

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

.price-cross {
  font-size: 0.9rem;
  color: var(--cream-30);
}

.price-cross s {
  color: var(--cream-30);
}

.price-free {
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  color: #f9a07a;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 8px;
}

.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cream-06);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--cream-60);
}

.trust-chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-30);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--mid));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── SECTION SHARED ──────────────────────────────────── */
.section-problem {
  background: var(--light-bg);
}

.section-solution {
  background: var(--deep);
}

.section-proof {
  background: var(--light-bg);
}

.section-form {
  background: var(--deep);
}

.section-whom {
  background: #005c53;
}

.section-faq {
  background: var(--light-bg);
}

.section-final {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}

.section-h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--cream);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--cream-60);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ── PROBLEM CARDS ───────────────────────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.problem-card {
  background: var(--cream-06);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s, background 0.3s;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-mid);
  background: rgba(3, 134, 121, 0.08);
}

.problem-icon-wrap {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--cream-60);
  line-height: 1.6;
}

.problem-closing {
  text-align: center;
  font-size: 1rem;
  color: var(--cream-60);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.problem-closing strong {
  color: var(--cream);
}

/* ── DELIVERABLES ─────────────────────────────────────── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}

.deliverable {
  display: flex;
  gap: 20px;
  padding: 40px 36px;
  background: var(--deep);
  transition: background 0.3s;
}

.deliverable:hover {
  background: rgba(3, 134, 121, 0.07);
}

.deliverable-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s;
}

.deliverable:hover .deliverable-num {
  color: var(--orange);
}

.deliverable-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--cream);
}

.deliverable-body p {
  font-size: 0.9rem;
  color: var(--cream-60);
  line-height: 1.65;
}

/* Tools */
.tools-block {
  text-align: center;
  margin-bottom: 48px;
}

.tools-label {
  font-size: 0.82rem;
  color: var(--cream-30);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.tools-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--cream-60);
  background: var(--cream-06);
  transition: border-color 0.2s, color 0.2s;
}

.tool-chip:hover {
  border-color: var(--mid);
  color: var(--cream);
}

.sol-cta {
  text-align: center;
}

/* Solution section: center label, title, subtitle */
.section-solution .section-label,
.section-solution .section-h2,
.section-solution .section-sub {
  text-align: center;
}
.section-solution .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── TESTIMONIALS SLIDER ─────────────────────────────── */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  /* extra padding for card shadow */
  padding-bottom: 56px;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Desktop: 3 per row */
.testimonial {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #ffffff;
  border: 1px solid rgba(1, 48, 58, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(1, 48, 58, 0.07);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(1, 48, 58, 0.12);
}

.t-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 3px;
}

.t-text {
  font-size: 0.95rem;
  color: #4a6270;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--light-h);
}

.t-author span {
  font-size: 0.78rem;
  color: #7a9aa3;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(1, 48, 58, 0.15);
  background: #ffffff;
  color: var(--light-h);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.slider-btn svg {
  width: 16px;
  height: 16px;
}

.slider-btn:hover {
  background: var(--mid);
  border-color: var(--mid);
  color: #fff;
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(1, 48, 58, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
  padding: 0;
}

.slider-dot.active {
  background: var(--mid);
  width: 22px;
  border-radius: 4px;
}

/* Mobile: 1 per row */
@media (max-width: 768px) {
  .testimonial {
    flex: 0 0 100%;
  }

  .slider-track {
    gap: 0;
  }
}

/* ── FORM SECTION ────────────────────────────────────── */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-copy .section-h2 {
  margin-bottom: 24px;
}

.price-stack {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.price-was {
  font-size: 0.88rem;
  color: var(--cream-30);
}

.price-was s {
  color: var(--cream-30);
}

.price-now {
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  color: #f9a07a;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-copy-sub {
  font-size: 0.95rem;
  color: var(--cream-60);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Mini stats */
.mini-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.mini-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.mini-num-static {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.mini-unit {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.mini-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Form card */
.form-card {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-60);
}

.optional {
  font-weight: 400;
  color: var(--cream-30);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-06);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input::placeholder {
  color: var(--cream-30);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--mid);
  background: rgba(3, 134, 121, 0.08);
  box-shadow: 0 0 0 3px rgba(3, 134, 121, 0.15);
}

.field-hint {
  font-size: 0.78rem;
  color: var(--cream-30);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.btn-submit:hover {
  background: #d44b1f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--cream-30);
  line-height: 1.6;
}

.form-error-msg {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #fca5a5;
  text-align: center;
}

.form-error-msg.visible {
  display: block;
}

.form-error-msg a {
  color: var(--mid);
  text-decoration: underline;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.form-success.visible {
  display: block;
}

.success-checkmark {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  animation: successPop 0.5s var(--ease-out-expo);
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--cream-60);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.url-chip {
  display: inline-block;
  background: var(--cream-06);
  border: 1px solid var(--border-mid);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--mid);
  margin: 8px 0 16px;
  font-weight: 600;
}

.form-urgency {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--cream-30);
}

.form-urgency strong {
  color: var(--cream-60);
}

/* ── FOR WHOM ────────────────────────────────────────── */
.section-whom .section-h2 {
  text-align: center;
  margin-bottom: 48px;
}

.whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.whom-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.whom-yes {
  background: rgba(3, 134, 121, 0.07);
  border-color: var(--border-mid);
}

.whom-no {
  background: var(--cream-06);
}

.whom-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.whom-icon {
  font-size: 1.5rem;
}

.whom-card h3 {
  font-size: 1.1rem;
  color: var(--cream);
}

.whom-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.whom-card li {
  font-size: 0.92rem;
  color: var(--cream-60);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.whom-yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mid);
  font-weight: 700;
}

.whom-no li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: rgba(239, 68, 68, 0.7);
  font-weight: 700;
}

/* ── REPORT SECTION ──────────────────────────────────── */
.report-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.report-copy .section-h2 {
  margin-bottom: 20px;
}

.report-copy p {
  font-size: 0.95rem;
  color: var(--cream-60);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Mock report card */
.report-mock {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mock-header {
  background: rgba(241, 235, 226, 0.04);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--cream-30);
}

.mock-dot {
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.mock-tag {
  margin-left: auto;
  background: var(--cream-06);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  color: var(--cream-30);
}

.mock-metric {
  padding: 20px 24px 0;
}

.mock-metric-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.mock-label {
  font-size: 0.85rem;
  color: var(--cream-60);
}

.mock-score {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.mock-score.bad {
  background: rgba(226, 86, 38, 0.15);
  color: #f4997a;
}

.mock-score.mid {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.mock-track {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 20px;
}

.mock-fill {
  height: 100%;
  border-radius: 99px;
  width: 0%;
  transition: width 1.2s var(--ease-out-expo);
}

.mock-insight {
  margin: 4px 24px 24px;
  background: rgba(226, 86, 38, 0.08);
  border: 1px solid rgba(226, 86, 38, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.85rem;
  color: var(--cream-60);
  line-height: 1.6;
}

.mock-insight span {
  color: #f9a07a;
  font-weight: 600;
}

/* ── FAQ ─────────────────────────────────────────────── */
.section-faq .section-label {
  text-align: center;
}

.section-faq .section-h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

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

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--mid);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--mid);
  border-radius: 2px;
  transition: transform 0.3s;
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
}

.faq-q[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
}

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--border-mid);
  border-color: var(--mid);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-in-out), padding 0.3s;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--cream-60);
  line-height: 1.7;
}

/* ── FINAL CTA ───────────────────────────────────────── */
.final-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.final-h2 {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  text-align: center;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .final-h2 {
    white-space: normal;
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
}

.final-sub {
  font-size: 1.05rem;
  color: var(--cream-60);
  margin-bottom: 36px;
}

.final-price {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.final-urgency {
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--cream-30);
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 56px 24px;
}

.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  margin: 0 auto;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--cream-30);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--cream-30);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--mid);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(241, 235, 226, 0.2);
}

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────── */
.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
.anim-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s var(--ease-out-expo) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered card delays */
.reveal-card[data-index="0"] {
  transition-delay: 0ms;
}

.reveal-card[data-index="1"] {
  transition-delay: 80ms;
}

.reveal-card[data-index="2"] {
  transition-delay: 160ms;
}

.reveal-card[data-index="3"] {
  transition-delay: 240ms;
}

.reveal-card[data-index="4"] {
  transition-delay: 320ms;
}

.reveal-card[data-index="5"] {
  transition-delay: 400ms;
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

/* ── LIGHT SECTION OVERRIDES ─────────────────────────── */

/* Shared for all white sections */
.section-problem .section-label,
.section-proof .section-label,
.section-form .section-label,
.section-faq .section-label {
  color: var(--mid);
}

.section-problem .section-h2,
.section-proof .section-h2,
.section-faq .section-h2 {
  color: var(--light-h);
}

.section-problem .section-sub,
.section-proof .section-sub {
  color: var(--light-body);
}

/* Problem cards on white */
.section-problem .problem-card {
  background: var(--light-card-bg);
  border-color: var(--light-border);
}

.section-problem .problem-card:hover {
  background: rgba(3, 134, 121, 0.06);
  border-color: rgba(3, 134, 121, 0.25);
}

.section-problem .problem-card h3 {
  color: var(--light-h);
}

.section-problem .problem-card p {
  color: var(--light-body);
}

.section-problem .problem-closing {
  color: var(--light-body);
}

.section-problem .problem-closing strong {
  color: var(--light-h);
}

/* Testimonials on cream */
.section-proof .section-label {
  color: var(--mid);
}

.section-proof .section-h2 {
  color: var(--light-h);
}

/* Form section — dark teal #3d5a62 bg, light text */
.section-form .section-label {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.14em;
}

.section-form .section-h2 {
  color: #ffffff;
}

.section-form .price-was {
  color: rgba(255, 255, 255, 0.45);
}

.section-form .price-was s {
  color: rgba(255, 255, 255, 0.35);
}

.section-form .price-now {
  background: rgba(226, 86, 38, 0.25);
  border-color: rgba(226, 86, 38, 0.5);
  color: #ffb899;
}

.section-form .form-copy-sub {
  color: rgba(255, 255, 255, 0.7);
}

.section-form .form-copy-sub strong {
  color: #ffffff;
}

.section-form .form-urgency {
  color: rgba(255, 255, 255, 0.45);
}

.section-form .form-urgency strong {
  color: rgba(255, 255, 255, 0.75);
}

/* Form card: white */
.section-form .form-card {
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.22);
}

/* Dark text inside white form card */
.section-form .form-card label {
  color: #2d4a52;
}

.section-form .form-card .optional {
  color: #9ab0b8;
}

.section-form .form-card input,
.section-form .form-card select {
  background: #f4f7f8;
  border-color: rgba(1, 48, 58, 0.14);
  color: #01303a;
}

.section-form .form-card input::placeholder {
  color: #9ab0b8;
}

.section-form .form-card input:focus,
.section-form .form-card select:focus {
  background: #ffffff;
  border-color: #038679;
  box-shadow: 0 0 0 3px rgba(3, 134, 121, 0.15);
}

.section-form .form-card .field-hint {
  color: #9ab0b8;
}

.section-form .form-card .form-privacy {
  color: #7a9aa3;
}

.section-form .form-success h3 {
  color: #01303a;
}

.section-form .form-success p {
  color: #3d5a62;
}

/* FAQ on white */
.section-faq .faq-item {
  border-bottom-color: var(--light-border);
}

.section-faq .faq-item:first-child {
  border-top-color: var(--light-border);
}

.section-faq .faq-q {
  color: var(--light-h);
}

.section-faq .faq-q:hover {
  color: var(--mid);
}

.section-faq .faq-a p {
  color: var(--light-body);
}

.section-faq .faq-icon {
  border-color: rgba(3, 134, 121, 0.25);
}

.section-faq .faq-q[aria-expanded="true"] .faq-icon {
  background: rgba(3, 134, 121, 0.1);
  border-color: var(--mid);
}

/* Footer on white */
.footer {
  background: var(--light-bg);
  border-top: 1px solid var(--light-border);
}

.footer-tagline {
  color: var(--light-body);
}

.footer-links a {
  color: var(--light-dim);
}

.footer-links a:hover {
  color: var(--mid);
}

.footer-copy {
  color: var(--light-dim);
  opacity: 0.7;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .report-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mini-stats {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 0;
  }

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .form-card {
    padding: 28px 20px;
  }

  .mini-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .top-bar-inner {
    gap: 8px;
    font-size: 0.82rem;
  }
}