/* ═══════════════════════════════════════════════════════════
   P&H PATAS Y HUELLAS CLINICAL — PREMIUM LANDING PAGE
   Design System: Luxury + Organic + Minimal
   Colors: Navy Blue · Rose Gold · Pure White · Polished Gold
   Fonts: Montserrat · Cormorant Garamond · Lato
═══════════════════════════════════════════════════════════ */

/* ─────────────── CSS DESIGN TOKENS ─────────────── */
:root {
  /* Brand Colors */
  --navy:          #0D2545;
  --navy-dark:     #091A33;
  --navy-light:    #1A3A6B;
  --navy-muted:    #2C4A7C;
  --rose-gold:     #C9956A;
  --rose-light:    #E8C4A0;
  --rose-soft:     #F5EAE0;
  --gold:          #B8973E;
  --gold-light:    #D4B56A;
  --gold-pale:     #F0E4C0;
  --white:         #FFFFFF;
  --off-white:     #FAFAF8;
  --cream:         #F7F3EE;
  --warm-gray:     #F2EEE8;
  --text-primary:  #1A1A2E;
  --text-secondary:#4A4A6A;
  --text-muted:    #8A8AAA;
  --border:        #E8E4DE;
  --border-light:  #F0ECE6;

  /* Typography Scale */
  --font-display:  'Montserrat', sans-serif;
  --font-body:     'Lato', sans-serif;
  --font-accent:   'Cormorant Garamond', serif;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;
  --text-7xl:   4.5rem;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(13,37,69,0.08), 0 1px 2px rgba(13,37,69,0.04);
  --shadow-md:  0 4px 16px rgba(13,37,69,0.1), 0 2px 8px rgba(13,37,69,0.06);
  --shadow-lg:  0 10px 40px rgba(13,37,69,0.12), 0 4px 16px rgba(13,37,69,0.08);
  --shadow-xl:  0 20px 60px rgba(13,37,69,0.16), 0 8px 24px rgba(13,37,69,0.1);
  --shadow-gold: 0 8px 32px rgba(180,145,60,0.25);
  --shadow-navy: 0 8px 32px rgba(13,37,69,0.35);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out-expo:  cubic-bezier(0.19, 1, 0.22, 1);
  --transition-base: 200ms ease;
  --transition-smooth: 350ms var(--ease-out-quint);
  --transition-slow:  600ms var(--ease-out-expo);

  /* Layout */
  --container-max: 1200px;
  --nav-height: 96px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul { list-style: none; }

/* ─────────────── TYPOGRAPHY ─────────────── */
.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: var(--space-3);
}

.section-label.light {
  color: var(--rose-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: var(--space-5);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.gold-text {
  color: var(--gold);
}

/* ─────────────── LAYOUT ─────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.section {
  padding: var(--space-24) 0;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 300ms var(--ease-out-quint);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 300ms ease;
}

.btn:hover::before {
  transform: translateX(0);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(13,37,69,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,37,69,0.4);
}

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

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-hero {
  padding: 16px 32px;
  font-size: var(--text-base);
}

.btn-nav {
  padding: 10px 22px;
  font-size: var(--text-sm);
  background: var(--navy);
  color: var(--white);
}

.btn-nav:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.btn-plan {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-6);
}

.btn-large {
  padding: 18px 40px;
  font-size: var(--text-base);
}

.btn-form {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: var(--text-base);
}

/* Pulse animation for CTA */
.pulse-btn {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(13,37,69,0.3); }
  50% { box-shadow: 0 4px 40px rgba(13,37,69,0.5), 0 0 0 8px rgba(13,37,69,0.08); }
}

/* ─────────────── NAVBAR ─────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 350ms var(--ease-out-quint);
}

.navbar.scrolled,
.navbar.menu-open {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(13,37,69,0.08);
}

.nav-container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 105px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition-base), mix-blend-mode var(--transition-base);
}

.navbar.scrolled .logo-img,
.navbar.menu-open .logo-img {
  filter: none;
  mix-blend-mode: multiply; /* Blends away the white background on light navbar */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-base);
  position: relative;
}

.navbar.scrolled .nav-link,
.navbar.menu-open .nav-link {
  color: var(--text-secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms ease;
}

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

.navbar.scrolled .nav-link:hover,
.navbar.menu-open .nav-link:hover {
  color: var(--navy);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 300ms ease;
}

.navbar.scrolled .hamburger span,
.navbar.menu-open .hamburger span {
  background: var(--navy);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: var(--space-6) var(--space-8);
  gap: var(--space-4);
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-secondary);
  padding: var(--space-2) 0;
}

.mobile-cta {
  margin-top: var(--space-2);
  text-align: center;
  justify-content: center;
}

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Mejoras para evitar pixelado y aumentar nitidez */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  transform: translateZ(0); /* Aceleración por hardware */
  filter: contrast(1.05) saturate(1.05); /* Incremento sutil para dar más definición a la imagen */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9,26,51,0.6) 0%,
    rgba(13,37,69,0.4) 40%,
    rgba(13,37,69,0.1) 70%,
    rgba(9,26,51,0.3) 100%
  );
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--nav-height) var(--space-8) var(--space-12);
  width: 100%;
  transform: translateX(-10vw); /* Desplazamiento hacia la izquierda solicitado */
}

@media (max-width: 768px) {
  .hero-content {
    transform: none; /* Se reinicia en móviles para evitar mal centrado */
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,149,106,0.4);
  color: var(--rose-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-gold);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-6xl));
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-4);
  max-width: 650px;
}

.hero-title-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--rose-light);
  font-size: 0.9em;
}

.hero-subtitle {
  font-size: clamp(var(--text-sm), 1.6vw, var(--text-lg));
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: var(--space-8);
  font-weight: 300;
}

.hero-subtitle strong {
  color: var(--rose-light);
  font-weight: 600;
}

.desktop-br { display: none; }

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero-ctas .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.hero-ctas .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}


.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 250ms; }
.delay-3 { transition-delay: 400ms; }
.delay-4 { transition-delay: 550ms; }


/* Reveal animations only activate when js-ready class is found */
.js-ready .reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms var(--ease-out-quint), transform 700ms var(--ease-out-quint);
}

.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 700ms var(--ease-out-quint), transform 700ms var(--ease-out-quint);
}

.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 700ms var(--ease-out-quint), transform 700ms var(--ease-out-quint);
}

.js-ready .reveal-up.in-view,
.js-ready .reveal-left.in-view,
.js-ready .reveal-right.in-view {
  opacity: 1;
  transform: translate(0);
}

/* Hero animate-in also guarded by js-ready */
.js-ready .animate-in {
  opacity: 0;
  transform: translateY(30px);
}

.js-ready .animate-in.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms var(--ease-out-quint), transform 700ms var(--ease-out-quint);
}

.delay-s1 { transition-delay: 0ms; }
.delay-s2 { transition-delay: 120ms; }
.delay-s3 { transition-delay: 240ms; }
.delay-s4 { transition-delay: 360ms; }

/* ─────────────── FOR WHOM SECTION ─────────────── */
.for-whom {
  background: var(--off-white);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.for-whom-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.for-whom-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.for-whom-badge {
  position: absolute;
  bottom: var(--space-6);
  right: -24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--rose-gold);
}

.for-whom-badge svg {
  width: 20px;
  height: 20px;
  color: var(--rose-gold);
  fill: var(--rose-gold);
  flex-shrink: 0;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.who-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.who-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.who-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.who-item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─────────────── PROBLEM SECTION ─────────────── */
.problem-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}

.problem-section .section-title {
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 300ms var(--ease-out-quint);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}

.problem-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,149,106,0.3);
  transform: translateY(-4px);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-4);
  color: var(--rose-gold);
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.problem-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

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

.problem-solution-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--rose-light);
  margin-bottom: var(--space-6);
}

/* ─────────────── SOLUTION SECTION ─────────────── */
.solution-section {
  background: var(--cream);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.solution-point {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.point-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.solution-guarantee {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.guarantee-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.solution-guarantee strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.solution-guarantee p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.solution-image {
  position: relative;
}

.solution-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.solution-float-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-navy);
  text-align: center;
}

.float-badge-inner {
  display: flex;
  flex-direction: column;
}

.float-badge-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--rose-gold);
  line-height: 1;
}

.float-badge-text {
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  margin-top: 4px;
}

/* ─────────────── BENEFITS SECTION ─────────────── */
.benefits-section {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 350ms var(--ease-out-quint);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.benefit-card-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
  color: var(--white);
}

.benefit-card-highlight .benefit-title {
  color: var(--white);
}

.benefit-card-highlight .benefit-text {
  color: rgba(255,255,255,0.75);
}

.benefit-card-highlight .benefit-tag {
  background: rgba(255,255,255,0.15);
  color: var(--rose-light);
  border-color: rgba(255,255,255,0.2);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-5);
}

.benefit-icon-1 { color: var(--navy); }
.benefit-icon-2 { color: var(--rose-gold); }
.benefit-icon-3 { color: var(--gold); }
.benefit-icon-4 { color: var(--navy); }
.benefit-icon-5 { color: var(--rose-gold); }
.benefit-icon-6 { color: var(--white); }

.benefit-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.benefit-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.benefit-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--rose-gold);
  letter-spacing: 0.05em;
}

/* ─────────────── FEATURES SECTION ─────────────── */
.features-section {
  background: var(--off-white);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.features-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.features-img-main {
  grid-column: 1 / -1;
}

.features-img-main img {
  border-radius: var(--radius-xl);
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.features-img-secondary img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.feature-item {
  display: flex;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
  transition: all 300ms ease;
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-item:hover {
  transform: translateX(8px);
}

.feature-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
  flex-shrink: 0;
  padding-top: 4px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.feature-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─────────────── PRICING SECTION ─────────────── */
.pricing-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
  margin-bottom: var(--space-12);
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 350ms var(--ease-out-quint);
}

.plan-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.plan-card-popular {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
  color: var(--white);
}

.plan-card-popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.plan-header {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-light);
}

.plan-card-popular .plan-header {
  border-bottom-color: rgba(255,255,255,0.15);
}

.plan-icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
}

.plan-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.plan-card-popular .plan-name { color: var(--white); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-3);
}

.price-from {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.plan-card-popular .price-from { color: rgba(255,255,255,0.6); }

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.plan-card-popular .price-amount { color: var(--rose-light); }

.price-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.plan-card-popular .price-period { color: rgba(255,255,255,0.6); }

.plan-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.plan-card-popular .plan-desc { color: rgba(255,255,255,0.75); }

.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.plan-feature.included {
  color: var(--text-secondary);
}

.plan-card-popular .plan-feature.included { color: rgba(255,255,255,0.9); }

.plan-feature.not-included {
  color: var(--text-muted);
  text-decoration: line-through;
}

.plan-card-popular .plan-feature.not-included { color: rgba(255,255,255,0.35); }

.plan-card-popular .btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--gold));
  box-shadow: 0 4px 20px rgba(201,149,106,0.4);
}

.plan-card-popular .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201,149,106,0.5);
}

.pricing-guarantee {
  margin-top: var(--space-4);
}

.guarantee-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  position: relative;
  overflow: hidden;
}

.guarantee-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,149,106,0.1), transparent);
  pointer-events: none;
}

.guarantee-banner .guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-text {
  flex: 1;
}

.guarantee-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.guarantee-banner p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ─────────────── TESTIMONIALS SECTION ─────────────── */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 350ms var(--ease-out-quint);
}

.testimonial-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.testimonial-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}

.testimonial-featured blockquote p {
  color: rgba(255,255,255,0.85) !important;
}

.testimonial-featured blockquote p strong {
  color: var(--rose-light) !important;
}

.testimonial-featured .author-name {
  color: var(--white) !important;
}

.testimonial-featured .author-detail {
  color: rgba(255,255,255,0.5) !important;
}

.testimonial-featured .testimonial-plan {
  background: rgba(255,255,255,0.15) !important;
  color: var(--rose-light) !important;
  border-color: rgba(255,255,255,0.2) !important;
}

.stars {
  color: var(--gold);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
  display: block;
}

.testimonial-card blockquote p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card blockquote p strong {
  color: var(--navy);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
}

.author-detail {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.testimonial-plan {
  padding: 3px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--rose-gold);
  white-space: nowrap;
}

.metrics-section {
  background: transparent;
  padding: var(--space-6) 0 var(--space-16);
  position: relative;
  z-index: 10;
}

.social-proof-bar {
  background: rgba(4, 15, 33, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.proof-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.proof-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ─────────────── AUTHORITY SECTION ─────────────── */
.authority-section {
  background: var(--cream);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.authority-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.authority-creds {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.cred-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.cred-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.cred-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cred-item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─────────────── PROCESS SECTION ─────────────── */
.process-section {
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--space-16);
  justify-content: center;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  max-width: 280px;
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--rose-gold);
  margin-bottom: var(--space-4);
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  color: var(--navy);
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 12px;
  transition: all 300ms ease;
}

.process-step:hover .step-icon {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-navy);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  flex-shrink: 0;
}

.process-connector svg {
  width: 24px;
  height: 24px;
  color: var(--rose-gold);
}

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

/* ─────────────── FAQ SECTION ─────────────── */
.faq-section {
  background: var(--off-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: start;
}

.faq-header {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.faq-header p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--navy);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: all 200ms ease;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-icon {
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1;
  color: var(--rose-gold);
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out-quint);
}

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

.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer.open {
  display: block;
  animation: faq-slide 300ms var(--ease-out-quint);
}

@keyframes faq-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─────────────── FINAL CTA SECTION ─────────────── */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}

.final-cta-section .section-title {
  color: var(--white);
}

.final-cta-section .section-text {
  color: rgba(255,255,255,0.75);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.urgency-box {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: rgba(201,149,106,0.15);
  border: 1px solid rgba(201,149,106,0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-8);
}

.urgency-box svg {
  width: 24px;
  height: 24px;
  color: var(--rose-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.urgency-box p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.urgency-box strong {
  color: var(--rose-light);
}

.digital-portal-preview {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.digital-portal-preview img {
  width: 100%;
  object-fit: cover;
}

/* FORM */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}

.form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.form-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--white);
  transition: all 200ms ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,37,69,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A6A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: var(--space-2);
}

/* ─────────────── CONTACT SECTION ─────────────── */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--navy);
}

.map-container {
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-5);
  filter: invert(1); /* Makes the logo white and the background black */
  mix-blend-mode: screen; /* Blends away the black background on dark footer */
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 200ms ease;
}

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

.social-link:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color 200ms ease;
}

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

.footer-cta-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.footer-cta-box h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.footer-cta-box p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: var(--text-sm);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color 200ms ease;
}

.footer-legal a:hover {
  color: var(--rose-gold);
}

/* ─────────────── WHATSAPP FLOAT ─────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: 999;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all 350ms var(--ease-out-quint);
  animation: wa-bounce 3s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  animation: none;
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─────────────── SUCCESS/FORM STATES ─────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-10);
}

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

.form-success .success-icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

/* ─────────────── RESPONSIVE ─────────────── */

/* Large Desktop */
@media (min-width: 1200px) {
  .desktop-br { display: inline; }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  .for-whom-grid,
  .solution-grid,
  .authority-grid,
  .contact-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .features-images {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .features-img-main {
    grid-column: 1 / -1;
  }

  .for-whom-badge {
    right: var(--space-4);
  }

  .solution-image {
    order: -1;
  }

  .authority-image {
    order: -1;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto var(--space-12);
  }

  .plan-card-popular {
    transform: scale(1);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto var(--space-12);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .faq-header {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

  .process-connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .process-step {
    max-width: 400px;
    width: 100%;
  }

  .guarantee-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --space-24: 64px;
    --space-16: 48px;
  }

  .container { padding: 0 var(--space-5); }

  .mobile-menu.open {
    display: flex;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-hero {
    justify-content: center;
    width: 100%;
  }

  .hero-trust {
    gap: var(--space-4);
  }

  .trust-divider { display: none; }

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

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

  .features-images {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: var(--nav-height) var(--space-5) var(--space-10);
  }

  .btn.btn-large {
    white-space: normal;
    height: auto;
    padding: 16px 20px;
    line-height: 1.4;
  }

  .features-img-secondary {
    display: none;
  }

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

  .social-proof-bar {
    flex-direction: column;
    gap: var(--space-6);
    padding: var(--space-8) var(--space-5);
  }

  .proof-divider { display: none; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-label { display: none; }

  .whatsapp-float {
    bottom: var(--space-5);
    right: var(--space-5);
    padding: 16px;
    border-radius: 50%;
  }

  .guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }

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

  .map-container {
    height: 280px;
  }

  .form-card {
    padding: var(--space-6);
  }
}

/* ─────────────── ACCESSIBILITY ─────────────── */
:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 4px;
}

.btn:focus-visible {
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
  .pulse-btn { animation: none; }
  .whatsapp-float { animation: none; }
  .badge-dot { animation: none; }
  .scroll-line { animation: none; }
}
