/* ============================================
   MÉTODO ÉLITE — Premium Landing Page
   Design System & Styles (Mobile-First)
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --black: #0A0A0A;
  --black-mid: #0D0D0D;
  --card: #141414;
  --card-hover: #1a1a1a;
  --line: #262626;
  --line-light: #333;
  --orange: #FF6B00;
  --orange-dark: #e55f00;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --orange-subtle: rgba(255, 107, 0, 0.06);
  --offwhite: #F2F0EB;
  --gray: #9A978F;
  --gray-light: #b5b2ab;
  --green: #34d399;
  --red: #ef4444;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --section-py: 80px;
  --wrap-max: 1120px;
  --wrap-px: 20px;
  --nav-h: 100px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --duration: 0.3s;
}

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

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

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Custom Keyboard Focus Indicators for Accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange) !important;
  outline-offset: 4px !important;
  border-radius: 4px;
}

ul, ol { list-style: none; }

::selection {
  background: var(--orange);
  color: var(--black);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 10000;
  width: 0%;
  transition: none;
}

/* ---------- GRAIN OVERLAY ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- UTILITIES ---------- */
.display {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.orange { color: var(--orange); }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: var(--black);
  padding: 12px 24px;
  font-weight: 700;
  z-index: 10001;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

#main-nav.nav-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

#main-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.logo-img-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo-img {
  height: 80px; /* Logo de gran tamaño e impacto visual premium */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-spring);
  display: block;
}

.logo-img-link:hover .nav-logo-img {
  transform: scale(1.05);
}

.logo .mark {
  width: 28px;
  height: 28px;
  background: var(--orange);
  display: inline-block;
  clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 30% 100%, 0 70%);
  transition: transform 0.3s var(--ease-spring);
  flex-shrink: 0;
}

.logo:hover .mark {
  transform: rotate(12deg) scale(1.1);
}

.nav-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  background: var(--orange);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

/* ============================================
   HERO SECTION
   ============================================ */
header {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 85vh;
  border-bottom: 1px solid var(--line);
}

/* Hero background effects */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Video background (when available) */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.7) 40%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

/* Radial glow */
.hero-glow {
  position: absolute;
  top: 10%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  max-width: 1000px;
  max-height: 1000px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.22), transparent 65%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* Decorative grid lines */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(90deg, var(--offwhite) 1px, transparent 1px),
    linear-gradient(0deg, var(--offwhite) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 70% 30%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 70% 30%, black 10%, transparent 70%);
}

header .wrap {
  position: relative;
  z-index: 3;
}

/* Hero auto-reveal (CSS-only, no JS dependency) */
header .kicker,
header h1.hero,
header .hero-sub,
header .cta-row {
  animation: heroFadeIn 0.9s var(--ease) forwards;
}

header .kicker    { animation-delay: 0.15s; }
header h1.hero    { animation-delay: 0.3s; }
header .hero-sub  { animation-delay: 0.5s; }
header .cta-row   { animation-delay: 0.65s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Kicker badge */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(4px);
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--orange), 0 0 16px rgba(255, 107, 0, 0.3); }
  50% { box-shadow: 0 0 16px var(--orange), 0 0 32px rgba(255, 107, 0, 0.5); }
}

/* Hero heading */
h1.hero {
  font-size: clamp(52px, 9vw, 120px);
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 0.88;
  letter-spacing: -0.01em;
}

/* Hide forced line breaks on mobile — let text wrap naturally */
.hero-br {
  display: none;
}

@media (min-width: 768px) {
  .hero-br {
    display: inline;
  }
}



/* Hero subtext */
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray-light);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-sub b, .hero-sub strong {
  color: var(--offwhite);
  font-weight: 600;
}

/* CTA row */
.cta-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Primary button */
.btn-primary {
  font-family: var(--font-body);
  font-weight: 700;
  background: var(--orange);
  color: var(--black);
  padding: 18px 34px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.35s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--orange-glow);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* Ghost / Outline button */
.btn-ghost {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--offwhite);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--line-light);
  padding: 17px 32px;
  border-radius: 3px;
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 0, 0.06);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.08);
}

.btn-ghost .arrow {
  transition: transform 0.3s var(--ease);
  display: inline-block;
  font-size: 16px;
}

.btn-ghost:hover .arrow {
  transform: translateY(3px);
}

/* ============================================
   METRICS STRIP
   ============================================ */
.strip {
  border-bottom: 1px solid var(--line);
  background: var(--card);
  position: relative;
}

.strip .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.stat {
  padding: 32px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}

.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat:nth-child(n+3) { border-bottom: none; }

.stat:hover {
  background: rgba(255, 107, 0, 0.04);
}

.stat .n {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--orange);
  line-height: 1;
}

.stat .l {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ============================================
   SECTIONS — GENERAL
   ============================================ */
section {
  padding: var(--section-py) 0;
  position: relative;
}

.sec-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.sec-tag--center {
  justify-content: center;
  text-align: center;
}

h2 {
  font-size: clamp(34px, 5.4vw, 68px);
  text-transform: uppercase;
  line-height: 0.96;
  margin-bottom: 24px;
}

.lead {
  font-size: 17px;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.7;
}

.lead b, .lead strong {
  color: var(--offwhite);
  font-weight: 500;
}

/* ============================================
   FUGAS (LEAKS) SECTION
   ============================================ */
.leaks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.leak {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  padding: 28px 24px;
  border-radius: 3px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.leak:hover {
  transform: translateY(-4px);
  border-color: var(--line-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 0, 0.06);
}

.leak-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.leak-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--orange-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leak-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leak .num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.leak h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.leak p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background: var(--black-mid);
  overflow: hidden;
}

.video-section .wrap {
  text-align: center;
}

.video-section .lead {
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 48px auto 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background:
    radial-gradient(ellipse at center, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #111 0%, #0d0d0d 50%, #111 100%);
  z-index: 3;
  transition: opacity 0.5s;
}

.video-container.playing .video-placeholder {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  position: relative;
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 0, 0.3);
  animation: playRing 2s ease-in-out infinite;
}

@keyframes playRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--orange-glow);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
  margin-left: 3px;
}

.video-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  font-weight: 500;
}

.video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hide native controls */
.video-container video::-webkit-media-controls { display: none !important; }

/* ---------- Custom Controls Bar ---------- */
.vp-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}

/* Show controls on hover or when paused */
.video-container.playing:hover .vp-controls,
.video-container.playing.paused .vp-controls,
.video-container.playing.vp-seeking .vp-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Force-show briefly after any interaction */
.video-container.playing.vp-active .vp-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------- Control Buttons ---------- */
.vp-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--offwhite);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  padding: 0;
}

.vp-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange);
  transform: scale(1.1);
}

.vp-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Play/Pause icon toggle */
.vp-play-pause .vp-icon-pause { display: none; }
.video-container.playing:not(.paused) .vp-play-pause .vp-icon-play { display: none; }
.video-container.playing:not(.paused) .vp-play-pause .vp-icon-pause { display: block; }

/* Volume icon toggle (3 states: high > 0.5, low <= 0.5, muted = 0) */
.vp-mute .vp-icon-vol-low,
.vp-mute .vp-icon-muted { display: none; }

/* Low volume */
.video-container.vol-low .vp-mute .vp-icon-vol-high { display: none; }
.video-container.vol-low .vp-mute .vp-icon-vol-low { display: block; }

/* Muted */
.video-container.muted .vp-mute .vp-icon-vol-high,
.video-container.muted .vp-mute .vp-icon-vol-low { display: none; }
.video-container.muted .vp-mute .vp-icon-muted { display: block; }

/* ---------- Time ---------- */
.vp-time {
  font-size: 12px;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  min-width: 80px;
}

/* ---------- Progress Bar ---------- */
.vp-progress-wrap {
  position: relative;
  flex: 1;
  height: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.vp-progress-bg {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.vp-progress-buffered {
  position: absolute;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s;
}

.vp-progress-bar {
  position: absolute;
  left: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  box-shadow: 0 0 8px var(--orange-glow);
}

.vp-progress-thumb {
  position: absolute;
  left: 0%;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 2px solid var(--offwhite);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 10px var(--orange-glow);
}

.vp-progress-wrap:hover .vp-progress-thumb,
.vp-progress-wrap.dragging .vp-progress-thumb {
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}

/* Expand bar on hover */
.vp-progress-wrap:hover .vp-progress-bg,
.vp-progress-wrap:hover .vp-progress-buffered,
.vp-progress-wrap:hover .vp-progress-bar,
.vp-progress-wrap.dragging .vp-progress-bg,
.vp-progress-wrap.dragging .vp-progress-buffered,
.vp-progress-wrap.dragging .vp-progress-bar {
  height: 6px;
  border-radius: 3px;
}

/* ---------- Volume Group ---------- */
.vp-volume-group {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.vp-vol-slider-wrap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  transition: height 0.25s var(--ease), opacity 0.25s;
  opacity: 0;
}

.vp-volume-group:hover .vp-vol-slider-wrap,
.vp-vol-slider-wrap:focus-within {
  height: 110px;
  opacity: 1;
}

/* Horizontal slider rotated -90deg to become vertical */
.vp-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 30px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
  transform: rotate(-90deg);
  transform-origin: center center;
  touch-action: none;
}

/* Track */
.vp-vol-slider::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.vp-vol-slider::-moz-range-track {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
}

/* Thumb */
.vp-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  margin-top: -5.5px;
  cursor: pointer;
  box-shadow: 0 0 8px var(--orange-glow);
}

.vp-vol-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 8px var(--orange-glow);
}

/* ---------- Fullscreen button ---------- */
.vp-fullscreen svg {
  fill: none;
}

/* ============================================
   METHOD (4 PILLARS) SECTION
   ============================================ */
.method {
  background: linear-gradient(180deg, var(--black-mid), var(--black));
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
  border-radius: 4px;
  overflow: hidden;
}

.pillar {
  background: var(--black);
  padding: 36px 28px;
  transition: background 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  background: var(--card);
}

.pillar .pn {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--orange);
  opacity: 0.5;
  line-height: 0.8;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: opacity 0.4s, transform 0.4s;
}

.pillar:hover .pn {
  opacity: 0.45;
  transform: scale(1.1);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.pillar p {
  font-size: 15px;
  color: var(--gray);
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

/* ============================================
   PRESS SECTION
   ============================================ */
.press {
  background: var(--orange);
  color: var(--black);
  overflow: hidden;
}

.press .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.press .sec-tag {
  color: var(--black);
  opacity: 0.6;
}

.press .sec-tag::before {
  background: var(--black);
}

.press h2 { color: var(--black); }

.press p {
  font-size: 16px;
  color: #1a1a1a;
  max-width: none;
  line-height: 1.7;
}

.press p b, .press p strong { font-weight: 700; }

.press h2 span.press-highlight {
  background: var(--black);
  color: var(--orange);
  padding: 0.08em 0.22em 0.02em;
  border-radius: 0.1em;
  display: inline-block;
  transform: rotate(-1.5deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-shadow: none;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.plogo {
  background: rgba(10, 10, 10, 0.05);
  border: 1px solid rgba(10, 10, 10, 0.15);
  border-radius: 4px;
  padding: 10px 18px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  user-select: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plogo:hover {
  background: rgba(10, 10, 10, 0.12);
  border-color: rgba(10, 10, 10, 0.25);
  transform: translateY(-2px);
}

.press-quote {
  font-size: 19px;
  font-weight: 700;
  border-left: 3px solid var(--black);
  padding-left: 22px;
  line-height: 1.45;
  color: var(--black);
}

/* ============================================
   FOR WHOM SECTION
   ============================================ */
.fit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 44px;
}

.fit-col {
  padding: 30px 24px;
  border-radius: 4px;
}

.fit-yes {
  background: var(--card);
  border: 1px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.fit-yes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.fit-no {
  background: var(--card);
  border: 1px solid var(--line);
}

.fit-col h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.fit-col ul { position: relative; z-index: 1; }

.fit-col li {
  font-size: 15px;
  padding: 11px 0 11px 32px;
  position: relative;
  color: var(--gray);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.2s;
}

.fit-col li:last-child { border-bottom: none; }

.fit-col li:hover {
  color: var(--offwhite);
  padding-left: 36px;
}

.fit-yes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  transition: transform 0.2s;
}

.fit-yes li:hover::before {
  transform: translateX(4px);
}

.fit-no li::before {
  content: "×";
  position: absolute;
  left: 2px;
  color: #555;
  font-weight: 700;
}

/* ============================================
   FORM SECTION
   ============================================ */
.apply {
  background: linear-gradient(180deg, var(--black), var(--black-mid));
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 24px;
  max-width: 680px;
  margin: 44px auto 0;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark), var(--orange));
  background-size: 200% 100%;
  animation: shimmerBar 3s ease-in-out infinite;
}

@keyframes shimmerBar {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.fg {
  margin-bottom: 20px;
  position: relative;
}

.fg label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
  transition: color 0.2s;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 14px 16px;
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.fg textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A978F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.fg input:hover,
.fg select:hover,
.fg textarea:hover {
  border-color: rgba(255, 107, 0, 0.4);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* Validation states */
.fg input.valid,
.fg select.valid,
.fg textarea.valid {
  border-color: var(--green);
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.fg input.error,
.fg select.error,
.fg textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  animation: shakeError 0.4s ease-in-out;
}

.error-msg {
  display: none;
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
  padding-left: 2px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.form-card .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  padding: 18px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  position: relative;
}

/* Loading state */
.btn-loading {
  pointer-events: none;
  opacity: 0.9;
  color: transparent !important;
}

.btn-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Custom Checkbox Styling */
.fg-checkbox {
  margin-bottom: 24px;
}

.fg-checkbox .checkbox-container {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer;
  user-select: none;
  font-size: 14px !important;
  color: var(--gray) !important;
  line-height: 1.4 !important;
  text-transform: none !important;
  margin-bottom: 0 !important;
  letter-spacing: normal !important;
  font-weight: normal !important;
}

.fg-checkbox .checkbox-container input {
  position: absolute !important;
  opacity: 0 !important;
  cursor: pointer;
  height: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.fg-checkbox .checkmark {
  height: 20px !important;
  width: 20px !important;
  background-color: var(--black) !important;
  border: 1px solid var(--line) !important;
  border-radius: 3px !important;
  flex-shrink: 0 !important;
  position: relative !important;
  display: block !important;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.fg-checkbox .checkbox-container:hover input ~ .checkmark {
  border-color: var(--orange-dark) !important;
}

.fg-checkbox .checkbox-container input:checked ~ .checkmark {
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
}

.fg-checkbox .checkbox-container input:focus ~ .checkmark {
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15) !important;
}

.fg-checkbox .checkmark::after {
  content: "" !important;
  position: absolute !important;
  display: none !important;
}

.fg-checkbox .checkbox-container input:checked ~ .checkmark::after {
  display: block !important;
}

.fg-checkbox .checkmark::after {
  left: 6px !important;
  top: 2px !important;
  width: 6px !important;
  height: 11px !important;
  border: solid var(--black) !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
}

.fg-checkbox .checkbox-text a {
  color: var(--offwhite) !important;
  text-decoration: underline !important;
  transition: color 0.2s;
  text-transform: none !important;
}

.fg-checkbox .checkbox-text a:hover {
  color: var(--orange) !important;
}

#privacidad-error {
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon svg {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.success-icon circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease forwards;
}

.success-icon path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s 0.4s ease forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-img {
  height: 60px; /* Logo ligeramente más visible en el footer */
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
  opacity: 0.9;
}

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

.footer-nav a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--line);
}

.footer-legal {
  font-size: 12px;
  color: var(--gray);
  opacity: 0.7;
  max-width: 400px;
  line-height: 1.5;
}

.footer-legal a {
  color: var(--gray-light);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

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

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in,
.reveal-left.in,
.reveal-right.in,
.reveal-scale.in {
  opacity: 1;
  transform: none;
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  animation: loaderPulse 0.9s ease-in-out infinite alternate;
  user-select: none;
}

@keyframes loaderPulse {
  from { transform: scale(0.85) rotate(0deg); opacity: 0.5; }
  to   { transform: scale(1.15) rotate(8deg); opacity: 1; }
}

/* ============================================
   CUSTOM CURSOR (Desktop only)
   ============================================ */
.custom-cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 107, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s, opacity 0.25s;
  opacity: 0;
  will-change: transform;
}

.custom-cursor.visible {
  opacity: 1;
}

.custom-cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform;
}

.custom-cursor-dot.visible {
  opacity: 1;
}

.custom-cursor.hover {
  width: 52px;
  height: 52px;
  background: rgba(255, 107, 0, 0.08);
  border-color: var(--orange);
}

@media (pointer: coarse), (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-dot { display: none !important; }
}

body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select {
  cursor: none;
}

/* ============================================
   TIMELINE — CÓMO FUNCIONA
   ============================================ */
.timeline-section {
  background: var(--black);
  border-top: 1px solid var(--line);
}

.timeline-steps {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 24px;
  padding: 32px 28px;
  background: var(--black);
  transition: background 0.35s;
  position: relative;
  border: 1px solid var(--line);
  margin-top: -1px;
}

.timeline-step:first-child {
  margin-top: 0;
}

/* Staggered reveal for timeline cards — smooth cascade on mobile */
.timeline-step.reveal {
  transform: translateY(15px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.timeline-step:nth-child(1).reveal { transition-delay: 0s; }
.timeline-step:nth-child(2).reveal { transition-delay: 0.1s; }
.timeline-step:nth-child(3).reveal { transition-delay: 0.2s; }
.timeline-step:nth-child(4).reveal { transition-delay: 0.3s; }

.timeline-step:hover {
  background: var(--card);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.timeline-step:hover .step-number {
  opacity: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   RESULTS — CASOS DE ÉXITO
   ============================================ */
.results-section {
  border-bottom: 1px solid var(--line);
}

.result-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.result-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.04) 0%, transparent 40%),
    var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 24px 20px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top left, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 107, 0, 0.1);
}

.result-card:hover::before {
  opacity: 1;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.result-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
}

.result-city {
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  background: rgba(255, 107, 0, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.result-metrics {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.result-metric {
  width: 100%;
}

.result-label {
  display: block;
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.result-value {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
}

.result-value.orange {
  text-shadow: 0 0 20px var(--orange-glow);
}

.result-arrow {
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  text-shadow: 0 0 8px var(--orange-glow);
  transform: rotate(90deg);
  margin-left: 4px;
}

.result-roi {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-style: italic;
}

.result-roi strong {
  color: var(--orange);
  font-size: 16px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--black-mid);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.3s;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--orange);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-light);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--offwhite);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray);
  margin-top: 2px;
}

/* ============================================
   FAQ — ACCORDION
   ============================================ */
.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 740px;
  margin: 48px auto 0;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--offwhite);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s;
  gap: 16px;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  font-size: 22px;
  color: var(--orange);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  padding-right: 40px;
}



/* ============================================
   FLOATING CTA (Mobile)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 14px;
}

/* ============================================
   RESPONSIVE — TABLET (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-py: 110px;
    --wrap-px: 32px;
    --nav-h: 110px;
  }

  header {
    padding: 160px 0 110px;
    min-height: 90vh;
  }

  h1.hero { font-size: clamp(56px, 9vw, 128px); }

  /* Metrics: 4 columns */
  .strip .wrap {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat {
    padding: 36px 18px;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }

  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:last-child { border-right: none; }

  .stat .n { font-size: 48px; }

  /* Fugas: 2 columns */
  .leaks {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Pillars: 2 columns */
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar {
    padding: 44px 36px;
  }

  .pillar .pn { font-size: 68px; }

  /* Press: 2 columns */
  .press .wrap {
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
  }

  /* Fit: 2 columns */
  .fit {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .fit-col {
    padding: 36px 30px;
  }

  /* Form: 2 column rows */
  .fg-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .form-card {
    padding: 50px;
  }

  /* Timeline: 2x2 grid */
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* First row: keep top border visible */
  .timeline-step:nth-child(1),
  .timeline-step:nth-child(2) {
    margin-top: 0;
  }

  /* Right column: collapse border */
  .timeline-step:nth-child(even) {
    margin-left: -1px;
  }

  .step-number { font-size: 56px; }
  .step-content h3 { font-size: 28px; }

  /* Results: 2 columns */
  .result-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .result-card {
    padding: 36px 32px;
  }

  .result-metrics {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .result-arrow {
    transform: rotate(0deg);
    margin-left: 0;
  }

  /* Testimonials: 3 columns */
  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .faq-question { font-size: 18px; }
}

/* ============================================
   RESPONSIVE — DESKTOP (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-py: 120px;
  }

  .logo { font-size: 22px; }

  .nav-cta {
    font-size: 13px;
    padding: 11px 22px;
  }

  .leak { padding: 34px 30px; }
  .leak h3 { font-size: 20px; }

  .pillar h3 { font-size: 32px; }
  .press p { font-size: 17px; }
  .press-quote { font-size: 21px; }

  .fit-col h3 { font-size: 26px; }
}

/* ============================================
   NO-JS FALLBACK
   ============================================ */
.no-js .reveal,
.no-js .reveal-left,
.no-js .reveal-right,
.no-js .reveal-scale {
  opacity: 1 !important;
  transform: none !important;
}

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

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: var(--section-py);
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.95;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.legal-meta {
  color: var(--gray);
  font-size: 14px;
}

.legal-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-light);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--offwhite);
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--orange);
}

.legal-content p {
  margin-bottom: 24px;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-content ul {
  list-style-type: square;
}

.legal-content ul li::marker {
  color: var(--orange);
}

.legal-content li {
  margin-bottom: 10px;
  padding-left: 5px;
}

.legal-content a {
  color: var(--orange);
  text-decoration: underline;
  transition: color var(--duration) var(--ease);
}

.legal-content a:hover {
  color: var(--orange-dark);
}

@media (min-width: 768px) {
  .legal-page {
    padding-top: calc(var(--nav-h) + 60px);
  }
  .legal-header h1 {
    font-size: 80px;
  }
  .legal-content {
    font-size: 17px;
  }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-light);
  margin: 0;
}

.cookie-banner-text a {
  color: var(--orange);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn-cookie {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-cookie-primary {
  background: var(--orange);
  color: var(--black);
  border: 1px solid var(--orange);
}

.btn-cookie-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-cookie-secondary {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid var(--line);
}

.btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gray);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 74px; /* Space for mobile floating bar if scrolling */
    max-width: none;
  }
}

