/* RENOVAM — Light & airy editorial system */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-mute: #eef0f4;
  --navy-900: #0a1428;
  --navy-700: #0b1c3d;
  --line: rgba(10,20,40,0.08);
  --line-strong: rgba(10,20,40,0.16);
  --ink: #0a1428;
  --ink-dim: #4a5568;
  --ink-mute: #8693a8;
  --pink: #C41E5B;
  --pink-soft: #e94a82;
  --pink-glow: rgba(196,30,91,0.25);
  --green: #2f9d63;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 30px 80px -40px rgba(10,20,40,0.25), 0 1px 0 rgba(255,255,255,0.5) inset;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Syne', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: var(--pink);
}
.eyebrow.center { justify-content: center; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ================ NAVBAR ================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px var(--pad);
}
/* On hero, nav has white text overlay; once scrolled flips to dark */
.nav:not(.scrolled) .nav-links a,
.nav:not(.scrolled) .nav-links .menu-btn,
.nav:not(.scrolled) .nav-logo span { color: #fff; }
.nav:not(.scrolled) .nav-links a:hover,
.nav:not(.scrolled) .nav-links .menu-btn:hover { background: rgba(255,255,255,0.1); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 38px; height: 38px; }
.nav-logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 17px;
  color: var(--ink);
  transition: color .3s;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a, .nav-links .menu-btn {
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--ink-dim);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links .menu-btn:hover { color: var(--ink); background: rgba(10,20,40,0.04); }
.nav-cta {
  padding: 11px 20px !important;
  background: var(--pink) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 10px 30px -10px var(--pink-glow);
}
.nav-cta:hover { transform: translateY(-1px); background: var(--pink-soft) !important; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: -8px;
  min-width: 320px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  box-shadow: 0 30px 80px -20px rgba(10,20,40,0.18);
}
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-menu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: 10px;
  color: var(--ink-dim) !important;
}
.dropdown-menu a strong { color: var(--ink); font-size: 14px; font-weight: 600; }
.dropdown-menu a small { color: var(--ink-mute); font-size: 12px; }
.dropdown-menu a:hover { background: var(--bg-soft); }

.nav-burger { display: none; padding: 10px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: .3s; }

/* ================ HOTSPOTS ================ */
.hero-hotspots {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
}
.hotspot {
  position: absolute;
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.hotspot-panels { top: 22%; right: 14%; }
.hotspot-batteries { bottom: 26%; right: 30%; }
.hotspot-ev { bottom: 30%; left: 28%; }
.hs-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,22,40,0.55);
  border: 1.5px solid #F5C842;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 0 rgba(245,200,66,0.5);
  animation: hsPulse 2.4s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), background 0.3s;
  flex-shrink: 0;
}
@keyframes hsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.55); }
  50% { box-shadow: 0 0 0 12px rgba(245,200,66,0); }
}
.hs-tooltip {
  background: rgba(10,22,40,0.85);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,200,66,0.25);
  pointer-events: none;
}
.hs-arrow { color: #F5C842; margin-left: 4px; font-weight: 600; }
.hotspot:hover .hs-dot {
  transform: scale(1.18);
  background: rgba(245,200,66,0.18);
  animation-play-state: paused;
}
.hotspot:hover .hs-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 720px) {
  .hs-tooltip { font-size: 11px; padding: 7px 12px; }
  .hs-dot { width: 36px; height: 36px; }
  .hs-dot svg { width: 14px; height: 14px; }
}

/* ================ HERO MINIMAL ================ */
.hero-minimal {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-start; align-items: center;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.05) 65%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-minimal-content { position: relative; z-index: 2; padding-top: 22vh; width: 100%; }
.hero-minimal-title {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  text-wrap: balance;
  opacity: 0; animation: fadeUp .9s .15s ease forwards;
}
.hero-minimal-sub {
  margin-top: 18px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 20px rgba(0,0,0,0.3);
  opacity: 0; animation: fadeUp .9s .3s ease forwards;
}
.hero-minimal-actions {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: auto; padding: 0 var(--pad) 80px;
  opacity: 0; animation: fadeUp .9s .55s ease forwards;
}
.btn-light, .btn-dark {
  padding: 14px 36px; border-radius: 999px;
  font-weight: 500; font-size: 14px; letter-spacing: 0.02em;
  min-width: 240px; text-align: center;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  transition: background .25s, transform .25s;
}
.btn-light { background: rgba(255,255,255,0.92); color: #050b1a; }
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-dark { background: rgba(20,30,50,0.7); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.btn-dark:hover { background: rgba(20,30,50,0.9); transform: translateY(-1px); }
.hero-scroll-min {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.7);
  animation: bounceDown 2.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ================ BUTTONS ================ */
.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
}
.btn-primary {
  background: var(--pink); color: #fff;
  box-shadow: 0 14px 40px -16px var(--pink-glow);
}
.btn-primary:hover { background: var(--pink-soft); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-soft); transform: translateY(-2px); }
.btn-arrow { transition: transform .25s; }
.btn:hover .btn-arrow { transform: translate(4px, -2px); }

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

/* ================ MARQUEE ================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: scrollX 40s linear infinite;
  white-space: nowrap;
  font-family: 'Syne', sans-serif; font-size: 14px;
  letter-spacing: 0.04em; color: var(--ink-dim);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track span::after { content: "✦"; color: var(--pink); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ================ SECTIONS ================ */
section { position: relative; }
.section-pad { padding: clamp(80px, 12vw, 160px) 0; }
.section-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 80px;
}
.section-header h2 { font-size: clamp(36px, 5vw, 72px); }
.section-header h2 em {
  font-style: italic; font-family: 'Syne', serif;
  color: var(--ink-mute); font-weight: 300;
}
.section-header p { color: var(--ink-dim); font-size: 16px; line-height: 1.6; max-width: 480px; }

/* ================ METRICS ================ */
.metrics {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.metric { padding: 56px 32px; border-right: 1px solid var(--line); position: relative; }
.metric:last-child { border-right: 0; }
.metric-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 4px;
  color: var(--ink);
}
.metric-num .suffix { font-size: 0.4em; color: var(--pink); font-weight: 600; }
.metric-label {
  margin-top: 14px; font-size: 13px;
  color: var(--ink-dim); line-height: 1.5; max-width: 200px;
}

/* ================ PRODUCTS — IMAGE CARDS ================ */
.products { background: var(--bg); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
  color: #fff;
  background: #0a1428;
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 20px 50px -30px rgba(10,20,40,0.4);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -30px rgba(10,20,40,0.5); }
.product-card.feature { grid-column: span 8; min-height: 560px; }
.product-card.span-4 { grid-column: span 4; }
.product-card.span-6 { grid-column: span 6; }

.product-card .pc-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
  z-index: 0;
}
.product-card:hover .pc-bg { transform: scale(1.05); }
.product-card .pc-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
}
.product-card .pc-content { position: relative; z-index: 2; }
.product-card .pc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.product-card h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-top: 14px; color: #fff;
}
.product-card p {
  color: rgba(255,255,255,0.85); margin-top: 12px; line-height: 1.55; font-size: 15px;
  max-width: 460px;
}
.product-card .pc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600;
  margin-top: 24px; color: #fff;
}
.product-card .pc-link:hover { color: var(--pink-soft); }
.product-card:hover .pc-link svg { transform: translateX(4px); }
.product-card .pc-link svg { transition: transform .25s; }

/* ================ FEATURED ================ */
.featured { background: var(--bg); position: relative; padding: 0; }
.featured-inner {
  position: relative; min-height: 90vh;
  display: flex; align-items: flex-end;
  background-image: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.1) 70%, rgba(0,0,0,0.4) 100%), url('assets/hero-house.jpg');
  background-size: cover; background-position: center;
  color: #fff;
}
.featured-content {
  width: 100%; padding: 80px var(--pad);
  display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: end;
}
.featured-content h2 { font-size: clamp(40px, 6vw, 80px); max-width: 800px; color: #fff; }
.featured-meta { display: grid; gap: 24px; }
.featured-meta .item small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); display: block; margin-bottom: 6px;
}
.featured-meta .item p { font-size: 15px; color: #fff; margin: 0; line-height: 1.5; }
.featured .eyebrow { color: rgba(255,255,255,0.85); }
.featured .eyebrow::before { background: var(--pink); }

/* ================ CALCULATOR ================ */
.calc { background: var(--bg-soft); }
.calc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(10,20,40,0.15);
}
.calc-card::before {
  content: ""; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink-glow), transparent 70%);
  pointer-events: none;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; }
.calc-stepper {
  display: flex; gap: 8px; margin-bottom: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}
.calc-step-pill {
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: all .3s;
}
.calc-step-pill.active { background: var(--pink); border-color: var(--pink); color: #fff; }
.calc-step-pill.done { background: rgba(47,157,99,0.12); border-color: rgba(47,157,99,0.3); color: var(--green); }
.calc h3 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.calc-q-sub { color: var(--ink-dim); margin-bottom: 28px; line-height: 1.55; }

.input-group { display: grid; gap: 14px; }
.input-row { position: relative; }
.input-row input {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 18px 20px 18px 54px;
  color: var(--ink);
  font-size: 18px; font-family: 'Syne', sans-serif; font-weight: 600;
  outline: none; transition: border-color .2s;
}
.input-row input:focus { border-color: var(--pink); background: #fff; }
.input-row .prefix {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  color: var(--ink-mute); font-family: 'JetBrains Mono', monospace; font-size: 14px;
}
.calc-select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 16px 40px 16px 18px;
  color: var(--ink);
  font-size: 15px; font-family: 'Syne', sans-serif; font-weight: 500;
  outline: none; transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.6' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.calc-select:focus { border-color: var(--pink); background-color: #fff; }
.calc-select:disabled { opacity: 0.5; cursor: not-allowed; }

.calc-label { display: block; font-size: 12px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.calc-tip { color: var(--ink-mute); font-size: 12px; margin-top: 6px; }
.calc-info {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(245,200,66,0.10);
  border: 1px solid rgba(245,200,66,0.30);
  font-size: 13px; color: var(--ink-dim);
}
.calc-info strong { color: var(--ink); font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.calc-foot { font-size: 11px; color: var(--ink-mute); margin: 0; line-height: 1.5; }
.choice .dot-icon { font-size: 22px; line-height: 1; flex-shrink: 0; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: rgba(245,200,66,0.18); border-radius: 10px; }
.choice .choice-title { display: block; color: var(--ink); margin-bottom: 2px; font-size: 14px; }
.choice .choice-sub { color: var(--ink-mute); font-size: 12px; }
.choice.selected .dot-icon { background: rgba(245,200,66,0.35); }
.btn-cta-yellow {
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  background: #F5C842; color: #0A1628; font-weight: 600;
  padding: 14px 26px; border-radius: 999px; font-size: 14px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 12px 36px -14px rgba(245,200,66,0.5);
}
.btn-cta-yellow:hover { background: #f3d367; transform: translateY(-2px); }

/* Compare boxes (red/green) */
.calc-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 4px; }
.calc-compare-box {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.calc-compare-box .cc-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.calc-compare-box .cc-amount {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(26px, 3.6vw, 38px); line-height: 1;
  letter-spacing: -0.02em;
}
.calc-compare-box .cc-unit { font-size: 11px; color: rgba(255,255,255,0.5); font-family: 'JetBrains Mono', monospace; }
.calc-compare-box.red {
  background: rgba(229, 62, 62, 0.10);
  border-color: rgba(229, 62, 62, 0.35);
}
.calc-compare-box.red .cc-amount { color: #ff6b6b; }
.calc-compare-box.green {
  background: rgba(47, 157, 99, 0.14);
  border-color: rgba(47, 157, 99, 0.4);
}
.calc-compare-box.green .cc-amount { color: #4ade80; }
@media (max-width: 480px) {
  .calc-compare { grid-template-columns: 1fr; }
}

/* Recibo comparison boxes inside calc-result */
.recibo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0 8px;
}
.recibo-box {
  border-radius: 14px;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.recibo-box small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}
.recibo-box strong {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.recibo-box .recibo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.recibo-sin strong { color: #ff6b6b; }
.recibo-sin { background: rgba(255,107,107,0.08); border-color: rgba(255,107,107,0.25); }
.recibo-con strong { color: #4ade80; }
.recibo-con { background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.25); }

/* Chart */
.chart-wrap { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
.chart-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 18px; }
.chart-head h4 { font-family: 'Syne', sans-serif; font-size: 20px; color: var(--ink); margin: 0; }
.chart-legend { display: flex; gap: 18px; font-size: 12px; color: var(--ink-dim); }
.chart-legend span { display: inline-flex; align-items: center; gap: 6px; }
.chart-legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.chart-svg { width: 100%; height: auto; max-height: 360px; display: block; }
@media (max-width: 720px) {
  .chart-svg { font-size: 11px; }
}
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  text-align: left; font-size: 14px;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 12px;
  transition: all .2s;
}
.choice:hover { background: var(--bg-soft); color: var(--ink); }
.choice.selected {
  border-color: var(--pink);
  background: rgba(196,30,91,0.06);
  color: var(--ink);
}
.choice .dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--line-strong);
  flex-shrink: 0; position: relative;
}
.choice.selected .dot { border-color: var(--pink); }
.choice.selected .dot::after { content: ""; position: absolute; inset: 2px; background: var(--pink); border-radius: 50%; }
.calc-nav { display: flex; gap: 12px; margin-top: 28px; }
.calc-result {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid; gap: 22px;
  align-self: start; position: relative;
}
.calc-result h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink-soft); font-weight: 500;
}
.calc-big { font-size: clamp(44px, 6vw, 72px); line-height: 1; color: #fff; }
.calc-big small { font-size: 0.4em; color: rgba(255,255,255,0.6); font-weight: 500; }
.calc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.calc-row:last-child { border-bottom: 0; }
.calc-row span:first-child { color: rgba(255,255,255,0.6); }
.calc-row span:last-child { font-weight: 600; }

/* ================ TIMELINE ================ */
.timeline { background: var(--bg); border-top: 1px solid var(--line); }
.timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.timeline-list { display: grid; gap: 32px; position: relative; }
.timeline-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--pink);
  letter-spacing: 0.06em; padding-top: 4px;
}
.timeline-title { font-size: 20px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.timeline-desc { color: var(--ink-dim); font-size: 14.5px; line-height: 1.6; }

/* ================ TESTIMONIAL ================ */
.testimonial {
  background-image: linear-gradient(rgba(5,11,26,0.72), rgba(5,11,26,0.78)), url('assets/testimonial-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.testi-card {
  background: rgba(10,22,40,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  text-align: center; position: relative; overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5);
}
.testi-photo {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  display: block;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(245,200,66,0.5);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5);
}
.testi-card::before {
  content: """;
  position: absolute; top: -40px; left: 40px;
  font-family: 'Syne', serif; font-size: 240px;
  color: #F5C842; opacity: 0.18; line-height: 1;
}
.testi-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.3; letter-spacing: -0.01em;
  max-width: 800px; margin: 0 auto 32px; position: relative;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.testi-author { font-size: 14px; color: rgba(255,255,255,0.75); }
.testi-author strong { color: #fff; display: block; font-size: 15px; margin-bottom: 2px; }

@media (max-width: 720px) {
  .testimonial { background-attachment: scroll; }
}

/* ================ CTA STRIP ================ */
.cta-strip { background: var(--bg); position: relative; overflow: hidden; }
/* ================ STATS (Nosotros) ================ */
.about-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.about-lead {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 18px 0 24px;
}
.about-body {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
  align-items: stretch;
}
.about-photo {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.about-photo-a { aspect-ratio: 3 / 4; grid-row: span 2; }
.about-photo-b { aspect-ratio: 4 / 3; align-self: center; }
@media (max-width: 860px) {
  .about-top { grid-template-columns: 1fr; }
  .about-photo-a { aspect-ratio: 4 / 5; }
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.stat-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  cursor: grab;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,200,66,0.4);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.6);
}
.stat-card.dragging { opacity: 0.5; cursor: grabbing; }
.stat-card.drag-over { border-color: #F5C842; transform: scale(1.02); }
.stat-ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform .3s ease;
}
.stat-card:hover .stat-ic { transform: scale(1.08) rotate(-4deg); }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #C41E5B;
  display: flex; align-items: baseline; gap: 6px; justify-content: center;
}
.stat-num span { font-size: 0.32em; color: #F5C842; font-weight: 600; }
.stat-label {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 240px;
}
@media (max-width: 720px) {
  .stat-card { max-width: 100%; }
}
.cta-inner {
  background: linear-gradient(135deg, var(--pink) 0%, #8b1646 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid; grid-template-columns: 2fr 1fr;
  align-items: center; gap: 40px;
  position: relative; overflow: hidden;
  color: #fff;
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 20% 100%, rgba(244,210,122,0.2), transparent 50%);
}
.cta-inner h2 { font-size: clamp(32px, 4.5vw, 56px); position: relative; color: #fff; }
.cta-inner .eyebrow { color: rgba(255,255,255,0.85); }
.cta-inner .eyebrow::before { background: rgba(255,255,255,0.5); }
.cta-inner .cta-actions { display: flex; flex-direction: column; gap: 12px; position: relative; }
.cta-inner .btn-primary { background: #fff; color: var(--ink); box-shadow: none; }
.cta-inner .btn-primary:hover { background: var(--bg-soft); }
.cta-inner .btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* ================ FOOTER ================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 80px var(--pad) 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; max-width: var(--max);
  margin: 0 auto 60px;
}
.foot-brand img { width: 44px; margin-bottom: 18px; }
.foot-brand p { color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.6; max-width: 280px; }
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 18px;
}
.foot-col a {
  display: block; color: rgba(255,255,255,0.7); font-size: 14px;
  padding: 5px 0; transition: color .2s;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,0.5);
}

/* ================ WA FAB ================ */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  box-shadow: 0 16px 40px -8px rgba(37,211,102,0.4);
  transition: transform .2s;
  animation: pulse-wa 2s ease-in-out infinite;
}
.wa-fab:hover { transform: scale(1.08); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 16px 40px -8px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 16px 40px -8px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* ================ REVEAL ================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }

/* ================ PROCESS TIMELINE (Kits) ================ */
.proc-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proc-bg .proc-step h4 { color: #fff; }
.proc-bg .proc-step p { color: rgba(255,255,255,0.78); }
.proc-bg .proc-ic { background: rgba(10,22,40,0.6); }
.proc-bg .proc-step:not(:last-child) .proc-node::after {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.28) 0 8px, transparent 8px 16px);
}
@media (max-width: 720px) {
  .proc-bg { background-attachment: scroll; }
}
.proc-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 56px auto 0;
  padding: 0 var(--pad);
  position: relative;
}
.proc-step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proc-node {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
/* connecting line behind nodes */
.proc-step:not(:last-child) .proc-node::after {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(50% + 40px);
  width: calc(100% - 80px + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
}
.proc-ic {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--navy-900, #0a1428);
  border: 1.5px solid rgba(245,200,66,0.4);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.proc-step:hover .proc-ic {
  transform: translateY(-4px);
  border-color: #F5C842;
  box-shadow: 0 0 0 6px rgba(245,200,66,0.1);
}
.proc-day {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.proc-step h4 { font-size: 20px; margin-bottom: 10px; color: var(--ink); }
.proc-step p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 0; max-width: 240px; }
@media (max-width: 860px) {
  .proc-timeline { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .proc-step:not(:last-child) .proc-node::after { display: none; }
}
@media (max-width: 520px) {
  .proc-timeline { grid-template-columns: 1fr; }
}

/* ================ PLANS BG (Kits) ================ */
.plans-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.plans-bg .plan {
  background: rgba(10,22,40,0.55);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.plans-bg .plan h3,
.plans-bg .plan .plan-price { color: #fff; }
.plans-bg .plan .plan-price small,
.plans-bg .plan .plan-sub { color: rgba(255,255,255,0.7); }
.plans-bg .plan li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.12); }
.plans-bg .plan.featured {
  background: rgba(196,30,91,0.22);
  border-color: var(--pink);
}
.plans-bg .plan .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.plans-bg .plan .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ================ VIDEO HERO ================ */.video-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.video-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.video-hero-overlay-dark {
  background: rgba(0,0,0,0.8);
}
.video-hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad) clamp(56px, 8vw, 90px);
  padding-top: 140px;
}

/* ================ PAGE HERO (internal) ================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero-content { position: relative; z-index: 2; padding: 80px 0; }
.page-hero-image {
  background-size: cover !important;
  background-position: center 40% !important;
  background-repeat: no-repeat !important;
  min-height: 70vh;
}
.page-hero-image::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  z-index: 1;
}
.page-hero h1 { color: var(--ink); }
.page-hero p { color: var(--ink-dim); }

.crumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; gap: 10px; align-items: center;
  padding: 100px var(--pad) 0;
  max-width: var(--max); margin: 0 auto;
}
.crumb a:hover { color: var(--pink); }
.crumb-sep { opacity: 0.4; }

/* ================ PLANS ================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: 0 10px 40px -20px rgba(10,20,40,0.08);
}
.plan:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 20px 60px -20px rgba(10,20,40,0.15); }
.plan.featured {
  border-color: var(--pink);
  background: linear-gradient(160deg, rgba(196,30,91,0.04), #fff);
  box-shadow: 0 30px 80px -30px var(--pink-glow);
}
.plan-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--pink);
}
.plan h3 { font-size: 32px; margin-top: 12px; }
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 44px; font-weight: 700; margin: 24px 0 4px;
  letter-spacing: -0.02em;
}
.plan-price small { font-size: 14px; color: var(--ink-mute); font-weight: 500; }
.plan-sub { color: var(--ink-dim); font-size: 14px; margin-bottom: 24px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
.plan li {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink-dim);
  display: flex; align-items: center; gap: 10px;
}
.plan li::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(47,157,99,0.12); border: 1px solid rgba(47,157,99,0.4);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 5l2 2 4-4' stroke='%232f9d63' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.plan-cta { margin-top: auto; }

/* ================ FEATURES ================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: background .3s, border-color .3s, transform .3s;
}
.feature:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pink), #8b1646);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #fff;
}
.feature h4 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }
.feature p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 0; }

/* ================ STEPS ================ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.step { padding: 40px 28px; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: 0; }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--pink); letter-spacing: 0.16em;
  margin-bottom: 28px;
}
.step h4 { font-size: 22px; margin-bottom: 12px; color: var(--ink); }
.step p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 0; }

/* ================ AGENDA ================ */
.agenda-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.agenda-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 30px 80px -40px rgba(10,20,40,0.15);
}
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 15px; font-family: inherit;
  outline: none; transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--pink); background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.agenda-aside .info-block { padding: 24px 0; border-bottom: 1px solid var(--line); }
.agenda-aside .info-block:last-child { border-bottom: 0; }
.agenda-aside h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink); margin: 0 0 10px; font-weight: 500;
}
.agenda-aside p { color: var(--ink-dim); font-size: 15px; line-height: 1.6; margin: 0; }

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
  .product-card.feature, .product-card.span-4, .product-card.span-6 { grid-column: span 12; }
  .calc-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-content { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-brand { grid-column: span 3; }
  .section-header { grid-template-columns: 1fr; gap: 24px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cta-inner { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .agenda-wrap { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .hero-minimal-actions { flex-direction: column; align-items: stretch; padding: 0 24px 60px; }
  .btn-light, .btn-dark { width: 100%; min-width: 0; }
  .nav-links a:not(.nav-cta), .nav-links .menu-btn { display: none; }
  .nav-burger { display: block; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: span 2; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .field-row { grid-template-columns: 1fr; }
}
