/* ==========================================================
   VOTE360 — Landing 2026 (Dark + Gold theme)
   Implementacion del diseno entregado desde claude.ai/design
   ========================================================== */

:root {
  --bg: #00042e;
  --bg-2: #060933;
  --bg-3: #0b1140;
  --ink: #fafaf7;
  --ink-2: rgba(250, 250, 247, 0.72);
  --ink-3: rgba(250, 250, 247, 0.48);
  --ink-4: rgba(250, 250, 247, 0.18);
  --line: rgba(233, 213, 154, 0.14);
  --line-strong: rgba(233, 213, 154, 0.28);

  --gold-1: #f3e3b6;
  --gold-2: #e9d59a;
  --gold-3: #ddc587;
  --gold-4: #c7a563;
  --gold-5: #8a6d34;

  --success: #40dc8a;
  --warn: #f5b942;
  --danger: #f06262;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 0 60px -20px rgba(221, 197, 135, 0.45);

  --max-w: 1280px;
  --gutter: clamp(20px, 4vw, 48px);

  --t-fast: 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-med: 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-slow: 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset */
.content-home,
.content-home * { box-sizing: border-box; }
.content-home h1, .content-home h2, .content-home h3, .content-home h4,
.content-home p, .content-home ul, .content-home figure, .content-home form { margin: 0; padding: 0; }
.content-home ul { list-style: none; }
.content-home a { color: inherit; text-decoration: none; }
.content-home button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.content-home img { display: block; max-width: 100%; }

html, body.content-home {
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
  overflow-x: hidden;
}

body.content-home {
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(221, 197, 135, 0.08), transparent 60%),
    radial-gradient(900px 500px at 90% 30%, rgba(11, 17, 64, 0.8), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

::selection { background: var(--gold-3); color: var(--bg); }

.mono { font-family: "Geist Mono", "JetBrains Mono", ui-monospace, monospace; letter-spacing: 0; }
.serif { font-family: "Instrument Serif", "Times New Roman", serif; font-style: italic; font-weight: 400; }

.gold-text {
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 35%, var(--gold-4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------- Layout ----------- */
.shell { width: 100%; max-width: var(--max-w); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.content-home section { position: relative; }
.content-home section + section { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-3);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-3);
  box-shadow: 0 0 12px var(--gold-3);
}

.content-home h1, .content-home h2, .content-home h3, .content-home h4 {
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.05;
}
.content-home h1 { font-size: clamp(48px, 7.5vw, 112px); letter-spacing: -0.035em; }
.content-home h2 { font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em; }
.content-home h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; }

.content-home p { color: var(--ink-2); font-size: 16px; }
.content-home p.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); max-width: 60ch; line-height: 1.5; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-4));
  color: #1a1407;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset,
    0 10px 30px -10px rgba(221, 197, 135, 0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 -1px 0 rgba(0, 0, 0, 0.15) inset, 0 16px 40px -10px rgba(221, 197, 135, 0.7); color: #1a1407; }
.btn-ghost { background: rgba(255, 255, 255, 0.04); color: var(--ink); border: 1px solid var(--ink-4); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--line-strong); color: var(--ink); }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ----------- Cards ----------- */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

/* hex pattern background */
.hex-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(221, 197, 135, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 197, 135, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Marquee */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover { animation-play-state: paused; }

/* Pulse */
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(64, 220, 138, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(64, 220, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(64, 220, 138, 0); }
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 1.6s infinite;
  display: inline-block;
}

/* ink helpers */
.ink-3 { color: var(--ink-3); }

/* ---------- NAV ---------- */
.nav-landing {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t-med), border-color var(--t-med), backdrop-filter var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav-landing.is-scrolled {
  background: rgba(0, 4, 46, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
          backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 28px; height: 28px; border-radius: 5px; }
.brand-word { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; color: var(--ink); }
.brand-360 { background: linear-gradient(180deg, var(--gold-1), var(--gold-4)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color var(--t-fast); }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 10px 16px; font-size: 13px; }
.nav-cta-mobile-wrap { display: none; }
.nav-toggle { display: none; color: var(--ink); font-size: 22px; padding: 6px 10px; }
@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 16px; background: rgba(0,4,46,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 4px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta-mobile-wrap { display: list-item; }
  .nav-cta-mobile { width: 100%; justify-content: center; margin-top: 8px; }
  .nav-right .nav-cta { display: none; }
}

/* ---------- HERO ---------- */
.hero { padding: 140px 0 100px; position: relative; overflow: hidden; min-height: 100vh; }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 800px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(221, 197, 135, 0.18), transparent 70%);
}
.hero-v-watermark {
  position: absolute; right: -8%; top: 40%; transform: translateY(-50%);
  width: 720px; height: 720px; opacity: 0.18; pointer-events: none;
  z-index: 0;
}
.hero-v-watermark img { width: 100%; height: 100%; object-fit: contain; border-radius: 8%; filter: drop-shadow(0 0 80px rgba(233,213,154,0.4)); }

.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-copy { max-width: 640px; }
.hero-copy h1 { margin: 22px 0 28px; }
.h1-line { display: block; }
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px; padding: 8px 14px; border-radius: 999px;
  background: rgba(64, 220, 138, 0.08); border: 1px solid rgba(64, 220, 138, 0.25);
  font-size: 12px; color: var(--ink-2);
}
.hero-pill .mono { font-size: 12px; }

.hero-side { position: relative; height: 520px; }
.hero-card {
  position: absolute; background: linear-gradient(180deg, rgba(11, 17, 64, 0.7), rgba(0, 4, 46, 0.9));
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: var(--shadow-1), var(--shadow-gold);
  overflow: hidden;
}
.hero-card-map { top: 30px; left: 0; right: 40px; padding: 22px; }
.hero-card-stat { bottom: 30px; right: 0; left: 80px; padding: 18px 22px; display: flex; align-items: center; gap: 22px; }
.hc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hc-tag { font-size: 11px; color: var(--gold-3); letter-spacing: 0.16em; }
.hero-map { position: relative; height: 220px; }
.hero-map-shape { position: absolute; inset: 0; width: 100%; height: 100%; }
.hc-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.hc-foot div { display: flex; flex-direction: column; gap: 4px; }
.hc-foot .mono { font-size: 10px; letter-spacing: 0.14em; color: var(--ink-3); }
.hc-foot strong { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }

.hc-spark { display: flex; align-items: flex-end; gap: 4px; height: 56px; flex: 1; }
.spark-bar {
  flex: 1; background: linear-gradient(180deg, var(--gold-2), var(--gold-4));
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
}
.spark-bar.tall { background: linear-gradient(180deg, var(--gold-1), var(--gold-4)); }
.hc-stat-text { display: flex; flex-direction: column; gap: 2px; align-items: flex-end; }
.hc-stat-text .mono { font-size: 10px; letter-spacing: 0.14em; }
.hc-stat-text strong { font-size: 26px; color: var(--success); font-weight: 500; letter-spacing: -0.02em; }

@keyframes mappulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
}
.map-ping {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: rgba(233,213,154,0.5);
  box-shadow: 0 0 8px rgba(233,213,154,0.4);
  transform: translate(-50%,-50%);
  animation: mappulse 2.4s ease-out infinite;
}
.map-ping.hot { background: var(--gold-2); box-shadow: 0 0 16px var(--gold-2), 0 0 32px rgba(233,213,154,0.4); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { height: 420px; }
  .hero-card-map { right: 20px; }
  .hero-card-stat { left: 40px; }
}

/* ---------- PROOF ---------- */
.proof { padding: 60px 0; }
.proof-head { margin-bottom: 28px; }
.proof-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.proof-logo {
  font-family: "Geist Mono", ui-monospace, monospace; font-size: 14px; letter-spacing: 0.16em;
  color: var(--ink-3); padding: 0 36px; white-space: nowrap; flex-shrink: 0;
  transition: color var(--t-fast);
}
.proof-logo:hover { color: var(--gold-3); }

/* ---------- SECTION HEAD ---------- */
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-title { margin-bottom: 18px; }

/* ---------- METRICS ---------- */
.metrics { padding: 120px 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.metric-card {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 36px 28px; position: relative; min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.metric-num { font-size: clamp(44px, 5vw, 68px); font-weight: 500; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(180deg, var(--gold-1), var(--gold-4)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric-label { color: var(--ink-2); font-size: 14px; max-width: 22ch; margin-top: 16px; }
.metric-vmark { position: absolute; top: 24px; right: 24px; opacity: 0.4; }
.metric-vmark img { width: 20px; height: 20px; border-radius: 4px; }
@media (max-width: 820px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- NETWORK ---------- */
.network { padding: 140px 0; position: relative; overflow: hidden; }
.net-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.net-tree { display: flex; flex-direction: column; gap: 16px; position: relative; }
.net-node {
  position: relative; padding: 18px 22px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  display: flex; flex-direction: column; gap: 6px;
}
.net-node-0 { border-color: var(--line-strong); background: linear-gradient(180deg, rgba(233,213,154,0.12), rgba(233,213,154,0.02)); }
.net-node-1 { margin-left: 18px; }
.net-node-2 { margin-left: 36px; }
.net-node-3 { margin-left: 54px; }
.net-node-4 { margin-left: 72px; }
.net-tag { font-size: 10px; color: var(--gold-3); letter-spacing: 0.18em; }
.net-node strong { font-size: 17px; font-weight: 500; color: var(--ink); }
.net-node .ink-3 { font-size: 13px; line-height: 1.4; }

.net-viz { background: linear-gradient(180deg, rgba(11,17,64,0.5), rgba(0,4,46,0.3)); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 32px; display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.net-graph { width: 100%; aspect-ratio: 1.1; }
@keyframes netpulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.45; }
}
.net-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.net-stat { display: flex; flex-direction: column; gap: 4px; }
.net-stat strong { font-size: 28px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.net-stat .mono { font-size: 10px; letter-spacing: 0.12em; line-height: 1.4; color: var(--ink-3); }
.net-cta-note { font-size: 16px; color: var(--ink-2); padding-top: 16px; border-top: 1px solid var(--line); }
@media (max-width: 980px) { .net-grid { grid-template-columns: 1fr; } .net-viz { position: static; } }

/* ---------- PRODUCT ---------- */
.product { padding: 120px 0; }
.product-grid { display: grid; grid-template-columns: 360px 1fr; gap: 40px; }
.product-rail { display: flex; flex-direction: column; gap: 6px; }
.prod-tab {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid transparent; text-align: left;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  color: var(--ink-2);
  width: 100%;
}
.prod-tab:hover { background: rgba(255, 255, 255, 0.03); color: var(--ink); }
.prod-tab.on { background: linear-gradient(180deg, rgba(233, 213, 154, 0.08), rgba(233, 213, 154, 0.02)); border-color: var(--line-strong); color: var(--ink); }
.prod-tag { font-size: 11px; color: var(--gold-3); letter-spacing: 0.16em; font-family: "Geist Mono", ui-monospace, monospace; }
.prod-tab-t { font-size: 16px; font-weight: 500; }
.prod-tab-arrow { color: var(--gold-3); opacity: 0; transition: opacity var(--t-fast), transform var(--t-fast); }
.prod-tab.on .prod-tab-arrow { opacity: 1; transform: translateX(2px); }

.product-stage { background: linear-gradient(180deg, rgba(11, 17, 64, 0.5), rgba(0, 4, 46, 0.3)); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 40px; min-height: 540px; }
.prod-stage-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.prod-stage-head h3 { font-size: 32px; }
.prod-bullets { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; padding: 0; }
.prod-bullets li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13px; color: var(--ink-2); }
.prod-bullets li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold-4)); }
.prod-stage-pane { display: none; }
.prod-stage-pane.on { display: block; }
@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-stage { padding: 28px; min-height: auto; }
}

/* ---------- SOLUTIONS / AUDIENCIAS ---------- */
.solutions { padding: 120px 0; }
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
@media (max-width: 820px) { .solutions-grid { grid-template-columns: 1fr; } }
.solution-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.solution-card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-gold); }
.sol-tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-3); }
.solution-card h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; letter-spacing: -0.02em; margin-top: 14px; }
.solution-card > p { color: var(--ink-2); margin-top: 12px; font-size: 16px; line-height: 1.5; }
.sol-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.sol-list li { position: relative; padding-left: 26px; color: var(--ink-2); font-size: 15px; line-height: 1.45; }
.sol-list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10l4 4 8-8' stroke='%23ddc587' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.sol-cta { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-2); font-weight: 500; }
.sol-cta .arrow { transition: transform var(--t-fast); }
.solution-card:hover .sol-cta .arrow { transform: translateX(4px); }

/* ---------- COMPARE ---------- */
.compare { padding: 120px 0; }
.compare-table { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compare-cols { display: grid; grid-template-columns: 1fr 1fr; }
.compare-col { padding: 22px 28px; display: flex; align-items: center; gap: 10px; font-family: "Geist Mono", ui-monospace, monospace; font-size: 12px; letter-spacing: 0.12em; }
.compare-col-bad { background: rgba(255,255,255,0.02); color: var(--ink-3); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.compare-col-good { background: linear-gradient(180deg, rgba(233,213,154,0.12), rgba(233,213,154,0.04)); color: var(--gold-2); border-bottom: 1px solid var(--line-strong); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-cell { padding: 22px 28px; display: flex; gap: 14px; font-size: 15px; align-items: flex-start; line-height: 1.45; }
.compare-cell-bad { color: var(--ink-3); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare-cell-good { color: var(--ink); background: rgba(233,213,154,0.025); border-bottom: 1px solid var(--line); }
.compare-row:last-child .compare-cell { border-bottom: 0; }
.cmp-x { color: var(--danger); font-size: 18px; line-height: 1; flex-shrink: 0; }
.cmp-v { width: 16px; height: 16px; flex-shrink: 0; border-radius: 3px; }
@media (max-width: 720px) {
  .compare-cell { font-size: 14px; padding: 16px; }
  .compare-col { padding: 14px 16px; }
}

/* ---------- CASES ---------- */
.cases { padding: 120px 0; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.case-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.case-head { display: flex; justify-content: space-between; align-items: center; }
.case-tag { font-size: 11px; padding: 4px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--gold-2); letter-spacing: 0.14em; text-transform: uppercase; font-family: "Geist Mono", ui-monospace, monospace; }
.case-region { font-size: 11px; color: var(--ink-3); font-family: "Geist Mono", ui-monospace, monospace; letter-spacing: 0.12em; }
.case-lift { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-lift strong { font-size: 48px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.case-lift span { font-size: 13px; color: var(--ink-3); }
.case-quote { font-size: 18px; line-height: 1.4; color: var(--ink); font-family: "Instrument Serif", "Times New Roman", serif; font-style: italic; }
.case-who { font-size: 11px; color: var(--ink-3); font-family: "Geist Mono", ui-monospace, monospace; letter-spacing: 0.12em; }
@media (max-width: 980px) { .cases-grid { grid-template-columns: 1fr; } }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.testi-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 18px; min-height: 260px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }
.testi-card img { width: 22px; height: 22px; border-radius: 4px; }
.testi-card img.testi-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line); }
.testi-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.testi-media video { display: block; width: 100%; border-radius: var(--radius-lg); }
.testi-stars { color: var(--gold-3); letter-spacing: 2px; font-size: 16px; line-height: 1; }
.testi-q { font-family: "Instrument Serif", "Times New Roman", serif; font-size: 22px; line-height: 1.35; color: var(--ink); font-style: italic; flex: 1; }
.testi-foot { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi-foot strong { font-weight: 500; color: var(--ink); }
.testi-foot .mono { font-size: 11px; color: var(--ink-3); letter-spacing: 0.12em; }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { padding: 120px 0; }
.faq-grid { display: grid; grid-template-columns: 360px 1fr; gap: 60px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
/* <details>/<summary> nativo: ocultar el marcador por defecto del navegador */
.faq-item > summary { list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ""; }
.faq-q { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 22px 0; width: 100%; text-align: left; cursor: pointer; }
.faq-num { font-size: 12px; color: var(--gold-3); letter-spacing: 0.16em; font-family: "Geist Mono", ui-monospace, monospace; }
.faq-text { font-size: 18px; font-weight: 500; color: var(--ink); }
.faq-icon { color: var(--ink-3); transition: transform var(--t-med); display: inline-flex; }
.faq-item[open] .faq-icon { transform: rotate(180deg); color: var(--gold-3); }
/* Respuesta visible sin JS: con <details open> el contenido se muestra
   nativamente. La animación de expansión aplica cuando está abierto. */
.faq-a-wrap { display: grid; grid-template-rows: 1fr; }
.faq-a-wrap > div { overflow: hidden; }
.faq-a { padding: 0 0 24px 56px; color: var(--ink-2); max-width: 60ch; line-height: 1.55; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } .faq-a { padding-left: 0; } }

/* ---------- FINAL / DEMO FORM ---------- */
.final { padding: 140px 0; position: relative; overflow: hidden; }
.final-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; position: relative; z-index: 2; }
.final-title { font-size: clamp(40px, 5vw, 72px); margin: 18px 0 22px; letter-spacing: -0.03em; line-height: 1.05; }
.final-stats { display: flex; gap: 36px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.final-stats div { display: flex; flex-direction: column; gap: 4px; }
.final-stats strong { font-size: 38px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.final-stats .mono { font-size: 11px; letter-spacing: 0.14em; color: var(--ink-3); }
.final-checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.final-checklist li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); font-size: 15px; }
.final-checklist li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold-4)); position: relative; margin-top: 2px; box-shadow: 0 0 12px rgba(233,213,154,0.25); }
.final-checklist li::after { content: "✓"; position: absolute; color: #1a1407; font-size: 11px; font-weight: 700; margin-left: 4px; margin-top: 2px; }

.final-form-wrap {
  background: linear-gradient(180deg, rgba(11, 17, 64, 0.7), rgba(0, 4, 46, 0.6));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 24px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1), var(--shadow-gold);
}
.final-form-wrap-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding: 4px 8px; }
.final-form-wrap-head .mono { font-size: 11px; letter-spacing: 0.16em; color: var(--gold-3); }
.iframe-frame {
  background: rgba(0, 4, 46, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 6px;
  overflow: hidden;
}
.iframe-frame iframe {
  display: block;
  background: transparent;
  border-radius: var(--radius);
}
.form-note-bottom { text-align: center; font-size: 11px; letter-spacing: 0.12em; color: var(--ink-3); margin-top: 16px; font-family: "Geist Mono", ui-monospace, monospace; }

@media (max-width: 980px) {
  .final-grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.footer-landing { padding: 60px 0 30px; border-top: 1px solid var(--line); position: relative; }
.footer-row { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img.brand-icon { width: 32px; height: 32px; border-radius: 6px; }
.footer-brand .brand-word { font-size: 24px; }
.footer-tag { font-size: 28px; color: var(--ink-2); font-family: "Instrument Serif", "Times New Roman", serif; font-style: italic; }
.footer-links { display: flex; gap: 24px; font-size: 12px; letter-spacing: 0.12em; font-family: "Geist Mono", ui-monospace, monospace; flex-wrap: wrap; }
.footer-links a { color: var(--ink-3); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--gold-3); }
.footer-bot { display: flex; justify-content: space-between; padding-top: 24px; font-size: 11px; letter-spacing: 0.12em; font-family: "Geist Mono", ui-monospace, monospace; color: var(--ink-3); flex-wrap: wrap; gap: 12px; }
@media (max-width: 720px) { .footer-row { grid-template-columns: 1fr; text-align: left; } .footer-tag { font-size: 22px; } }

/* ---------- WHATSAPP FAB ---------- */
@keyframes wapulse {
  0%,100% { box-shadow: 0 12px 40px -8px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.6); }
  50% { box-shadow: 0 12px 40px -8px rgba(37,211,102,0.6), 0 0 0 14px rgba(37,211,102,0); }
}
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #25D366; color: #fff; padding: 14px 20px;
  border-radius: 100px; display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px;
  font-family: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  animation: wapulse 2.4s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.wa-fab svg { fill: #fff; }
@media (max-width: 640px) { .wa-fab span { display: none; } .wa-fab { padding: 14px; } }

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(0,4,46,0.95), rgba(0,4,46,1));
  border-top: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.mobile-sticky-cta a { display: flex; justify-content: center; }
@media (max-width: 820px) {
  .mobile-sticky-cta { display: block; }
  .wa-fab { bottom: 80px; }
}
