/* =====================================================
   METABOLIK LAB — styles.css
   Fit Premium · Light · High-Conversion
   ===================================================== */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --bg-alt:     #F8FAFC;
  --bg-alt2:    #F1F5F9;
  --text-dark:  #0F172A;
  --text-mid:   #334155;
  --text-soft:  #64748B;
  --text-muted: #94A3B8;
  --border:     #E2E8F0;
  --border-2:   #CBD5E1;
  --green:      #10B981;
  --green-dark: #059669;
  --green-light:#D1FAE5;
  --green-glow: rgba(16,185,129,0.18);
  --urgency-bg: #1E293B;
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.05);
  --shadow-lg:  0 16px 48px rgba(15,23,42,0.10), 0 4px 16px rgba(15,23,42,0.06);
  --shadow-green: 0 8px 32px rgba(16,185,129,0.22);
  --radius:     12px;
  --radius-lg:  20px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; color: var(--text-dark); }
ul { list-style: none; }

/* ── URGENCY BANNER ──────────────────────────────────── */
.urgency-bar {
  background: var(--urgency-bg);
  padding: 8px 1rem;
  position: sticky;
  top: 0;
  z-index: 200;
}
.urgency-long { display: inline; }
.urgency-short { display: none; }
.urgency-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.urgency-fire { font-size: 1rem; flex-shrink: 0; }
.urgency-text {
  font-size: 0.82rem;
  color: #CBD5E1;
  font-weight: 500;
}
.urgency-text strong { color: #fff; }
.urgency-timer {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font);
  flex-shrink: 0;
}
.timer-block {
  background: var(--green);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 6px;
  min-width: 34px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.timer-sep {
  color: var(--green);
  font-weight: 900;
  font-size: 1rem;
}

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 37px;
  z-index: 150;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.nav-logo span { color: var(--green); }
.nav-offer-btn {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(16,185,129,0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
}
.nav-offer-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  /* CSS vars actualizadas por JS en mousemove */
  --mouse-x: -200%;
  --mouse-y: -200%;
  background-color: #FFFFFF;
  /* Capa 1: destello que sigue al mouse | Capa 2-3: grid sutil */
  background-image:
    radial-gradient(
      circle 380px at var(--mouse-x) var(--mouse-y),
      rgba(16,185,129,0.09) 0%,
      rgba(37,99,235,0.04) 45%,
      transparent 70%
    ),
    linear-gradient(rgba(15,23,42,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.055) 1px, transparent 1px);
  background-size: auto, 192px 192px, 192px 192px;
  padding: 5rem 5vw 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-position 0.05s ease;
}
/* Aurora top-center eliminada — solo queda el glow del mouse */
.hero::before { display: none; }
/* Aurora glow fija — destello azul esquina inferior derecha */
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(37,99,235,0.07) 0%,
    rgba(16,185,129,0.04) 45%,
    transparent 70%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* ── BURBUJAS FLOTANTES ──────────────────────────────── */
.hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.bubble {
  position: absolute;
  bottom: -16px;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
  will-change: transform, opacity;
}
/* Propiedades individuales por burbuja */
.bubble:nth-child(1) {width:8px; height:8px; left:8%;  background:rgba(16,185,129,0.28);animation-duration:14s;animation-delay:0s;}
.bubble:nth-child(2) {width:6px; height:6px; left:18%; background:rgba(37,99,235,0.22);animation-duration:17s;animation-delay:3s;}
.bubble:nth-child(3) {width:10px;height:10px;left:28%; background:rgba(16,185,129,0.24);animation-duration:12s;animation-delay:6s;}
.bubble:nth-child(4) {width:7px; height:7px; left:38%; background:rgba(37,99,235,0.26);animation-duration:16s;animation-delay:1s;}
.bubble:nth-child(5) {width:11px;height:11px;left:50%; background:rgba(16,185,129,0.20);animation-duration:13s;animation-delay:8s;}
.bubble:nth-child(6) {width:6px; height:6px; left:62%; background:rgba(37,99,235,0.24);animation-duration:18s;animation-delay:4s;}
.bubble:nth-child(7) {width:9px; height:9px; left:72%; background:rgba(16,185,129,0.26);animation-duration:11s;animation-delay:2s;}

@keyframes floatUp {
  0%   { transform: translateY(0)     translateX(0);    opacity: 0; }
  8%   { opacity: 1; }
  30%  { transform: translateY(-28vh) translateX(14px); }
  60%  { transform: translateY(-62vh) translateX(-10px); }
  85%  { opacity: 0.6; }
  100% { transform: translateY(-108vh) translateX(6px);  opacity: 0; }
}

/* Respeta preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .bubble { animation: none; opacity: 0; }
  .hero { background-image:
    linear-gradient(rgba(15,23,42,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.055) 1px, transparent 1px);
    background-size: 192px 192px;
  }
}
/* Burbujas más pequeñas en móvil */
@media (max-width: 768px) {
  .bubble { transform: scale(0.6); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1.5px solid rgba(16,185,129,0.3);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}
.hero-h1 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
  line-height: 1.12;
}
.h1-highlight {
  color: var(--green);
  position: relative;
  display: inline;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.hero-sub strong { color: var(--text-dark); }
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1rem 2.4rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-green);
  letter-spacing: -0.01em;
}
.btn-hero:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.3);
}
.hero-footnote {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── PROOF STRIP ─────────────────────────────────────── */
.proof-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.4rem 5vw;
}
.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.proof-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}
.proof-label {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 500;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
@media (max-width: 600px) { .proof-divider { display: none; } }

/* ── FORM SECTION ────────────────────────────────────── */
.form-section {
  background: var(--white);
  padding: 5.5rem 5vw;
}
.form-wrap {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.4rem;
  box-shadow: var(--shadow-lg);
}
.form-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.form-title {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-align: center;
}
.form-title .accent { color: var(--green); }
.form-sub {
  font-size: 0.88rem;
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.capture-form { display: flex; flex-direction: column; gap: 0; }
.field-group { margin-bottom: 1.1rem; }
.field-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.field-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field-group input::placeholder { color: var(--text-muted); }
.field-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
.btn-form {
  width: 100%;
  padding: 1rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 900;
  cursor: pointer;
  margin-top: 0.4rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-green);
  letter-spacing: -0.01em;
}
.btn-form:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16,185,129,0.28);
}
.form-disclaimer {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}
.form-disclaimer a { color: var(--green-dark); text-decoration: underline; }

/* ── METHOD SECTION ──────────────────────────────────── */
.method-section {
  background: var(--bg-alt);
  padding: 6rem 5vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-chip {
  display: inline-block;
  background: var(--green-light);
  border: 1.5px solid rgba(16,185,129,0.25);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 0.9rem;
}
.section-title .accent { color: var(--green); }
.section-sub {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.method-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all 0.3s ease;
  position: relative;
}
.method-card:hover {
  border-color: rgba(16,185,129,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.method-card--featured {
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.06);
}
.method-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.method-tag {
  display: inline-block;
  background: var(--bg-alt2);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}
.method-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}
.method-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.method-card p strong { color: var(--text-dark); }

/* ── PRICING SECTION ─────────────────────────────────── */
.pricing-section {
  background: var(--white);
  padding: 6rem 5vw;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1020px;
  margin: 0 auto 2rem;
  align-items: start;
}
/* Price card base */
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}
.price-card--secondary:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
/* Featured card */
.price-card--featured {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: var(--shadow-green), var(--shadow-lg);
  background: var(--white);
  transform: scale(1.025);
}
.price-card--featured:hover {
  transform: scale(1.025) translateY(-4px);
  box-shadow: 0 20px 60px rgba(16,185,129,0.2), var(--shadow-lg);
}
/* Floating badge */
.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}
.price-plan-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.price-row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 2px;
  line-height: 1;
}
.price-old {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 4px;
  align-self: flex-end;
  padding-bottom: 4px;
}
.price-currency {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  padding-bottom: 6px;
}
.price-currency--green { color: var(--green); }
.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-amount--green { color: var(--green); }
.price-suffix {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 6px;
}
.price-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.price-saving {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.price-saving strong { font-weight: 900; }
.price-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.4rem 0;
}
.price-list {
  margin-bottom: 1.8rem;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.45rem 0;
  line-height: 1.5;
}
.price-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2310B981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}
.price-list li strong { color: var(--text-dark); }
/* Price buttons */
.btn-price {
  display: block;
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
  border: none;
}
.btn-price--outline {
  background: transparent;
  border: 2px solid #94A3B8;
  color: #0F172A;
}
.btn-price--outline:hover {
  background: var(--bg-alt);
  border-color: #0F172A;
  color: #0F172A;
}
.btn-price--solid {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-price--solid:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(16,185,129,0.3);
}
.price-micro {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 1rem;
}

/* ── GARANTÍA ────────────────────────────────────────── */
.guarantee-section {
  background: var(--bg-alt);
  padding: 5rem 5vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-md);
}
.guarantee-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-body { flex: 1; }
.guarantee-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.guarantee-text {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.guarantee-text strong {
  color: var(--text-dark);
}
@media (max-width: 640px) {
  .guarantee-wrap {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .guarantee-title { font-size: 1.2rem; }
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #0F172A;
  padding: 3rem 5vw;
}
.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--green); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: #94A3B8;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-disclaimer {
  max-width: 640px;
  margin: 0 auto 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  font-size: 0.74rem;
  color: #64748B;
  line-height: 1.7;
  text-align: left;
}
.footer-disclaimer strong { color: #94A3B8; }
.footer-meta {
  font-size: 0.73rem;
  color: #475569;
  line-height: 1.7;
}
.footer-copy {
  margin-top: 0.6rem;
  color: #334155;
}

/* ── ACCENT HELPER ───────────────────────────────────── */
.accent { color: var(--green); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .price-card--featured { transform: scale(1); }
  .price-card--featured:hover { transform: translateY(-4px); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .hero { padding: 4rem 5vw 3.5rem; }
  .method-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.6rem; }
  .section-title { font-size: 1.7rem; }
}
@media (max-width: 600px) {
  /* Urgency bar compacta en móvil */
  .urgency-long { display: none; }
  .urgency-short { display: inline; }
  .urgency-fire { display: none; }
  .urgency-text { font-size: 0.8rem; }
  .timer-block { font-size: 0.8rem; padding: 3px 7px; min-width: 28px; }
  .urgency-inner { gap: 6px; flex-wrap: nowrap; justify-content: center; }
}
@media (max-width: 520px) {
  .hero-trust { gap: 0.8rem; }
  .trust-item { font-size: 0.76rem; }
  .btn-hero { font-size: 0.95rem; padding: 0.9rem 1.6rem; }
  .proof-inner { gap: 1.2rem; }
  .proof-num { font-size: 1.3rem; }
  .nav-offer-btn { display: none; }
}
@media (max-width: 380px) {
  .nav-logo { font-size: 1rem; }
  .hero-h1 { font-size: 1.75rem; }
  .price-amount { font-size: 2.6rem; }
}
@media (min-width: 769px) {
  .nav-logo { font-size: 1.5rem; }
}
