/* ============================================================
   LEADMATICAD — styles.css
   Subir a: https://leadmaticad.com/wp-content/uploads/leadmaticad/styles.css
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --bg:          #07101F;
  --surface:     #0C1929;
  --surface-2:   #111F34;
  --surface-3:   #162540;
  --border:      rgba(255,153,1,0.12);
  --border-2:    rgba(255,153,1,0.20);
  --accent:      #FF9901;
  --accent-2:    #FFB340;
  --accent-dim:  rgba(255,153,1,0.12);
  --accent-glow: rgba(255,153,1,0.30);
  --text:        #E8F0FF;
  --text-2:      #7A98C0;
  --text-3:      #3D5475;
  --radius-lg:   20px;
  --radius-md:   12px;
  --radius-sm:   8px;
  --radius-pill: 999px;
  --transition:  cubic-bezier(0.32, 0.72, 0, 1);
}

/* ---- RESET + BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- GRAIN OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---- PARTÍCULAS (puntos blancos flotantes) ---- */
.fx-particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* ---- HALO DE CURSOR (luz naranja que sigue al ratón) ---- */
.fx-cursor {
  position: fixed; top: 0; left: 0; width: 540px; height: 540px; border-radius: 50%;
  pointer-events: none; z-index: 30; opacity: 0; will-change: transform, opacity;
  transition: opacity 0.45s ease;
  background: radial-gradient(circle,
    rgba(255,153,1,0.10) 0%, rgba(255,153,1,0.05) 30%, rgba(255,153,1,0.02) 50%, transparent 70%);
  mix-blend-mode: screen; filter: blur(6px);
}

/* ---- AMBIENT BACKGROUND ---- */
.ambient {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.ambient-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.22;
}
.ambient-orb--1 { width:700px;height:700px;background:radial-gradient(circle,#3d1800 0%,transparent 70%);top:-200px;left:-150px; }
.ambient-orb--2 { width:500px;height:500px;background:radial-gradient(circle,#2a1000 0%,transparent 70%);bottom:10%;right:-100px; }
.ambient-orb--3 { width:400px;height:400px;background:radial-gradient(circle,#1f1200 0%,transparent 70%);top:45%;left:40%; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}
.section { padding: clamp(5rem, 10vw, 9rem) 0; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ''; display: block; width: 20px; height: 1px;
  background: var(--accent-2); opacity: 0.7;
}
.h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.025em; color: var(--text);
}
.h1 em { font-style: italic; font-weight: 800; color: var(--accent-2); }
.h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.02em;
}
.h2 em { font-style: italic; color: var(--accent-2); }
.h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; line-height: 1.3; }
.body-text { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; max-width: 58ch; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.85rem; border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition), background 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97) translateY(1px); }

.btn-primary {
  background: var(--accent); color: #07101F; font-weight: 700;
  box-shadow: 0 4px 28px rgba(255,153,1,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  background: var(--accent-2); transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,153,1,0.44), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary .btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: rgba(0,0,0,0.15); border-radius: 50%;
  transition: transform 0.2s var(--transition);
}
.btn-primary:hover .btn-icon { transform: translate(2px, -1px) scale(1.08); }

.btn-ghost { background: transparent; color: var(--text-2); border: 1px solid var(--border-2); }
.btn-ghost:hover { color: var(--text); border-color: rgba(255,153,1,0.35); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--accent-2); border: 1px solid var(--border-2); }
.btn-outline:hover { background: var(--accent-dim); border-color: rgba(255,153,1,0.35); transform: translateY(-1px); }

.btn-white { background: #fff; color: #07101F; font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }

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

/* ---- BADGE ---- */
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.35rem 0.9rem; background: var(--accent-dim); border: 1px solid var(--border-2);
  border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600;
  color: var(--accent-2); letter-spacing: 0.04em; margin-bottom: 1.75rem;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---- CARD BASE ---- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  transition: transform 0.3s var(--transition), border-color 0.3s, box-shadow 0.3s;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover { transform: translateY(-3px); border-color: var(--border-2); box-shadow: 0 12px 40px rgba(7,16,31,0.6); }

/* ---- SCROLL REVEAL ---- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
}
/* la transición solo se usa en modo sin-motion; con GSAP, GSAP controla el tween */
.no-motion [data-reveal] {
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition), filter 0.7s var(--transition);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-delay="200"] { transition-delay: 0.2s; }
[data-reveal][data-delay="300"] { transition-delay: 0.3s; }
[data-reveal][data-delay="400"] { transition-delay: 0.4s; }
[data-reveal][data-delay="500"] { transition-delay: 0.5s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100dvh; display: flex; align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 6vw, 6rem); position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.hero-copy { max-width: 620px; }
.hero-cta-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.25rem; }
.hero-micro { margin-top: 2rem; font-size: 0.88rem; color: var(--text-3); max-width: 40ch; line-height: 1.55; font-style: italic; }

/* Hero Visual - Card Stack */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 580px; }
.card-stack { position: relative; width: 420px; height: 540px; }
.hero-service-card {
  position: absolute; width: 400px; border-radius: 22px; padding: 0; cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform 0.48s cubic-bezier(0.32,0.72,0,1), box-shadow 0.48s cubic-bezier(0.32,0.72,0,1), opacity 0.48s cubic-bezier(0.32,0.72,0,1);
  will-change: transform; overflow: hidden;
}
.hero-service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%); pointer-events: none;
}
.hero-service-card:nth-child(1) { top:0;left:0;z-index:3;transform:rotate(-1.5deg);background:linear-gradient(150deg,#0d1e35 0%,#09162a 100%);border:1px solid rgba(255,153,1,0.28);box-shadow:0 10px 40px rgba(0,0,0,0.45),inset 0 1px 0 rgba(255,255,255,0.06); }
.hero-service-card:nth-child(2) { top:22px;left:17px;z-index:2;transform:rotate(0.8deg);background:linear-gradient(150deg,#0a2018 0%,#071612 100%);border:1px solid rgba(34,197,94,0.22);box-shadow:0 10px 40px rgba(0,0,0,0.4);opacity:0.88; }
.hero-service-card:nth-child(3) { top:44px;left:34px;z-index:1;transform:rotate(2.5deg);background:linear-gradient(150deg,#1f1408 0%,#160f04 100%);border:1px solid rgba(245,158,11,0.22);box-shadow:0 10px 40px rgba(0,0,0,0.4);opacity:0.78; }
.card-stack.is-fanned .hero-service-card:nth-child(1) { transform:translateX(-58px) translateY(-32px) rotate(-7deg);opacity:1; }
.card-stack.is-fanned .hero-service-card:nth-child(2) { transform:translateX(0) translateY(0) rotate(0deg) scale(1.03);opacity:1;z-index:3; }
.card-stack.is-fanned .hero-service-card:nth-child(3) { transform:translateX(58px) translateY(32px) rotate(7deg);opacity:1; }
.hero-service-card.is-active { z-index:10!important;transform:translateY(-12px) rotate(0deg) scale(1.04)!important;opacity:1!important;box-shadow:0 28px 70px rgba(0,0,0,0.6),inset 0 1px 0 rgba(255,255,255,0.1)!important; }

/* Service card shared elements */
.sc-big-num { font-size:2.9rem;font-weight:900;line-height:1;letter-spacing:-0.04em; }
.sc-label { font-size:0.65rem;font-weight:500;text-transform:uppercase;letter-spacing:0.09em;color:var(--text-3);margin-bottom:0.15rem; }
.sc-value { font-size:0.9rem;font-weight:700; }
.sc-pill { display:inline-flex;align-items:center;gap:0.3rem;padding:0.22rem 0.6rem;border-radius:var(--radius-pill);font-size:0.68rem;font-weight:700; }
.sc-divider { height:1px;background:rgba(255,255,255,0.07);margin:1rem 0; }
.sc-card-ads .sc-big-num { color:var(--accent-2); }
.sc-platform-row { display:flex;align-items:center;gap:0.45rem;margin-bottom:1rem; }
.sc-platform { width:26px;height:26px;border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.sc-bars { display:flex;align-items:flex-end;gap:4px;height:38px;margin:0.7rem 0; }
.sc-bar { flex:1;border-radius:3px 3px 0 0;background:rgba(255,153,1,0.25);min-height:4px; }
.sc-bar--hi { background:var(--accent); }
.sc-metrics-row { display:grid;grid-template-columns:1fr 1fr 1fr;gap:0.5rem; }
.sc-metric { text-align:center; }
.sc-card-landing .sc-big-num { color:#4ADE80; }
.sc-funnel { display:flex;flex-direction:column;gap:5px;margin:0.85rem 0; }
.sc-funnel-step { height:24px;border-radius:5px;display:flex;align-items:center;padding:0 10px;font-size:0.7rem;font-weight:600; }
.sc-funnel-step:nth-child(1) { width:100%;background:rgba(74,222,128,0.2);color:#4ADE80; }
.sc-funnel-step:nth-child(2) { width:68%;background:rgba(74,222,128,0.14);color:#86EFAC; }
.sc-funnel-step:nth-child(3) { width:38%;background:rgba(74,222,128,0.22);color:#4ADE80; }
.sc-trend-up { font-size:0.78rem;font-weight:700;color:#4ADE80;display:flex;align-items:center;gap:3px; }
.sc-card-sales .sc-big-num { color:#FBC353; }
.sc-big-num .sc-unit { font-size:1.5rem;font-weight:700;letter-spacing:-0.02em; }
.sc-pipeline { display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,0.07);border-radius:var(--radius-sm);overflow:hidden;margin:0.85rem 0; }
.sc-stage { background:rgba(255,255,255,0.025);padding:0.6rem 0.3rem;text-align:center; }
.sc-stage-num { font-size:1.4rem;font-weight:800;color:var(--text);line-height:1; }
.sc-stage-lbl { font-size:0.58rem;color:var(--text-3);margin-top:3px;text-transform:uppercase;letter-spacing:0.05em; }
.sc-stage--closed .sc-stage-num { color:#FBC353; }
.sc-seq-row { display:flex;align-items:center;gap:0.5rem; }
.sc-seq-icon { width:28px;height:28px;border-radius:7px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.sc-card-header { display:flex;align-items:center;gap:0.5rem;padding:1rem 1.5rem 0.85rem;border-bottom:1px solid rgba(255,255,255,0.07);flex-shrink:0; }
.sc-card-header-icon { width:27px;height:27px;border-radius:7px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.sc-card-header-label { font-size:0.62rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--text-3);flex:1; }
.sc-card-body { padding:1.3rem 1.5rem;flex:1; }
.sc-card-footer { padding:0.7rem 1.5rem 0.9rem;border-top:1px solid rgba(255,255,255,0.05);display:flex;align-items:center;gap:0.4rem;font-size:0.65rem;color:var(--text-3);letter-spacing:0.02em;flex-shrink:0; }

/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */
.clients-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.clients-section::before,
.clients-section::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.clients-section::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.clients-section::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.clients-label { text-align:center;font-size:0.72rem;font-weight:500;text-transform:uppercase;letter-spacing:0.1em;color:var(--text-3);margin-bottom:1rem; }
.marquee-track { display:flex;width:max-content;animation:marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state:paused; }
.clients-logo-strip { height:40px;width:auto;flex-shrink:0;object-fit:contain;opacity:0.55;filter:grayscale(1) brightness(1.2);transition:opacity 0.3s,filter 0.3s; }
.clients-logo-strip:hover { opacity:0.85;filter:grayscale(0.2) brightness(1.2); }
/* Legacy text items (fallback) */
.marquee-item { display:flex;align-items:center;padding:0 2.5rem;font-size:0.9rem;font-weight:600;color:var(--text-3);letter-spacing:0.03em;transition:color 0.2s;white-space:nowrap;gap:2.5rem; }
.marquee-item::after { content:'·';color:var(--text-3);font-size:1.2rem; }
.marquee-item:last-child::after { display:none; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================================
   PROBLEMA
   ============================================================ */
.problema-section { background: var(--surface); }
.problema-layout { display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,7rem);align-items:start; }
.problema-quote { padding:1.5rem 1.75rem;border-left:3px solid var(--accent);background:var(--accent-dim);border-radius:0 var(--radius-md) var(--radius-md) 0;margin-top:1.75rem; }
.problema-quote p { font-size:1rem;color:var(--text);font-weight:500;line-height:1.6; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.sistema-layout { display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,6rem);align-items:start; }
.sistema-sticky { position:sticky;top:6rem; }
.sistema-sticky .body-text { margin-top:1.25rem; }
.sistema-idea { margin-top:2rem;padding:1.25rem 1.5rem;background:var(--accent-dim);border:1px solid var(--border-2);border-radius:var(--radius-md);font-size:1.05rem;color:var(--text);line-height:1.55;font-weight:500; }
.sistema-idea em { color:var(--accent-2);font-style:italic; }
.sistema-steps { display:flex;flex-direction:column;gap:0; }
.step { display:flex;gap:1.5rem;padding:2rem 0;border-bottom:1px solid var(--border);transition:opacity 0.3s; }
.step:first-child { border-top:1px solid var(--border); }
.step-num { font-size:0.7rem;font-weight:800;color:var(--accent);letter-spacing:0.08em;padding-top:0.35rem;flex-shrink:0;width:28px; }
.step-content .h3 { margin-bottom:0.6rem; }
.step-content p { font-size:0.97rem;color:var(--text-2);line-height:1.65; }

/* ============================================================
   PRECIOS
   ============================================================ */
.precios-head { display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:end;margin-bottom:3rem; }
.precios-grid { display:grid;grid-template-columns:3fr 2fr 2fr;grid-template-rows:auto auto;gap:1rem; }
.precio-featured { grid-column:1;grid-row:1;padding:2rem; }
.precio-badge { display:inline-block;padding:0.3rem 0.85rem;background:var(--accent);color:#07101F;border-radius:var(--radius-pill);font-size:0.72rem;font-weight:700;letter-spacing:0.04em;margin-bottom:1.25rem; }
.precio-badge--premium { background:linear-gradient(135deg,#c8a23a,#e8c060);color:#1a1200; }
.precio-name { font-size:1.2rem;font-weight:700;margin-bottom:0.35rem; }
.precio-desc { font-size:0.88rem;color:var(--text-2);margin-bottom:1.5rem;line-height:1.55; }
.precio-amount-wrap { display:flex;align-items:baseline;gap:0.4rem;margin-bottom:0.4rem; }
.precio-amount { font-size:2.6rem;font-weight:800;letter-spacing:-0.04em;color:var(--text); }
.precio-period { font-size:0.85rem;color:var(--text-2);font-weight:400; }
.precio-monthly { font-size:1rem;color:var(--accent-2);font-weight:600;margin-bottom:1.5rem; }
.precio-monthly span { font-size:0.85rem;font-weight:400;color:var(--text-2); }
.precio-features { display:flex;flex-direction:column;gap:0.65rem;margin-bottom:1.75rem; }
.precio-features li { display:flex;align-items:center;gap:0.6rem;font-size:0.9rem;color:var(--text-2); }
.precio-features li::before {
  content:'';width:16px;height:16px;background:var(--accent-dim);border:1px solid var(--border-2);border-radius:50%;flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1.5' stroke='%23FF9901' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;background-size:10px;
}
.precio-addon { grid-row:1;padding:1.75rem;display:flex;flex-direction:column; }
.precio-addon:nth-child(2) { grid-column:2; }
.precio-addon:nth-child(3) { grid-column:3; }
.addon-label { display:inline-block;font-size:0.68rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-3);margin-bottom:0.85rem; }
.precio-addon .precio-amount { font-size:2.2rem; }
.precio-addon .btn { margin-top:auto; }
.precio-addon .precio-features { flex:1; }
.precio-premium { grid-column:1/-1;grid-row:2;background:linear-gradient(135deg,#0a1830 0%,#101f38 50%,#0c1828 100%);border-color:rgba(200,162,58,0.25);padding:2rem 2.5rem; }
.precio-premium::before { background:linear-gradient(135deg,rgba(200,162,58,0.05) 0%,transparent 50%); }
.premium-inner { display:grid;grid-template-columns:1fr auto;gap:2rem;align-items:center; }
.premium-price-col { text-align:right; }
.premium-from { font-size:0.8rem;color:var(--text-3);margin-bottom:0.2rem; }
.premium-price-col .precio-amount { color:#e8c060; }
.premium-price-col .precio-monthly { text-align:right; }

/* ============================================================
   BENEFICIOS BENTO
   ============================================================ */
.beneficios-head { margin-bottom:3rem; }
.beneficios-grid { display:grid;grid-template-columns:3fr 2fr;gap:1rem; }
.beneficio-card { padding:2.25rem; }
.beneficio-img { grid-column:1;grid-row:1;min-height:300px;position:relative;overflow:hidden; }
.beneficio-img img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:grayscale(0.4) contrast(1.1);opacity:0.35; }
.beneficio-img .beneficio-content { position:relative;z-index:1;height:100%;display:flex;flex-direction:column;justify-content:flex-end; }
.beneficio-img .h3 { font-size:1.6rem;font-weight:700; }
.beneficio-text { grid-column:2;grid-row:1; }
.beneficio-icon-card { grid-column:1;grid-row:2; }
.beneficio-accent { grid-column:2;grid-row:2;background:linear-gradient(135deg,#FF9901 0%,#cc6a00 100%);border-color:rgba(255,153,1,0.3); }
.beneficio-accent::before { display:none; }
.beneficio-accent .h3 { color:#fff; }
.beneficio-accent p { color:rgba(255,255,255,0.75); }
.beneficio-accent .big-icon { color:rgba(255,255,255,0.15);font-size:5rem;font-weight:900;line-height:1;margin-bottom:1rem; }
.beneficio-icon { width:44px;height:44px;background:var(--accent-dim);border:1px solid var(--border-2);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;color:var(--accent-2); }

/* ============================================================
   PARA QUIEN + POR QUE
   ============================================================ */
.fit-section { background:var(--surface); }
.fit-grid { display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,7rem); }
.fit-list { display:flex;flex-direction:column;gap:0;margin-top:2rem; }
.fit-list li { display:flex;align-items:center;gap:0.75rem;padding:0.9rem 0;border-bottom:1px solid var(--border);font-size:0.97rem;color:var(--text-2);transition:color 0.2s; }
.fit-list li::before { content:'';width:6px;height:6px;background:var(--accent);border-radius:50%;flex-shrink:0; }
.fit-list li:hover { color:var(--text); }
.why-items { display:flex;flex-direction:column;gap:1.25rem;margin-top:2rem; }
.why-item { padding:1.25rem 1.5rem;background:var(--surface-2);border:1px solid var(--border);border-radius:var(--radius-md);font-size:0.97rem;color:var(--text-2);line-height:1.6;transition:border-color 0.2s,transform 0.2s; }
.why-item:hover { border-color:var(--border-2);transform:translateX(4px);color:var(--text); }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios-head { margin-bottom:3rem; }
.testimonios-grid { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
.testimonios-col { display:flex;flex-direction:column;gap:1rem; }
.testimonios-col--right { margin-top:2rem; }
.testimonio { padding:2rem;display:flex;flex-direction:column;gap:1.5rem; }
.testimonio-quote { font-size:1rem;color:var(--text-2);line-height:1.7;font-style:italic;position:relative;flex:1; }
.testimonio-quote::before { content:'\201C';font-size:3rem;line-height:0.8;color:var(--accent);opacity:0.5;display:block;margin-bottom:0.5rem;font-style:normal; }
.testimonio-footer { display:flex;align-items:center;gap:0.85rem; }
.testimonio-avatar { width:42px;height:42px;border-radius:50%;object-fit:cover;border:2px solid var(--border-2);flex-shrink:0; }
.testimonio-name { font-size:0.9rem;font-weight:700;color:var(--text); }
.testimonio-role { font-size:0.78rem;color:var(--text-3); }
.testimonio-stars { display:flex;gap:3px;margin-bottom:0.5rem; }
.star { width:12px;height:12px;background:#FFC353;clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .precios-grid { grid-template-columns:1fr 1fr;grid-template-rows:auto auto auto; }
  .precio-featured { grid-column:1/-1;grid-row:1; }
  .precio-addon:nth-child(2) { grid-column:1;grid-row:2; }
  .precio-addon:nth-child(3) { grid-column:2;grid-row:2; }
  .precio-premium { grid-column:1/-1;grid-row:3; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .problema-layout, .sistema-layout, .fit-grid { grid-template-columns:1fr;gap:2.5rem; }
  .sistema-sticky { position:static; }
  .precios-head { grid-template-columns:1fr;gap:1rem; }
  .precios-grid { grid-template-columns:1fr;grid-template-rows:none;gap:0.85rem; }
  .precio-featured, .precio-addon, .precio-addon:nth-child(2), .precio-addon:nth-child(3), .precio-premium { grid-column:1;grid-row:auto; }
  .precio-featured { padding:1.5rem; }
  .precio-premium { padding:1.5rem; }
  .premium-inner { grid-template-columns:1fr;gap:1.5rem; }
  .premium-price-col { text-align:left; }
  .premium-price-col .precio-monthly { text-align:left; }
  .premium-price-col .precio-amount-wrap { justify-content:flex-start; }
  .precio-premium .precio-features { grid-template-columns:1fr!important; }
  .precio-addon { padding:1.4rem;display:flex;flex-direction:column; }
  .beneficios-grid { grid-template-columns:1fr; }
  .beneficio-img, .beneficio-text, .beneficio-icon-card, .beneficio-accent { grid-column:1;grid-row:auto; }
  .beneficio-img { min-height:240px; }
  .testimonios-grid { grid-template-columns:1fr; }
  .testimonios-col--right { margin-top:0; }
  .hero-cta-group { flex-direction:column;align-items:flex-start; }
  .hero-cta-group .btn { width:100%;justify-content:center; }
}
@media (max-width: 600px) {
  .precio-addon { padding:1.25rem; }
  .precio-addon .precio-amount { font-size:2rem; }
  .precio-amount { font-size:2.2rem; }
  .premium-inner { gap:1.25rem; }
}
@media (max-width: 480px) {
  .badge { font-size:0.7rem; }
  .precios-head { gap:0.75rem; }
  .precio-amount { font-size:2rem; }
  .precio-featured { padding:1.25rem; }
  .precio-premium { padding:1.25rem; }
  .precio-features { gap:0.5rem; }
  .precio-features li { font-size:0.85rem; }
  .card-stack { width:340px; }
  .hero-service-card { width:325px; }
}

/* ---- UTILITY ---- */
.mt-sm { margin-top:0.75rem; }
.mt-md { margin-top:1.25rem; }
.mt-lg { margin-top:2rem; }
.text-muted { color:var(--text-2); }

/* ============================================================
   NAV  (2.0)
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.4s var(--transition), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,16,31,0.72); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; }
.nav-mark {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--accent), #c46f00);
  display: grid; place-items: center; color: #07101F; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 0 18px var(--accent-glow);
}
.brand-logo { height: 34px; width: auto; display: block; }
.footer-brand .brand-logo { height: 44px; }
/* El logo nunca se comprime ni deforma */
.nav-brand { flex: 0 0 auto; }
.brand-logo { flex: none; }
/* Etiqueta corta del CTA del nav: oculta en escritorio */
.nav-cta-sm { display: none; }
@media (max-width: 600px) {
  .brand-logo { height: 28px; }
  .nav-actions { gap: 0.5rem; }
  /* CTA compacto en móvil: menos padding, menos fuente, sin icono y texto corto */
  .nav-actions .nav-cta { padding: 0.5rem 0.85rem; font-size: 0.8rem; gap: 0; }
  .nav-actions .nav-cta .btn-icon { display: none; }
  .nav-cta-lg { display: none; }
  .nav-cta-sm { display: inline; }
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text-2); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-ghost { display: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav { background: rgba(7,16,31,0.96); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
  body.nav-open .nav-links {
    display: flex; flex-direction: column; gap: 1.1rem;
    position: absolute; top: 76px; left: 0; right: 0;
    padding: 1.75rem clamp(1.25rem, 5vw, 4rem) 2.25rem;
    background: rgba(7,16,31,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
  }
  body.nav-open .nav-links a { font-size: 1.15rem; color: var(--text); }
  .nav-toggle span { transition: transform 0.3s var(--transition), opacity 0.2s; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Hero micro trust row (2.0) */
.hero-trust { display: flex; align-items: center; gap: 1.25rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: var(--text-2); }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.hero-trust-sep { width: 1px; height: 16px; background: var(--border-2); }

/* ============================================================
   HERO 2.0  — kinetic + live product demo
   ============================================================ */
.hero-2 {
  position: relative; min-height: 100dvh; display: flex; align-items: center;
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(4rem, 6vw, 6rem); overflow: hidden;
}
.hero-2-grid {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero-2-copy { max-width: 640px; }

/* Kinetic headline */
.kinetic { font-size: clamp(2.9rem, 6vw, 5.6rem); font-weight: 800; line-height: 1.02;
  letter-spacing: -0.03em; color: var(--text); }
.kinetic .line { display: block; overflow: hidden; }
.kinetic .word { display: inline-block; white-space: nowrap; margin-right: 0.22em; }
.kinetic .char { display: inline-block; will-change: transform; }
.kinetic .accent { color: var(--accent-2); font-style: italic; }
.kinetic .accent .char { position: relative; }

.hero-2 .body-text { margin-top: 1.75rem; opacity: 0; }
.hero-2 .hero-cta-group { opacity: 0; }
.hero-2 .hero-trust { opacity: 0; }

/* ---------- LIVE DEMO STAGE ---------- */
.hx-stage {
  position: relative; width: 100%; height: clamp(440px, 52vw, 600px);
  perspective: 1400px; will-change: transform;
}
.hx-layer { position: absolute; will-change: transform; }

/* connecting glow line */
.hx-thread { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: visible; }
.hx-thread path { fill: none; stroke: url(#hxgrad); stroke-width: 1.5; stroke-dasharray: 6 8; opacity: 0.5; }
.hx-spark {
  position: absolute; width: 12px; height: 12px; border-radius: 50%; z-index: 6;
  background: var(--accent); box-shadow: 0 0 16px 4px var(--accent-glow), 0 0 4px #fff inset;
  opacity: 0;
}

/* base: dashboard card */
.hx-dashboard {
  top: 8%; right: 0; width: min(380px, 92%); z-index: 2;
  background: linear-gradient(165deg, var(--surface) 0%, #0a1626 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 50px 90px -34px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.hx-dash-top { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.012); }
.hx-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-3); }
.hx-dot.g { background: #27c93f; } .hx-dot.y { background: #ffbd2e; } .hx-dot.r { background: #ff5f56; }
.hx-dash-url { margin-left: auto; font-size: .72rem; color: var(--text-3); }
.hx-dash-body { padding: 20px 20px 22px; }
.hx-dash-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-2); font-weight: 600; }
.hx-dash-num { font-size: 3.3rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--accent); margin-top: 6px; }
.hx-dash-num small { font-size: 1rem; color: var(--text-2); font-weight: 600; letter-spacing: 0; margin-left: .35rem; }
.hx-spark-bars { display: flex; align-items: flex-end; gap: 5px; height: 40px; margin-top: 16px; }
.hx-spark-bars b { flex: 1; border-radius: 3px 3px 0 0; background: var(--accent-dim); display: block; transform-origin: bottom; }
.hx-spark-bars b.hi { background: var(--accent); }
.hx-leadlist { margin-top: 18px; border-top: 1px solid var(--border); padding-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.hx-lead { display: flex; align-items: center; gap: 10px; }
.hx-lead .av { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: .74rem; font-weight: 700; color: #07101F; }
.hx-lead .nm { font-size: .84rem; font-weight: 600; }
.hx-lead .mt { font-size: .7rem; color: var(--text-3); }
.hx-lead .tag { margin-left: auto; font-size: .66rem; font-weight: 700; padding: 4px 9px; border-radius: var(--radius-pill); background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border-2); }
.hx-lead.fresh { opacity: 0; }

/* form chip (top-left) */
.hx-form {
  top: 0; left: 2%; width: min(220px, 60%); z-index: 3;
  background: linear-gradient(165deg, #0d1e35, #091628);
  border: 1px solid var(--border-2); border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -26px rgba(0,0,0,.7); padding: 14px 15px;
}
.hx-form .ico { width: 26px; height: 26px; border-radius: 7px; background: rgba(74,222,128,.14); display: grid; place-items: center; margin-bottom: 10px; }
.hx-form .ttl { font-size: .82rem; font-weight: 700; }
.hx-field { height: 9px; border-radius: 4px; background: rgba(255,255,255,.06); margin-top: 9px; overflow: hidden; position: relative; }
.hx-field i { position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, rgba(74,222,128,.5), rgba(74,222,128,.2)); border-radius: 4px; display: block; }
.hx-submit { margin-top: 12px; height: 30px; border-radius: 8px; background: var(--accent); color: #07101F; font-size: .74rem; font-weight: 700; display: grid; place-items: center; position: relative; }
.hx-cursor { position: absolute; width: 18px; height: 18px; right: -4px; bottom: -6px; z-index: 4; opacity: 0; }
.hx-cursor svg { filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.hx-click-ring { position: absolute; right: 4px; bottom: 2px; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; }

/* phone (bottom-left) */
.hx-phone {
  bottom: 0; left: 0; width: min(210px, 54%); z-index: 5;
  border-radius: 30px; background: #05080f; padding: 8px;
  border: 1px solid rgba(255,255,255,.08); transform: rotate(-7deg);
  box-shadow: 0 50px 80px -30px rgba(0,0,0,.8), 0 0 50px -12px var(--accent-glow);
}
.hx-phone-screen { border-radius: 23px; background: linear-gradient(180deg, #0a1626, #07101F); height: 260px; overflow: hidden; position: relative; }
.hx-phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 70px; height: 16px; background: #05080f; border-radius: 999px; z-index: 4; }
.hx-phone-time { text-align: center; padding-top: 30px; }
.hx-phone-time .t { font-size: 2.1rem; font-weight: 300; line-height: 1; }
.hx-phone-time .d { font-size: .66rem; color: var(--text-2); margin-top: 2px; }
.hx-notif {
  margin: 18px 10px 0; padding: 11px 11px; border-radius: 15px;
  background: rgba(255,153,1,.12); border: 1px solid var(--border-2);
  backdrop-filter: blur(12px); display: flex; gap: 9px; opacity: 0;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.7);
}
.hx-notif .ai { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #c46f00); color: #07101F; font-weight: 800; box-shadow: 0 0 14px var(--accent-glow); }
.hx-notif .ap { font-size: .6rem; font-weight: 700; letter-spacing: .04em; color: var(--text-2); }
.hx-notif .ti { font-size: .74rem; font-weight: 700; margin-top: 1px; }
.hx-notif .ms { font-size: .66rem; color: var(--text-2); line-height: 1.3; margin-top: 1px; }
.hx-notif .ms b { color: var(--text); }

@media (max-width: 880px) {
  .hero-2-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hx-stage { height: 460px; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hx-stage { height: 400px; }
  .hx-dashboard { width: 86%; } .hx-phone { width: 50%; } .hx-form { width: 56%; }
}

/* ============================================================
   HERO CINE  — pin + scrub, tipografía gigante Clash Display
   ============================================================ */
.cine { position: relative; height: 360vh; z-index: 1; }
.cine-pin { position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center; }

/* fondo */
.cine-bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,153,1,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(255,153,1,0.07), transparent 55%);
}
.cine-grid { position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,153,1,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,153,1,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
}

.cine-stage { position: relative; z-index: 2; width: 100%; max-width: 1500px;
  height: 100vh; padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center; }

/* TITULAR — centrado (h+v) antes del scroll */
.cine-head { will-change: transform; transform-origin: left top;
  width: fit-content; max-width: 100%; margin: 0 auto; text-align: center; }
/* al hacer scroll y desplazarse a la izquierda, el texto se alinea a la izquierda */
.cine-head.is-left { text-align: left; }
.cine-badge { margin-bottom: 1.6rem; }
.cine-line { font-family: 'Clash Display', 'Outfit', sans-serif;
  font-weight: 600; font-size: clamp(2.6rem, 11.3vw, 11rem);
  line-height: 1.0; letter-spacing: -0.035em; text-transform: uppercase;
  overflow: hidden;
  /* palabras siempre enteras: nunca parte una palabra ni una letra */
  white-space: nowrap; word-break: keep-all; overflow-wrap: normal; hyphens: none; }
.cine-line > span { display: inline-block; will-change: transform; }

/* rotador de palabra */
.cine-rot-line { overflow: visible; }
.cine-rotator { display: inline-block; height: 0.9em; overflow: hidden; vertical-align: bottom; }
.rot-track { display: flex; flex-direction: column; align-items: flex-start; will-change: transform; }
.rot { display: block; height: 0.9em; line-height: 0.9em; color: var(--accent); white-space: nowrap;
  background: linear-gradient(180deg, #FFB340, #FF9901); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent; }

/* sublínea + cta (ocultos al inicio) — columna izquierda, bajo el titular ya encogido */
.cine-tail { position: absolute; left: clamp(1.25rem, 5vw, 4rem); top: 49vh;
  max-width: 460px; opacity: 0; z-index: 6; }
.cine-sub { font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--text-2); line-height: 1.6; margin-bottom: 1.75rem; }

/* DEMO */
.cine-demo { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.cine-phone {
  position: absolute; right: clamp(220px, 24vw, 320px); top: 50%; margin-top: -158px;
  width: clamp(190px, 18vw, 232px); z-index: 2;
  border-radius: 32px; background: #05080f; padding: 8px; opacity: 0;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 50px 90px -28px rgba(0,0,0,.85), 0 0 60px -10px var(--accent-glow);
}
.cine-phone-screen { border-radius: 24px; background: linear-gradient(180deg,#0a1626,#07101F); height: 300px; overflow: hidden; position: relative; }
.cine-phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 76px; height: 17px; background: #05080f; border-radius: 999px; z-index: 4; }
.cine-phone-time { text-align: center; padding-top: 34px; }
.cine-phone-time .t { font-size: 2.4rem; font-weight: 300; line-height: 1; }
.cine-phone-time .d { font-size: .68rem; color: var(--text-2); margin-top: 3px; }
.cine-notif { margin: 22px 11px 0; padding: 12px; border-radius: 16px; display: flex; gap: 10px; opacity: 0;
  background: rgba(255,153,1,.13); border: 1px solid var(--border-2); backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px -12px rgba(0,0,0,.7); }
.cine-notif .ai { width: 32px; height: 32px; border-radius: 9px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #c46f00); color: #07101F; font-weight: 800;
  box-shadow: 0 0 14px var(--accent-glow); }
.cine-notif .ap { font-size: .6rem; font-weight: 700; letter-spacing: .04em; color: var(--text-2); }
.cine-notif .ti { font-size: .78rem; font-weight: 700; margin-top: 1px; }
.cine-notif .ms { font-size: .68rem; color: var(--text-2); line-height: 1.3; margin-top: 1px; }
.cine-notif .ms b { color: var(--text); }

.cine-dash {
  position: absolute; right: clamp(1.25rem, 5vw, 4rem); top: 50%; margin-top: -112px;
  width: clamp(300px, 30vw, 380px);
  background: linear-gradient(165deg, var(--surface), #0a1626); opacity: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 50px 90px -32px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.04); overflow: hidden;
}
.cine-dash-top { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.cine-dash-top .d { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-3); }
.cine-dash-top .d.r{background:#ff5f56}.cine-dash-top .d.y{background:#ffbd2e}.cine-dash-top .d.g{background:#27c93f}
.cine-dash-top .u { margin-left: auto; font-size: .72rem; color: var(--text-3); }
.cine-dash-body { padding: 20px; }
.cine-dash-body .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-2); font-weight: 600; }
.cine-dash-body .num { font-size: 3.6rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--accent); margin-top: 6px; }
.cine-dash-body .bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; margin-top: 18px; }
.cine-dash-body .bars b { flex: 1; border-radius: 3px 3px 0 0; background: var(--accent-dim); height: var(--h); transform: scaleY(0); transform-origin: bottom; }
.cine-dash-body .bars b.hi { background: var(--accent); }

/* hint */
.cine-hint { position: absolute; bottom: 4vh; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-3); }
.cine-hint .wheel { animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(4px);opacity:.3} }

/* fallback sin motion */
.no-motion .cine { height: auto; }
.no-motion .cine-pin { position: relative; height: auto; min-height: 100vh; padding: 14vh 0; }
.no-motion .cine-stage { height: auto; padding-top: 0; }
.no-motion .cine-tail { position: static; opacity: 1; margin-top: 2.5rem; max-width: none; }
.no-motion .cine-demo, .no-motion .cine-hint { display: none; }

@media (max-width: 880px) {
  .cine-stage { height: auto; padding-top: 0; }
  .cine-tail { position: static; opacity: 1; margin-top: 2.5rem; max-width: none; }
  .cine-demo { display: none; }
  .cine { height: auto; }
  .cine-pin { position: relative; height: auto; min-height: 100vh; padding: 16vh 0 8vh; }
  .cine-hint { display: none; }
}

/* ============================================================
   2.0 SECCIONES — helpers comunes
   ============================================================ */
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.84rem; }
.btn-sm .btn-icon { width: 22px; height: 22px; background: var(--accent-dim); border-radius: 50%; display: grid; place-items: center; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }

.sec-head { max-width: 720px; margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.sec-head .h2 { margin-top: 0.6rem; }
.sec-head .body-text { margin-top: 1.35rem; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.body-text--center { margin-left: auto; margin-right: auto; }

/* scroll reveal con blur (premium) */
[data-reveal] { filter: blur(6px); }
[data-reveal].revealed { filter: blur(0); }

/* ============================================================
   TIRA DE SECTORES
   ============================================================ */
.sectors { padding: clamp(2.5rem, 5vw, 3.5rem) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sectors-label { text-align: center; font-size: 0.82rem; color: var(--text-3); letter-spacing: 0.02em; margin-bottom: 1.75rem; }
.sectors-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.sector-chip {
  font-size: 0.86rem; font-weight: 500; color: var(--text-2);
  padding: 0.5rem 1.1rem; border: 1px solid var(--border); border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.015); transition: color 0.3s var(--transition), border-color 0.3s, transform 0.3s var(--transition);
}
.sector-chip:hover { color: var(--text); border-color: var(--border-2); transform: translateY(-2px); }

/* ============================================================
   2 · PROBLEMA
   ============================================================ */
.sec-problem { position: relative; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.problem-title { font-family: 'Clash Display', 'Outfit', sans-serif; }
.problem-title em { font-style: normal; color: var(--accent-2); }
.sec-problem .body-text { margin-top: 1.5rem; }
.sec-problem .body-text strong { color: var(--text); font-weight: 600; }
.problem-sting { display: flex; gap: 1rem; margin-top: 2rem; align-items: stretch; }
.problem-sting-bar { width: 3px; border-radius: 3px; background: linear-gradient(var(--accent), transparent); flex: none; }
.problem-sting p { font-size: 1.15rem; font-weight: 500; color: var(--text); line-height: 1.5; }

.problem-leaks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.leak-card {
  padding: 1.6rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface), rgba(12,25,41,0.4));
  transition: transform 0.4s var(--transition), border-color 0.4s, box-shadow 0.4s;
}
.leak-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 18px 50px -24px rgba(0,0,0,0.7); }
.leak-card:nth-child(even) { transform: translateY(1.75rem); }
.leak-card:nth-child(even):hover { transform: translateY(calc(1.75rem - 4px)); }
.leak-ico { width: 42px; height: 42px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: var(--accent-dim); border: 1px solid var(--border-2); color: var(--accent-2); margin-bottom: 1.1rem; }
.leak-ico svg { width: 21px; height: 21px; }
.leak-card .h3 { margin-bottom: 0.4rem; }
.leak-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }

/* ============================================================
   3 · CÓMO FUNCIONA (sticky scroll)
   ============================================================ */
.how-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 6vw, 6rem); align-items: stretch; }
.how-stage-col { position: relative; }
.how-stage {
  position: sticky; top: 16vh; height: 66vh; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255,153,1,0.06), transparent 60%), linear-gradient(165deg, var(--surface), #0a1626);
  display: grid; place-items: center; padding: 2rem;
}
.how-progress { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: rgba(255,255,255,0.05); z-index: 4; }
.how-progress i { display: block; width: 100%; height: 0%; background: linear-gradient(var(--accent), var(--accent-2)); box-shadow: 0 0 12px var(--accent-glow); }
.how-visual { position: absolute; inset: 0; display: grid; place-items: center; padding: 2.5rem;
  opacity: 0; transform: translateY(24px) scale(0.95); pointer-events: none;
  transition: opacity 0.55s var(--transition), transform 0.55s var(--transition); }
.how-visual.is-on { opacity: 1; transform: none; }

/* visual 1: browser */
.hv-browser { width: 100%; max-width: 360px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-2); background: #081322; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7); }
.hv-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.hv-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-3); }
.hv-bar span { margin-left: auto; font-size: 0.7rem; color: var(--text-3); }
.hv-screen { padding: 22px; }
.hv-hero { height: 64px; border-radius: 8px; background: linear-gradient(120deg, var(--accent-dim), transparent); border: 1px solid var(--border); margin-bottom: 14px; }
.hv-line { height: 9px; border-radius: 4px; background: rgba(255,255,255,0.08); margin-bottom: 9px; }
.hv-line.w70 { width: 70%; } .hv-line.w40 { width: 40%; }
.hv-cta { margin-top: 16px; display: inline-block; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--accent); color: #07101F; font-size: 0.78rem; font-weight: 700; }
/* visual 2: form */
.hv-form { width: 100%; max-width: 300px; padding: 22px; border-radius: var(--radius-md); border: 1px solid var(--border-2); background: linear-gradient(165deg, #0d1e35, #091628); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7); }
.hv-form-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); }
.hv-input { height: 38px; border-radius: 9px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); margin-top: 12px; display: flex; align-items: center; padding: 0 12px; }
.hv-input i { display: block; height: 8px; border-radius: 4px; background: rgba(122,152,192,0.4); }
.hv-submit { margin-top: 16px; height: 42px; border-radius: 10px; background: var(--accent); color: #07101F; font-weight: 700; font-size: 0.86rem; display: flex; align-items: center; justify-content: center; gap: 6px; }
/* visual 3: panel + phone */
.hv-panel { width: 100%; max-width: 320px; border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; background: linear-gradient(165deg, var(--surface), #0a1626); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7); }
.hv-panel-top { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--border); font-size: 0.7rem; color: var(--text-3); }
.hv-panel-top span:last-child { margin-left: auto; }
.hv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-3); }
.hv-panel-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid rgba(255,153,1,0.06); }
.hv-panel-row:last-child { border-bottom: 0; }
.hv-av { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; color: #07101F; background: linear-gradient(135deg, var(--accent), #c46f00); flex: none; }
.hv-av.g { background: linear-gradient(135deg, #25D366, #075E54); color: #fff; }
.hv-nm { font-size: 0.84rem; font-weight: 600; }
.hv-tag { margin-left: auto; font-size: 0.66rem; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill); background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border-2); }
.hv-phone { position: absolute; right: 6%; bottom: 8%; width: 180px; border-radius: 18px; border: 1px solid var(--border-2); background: rgba(5,8,15,0.9); backdrop-filter: blur(8px); padding: 14px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8), 0 0 40px -12px var(--accent-glow); transform: rotate(3deg); }
.hv-phone-dot { width: 40px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.15); margin: 0 auto 10px; }
.hv-phone-notif { font-size: 0.74rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.hv-bell { display: inline-block; margin-right: 2px; }

.how-steps { display: flex; flex-direction: column; gap: clamp(6vh, 12vh, 16vh); padding: 12vh 0; }
.how-step { border-left: 2px solid var(--border); padding-left: 1.75rem; opacity: 0.35; transition: opacity 0.45s var(--transition), border-color 0.45s; }
.how-step.is-active { opacity: 1; border-color: var(--accent); }
.how-step-num { font-family: 'Clash Display', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--accent); letter-spacing: 0.08em; display: block; margin-bottom: 0.6rem; }
.how-step .h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 0.55rem; }
.how-step p { color: var(--text-2); font-size: 1rem; line-height: 1.6; max-width: 42ch; }

/* ============================================================
   4 · NOTIFICACIÓN — móvil
   ============================================================ */
.sec-notify { position: relative; overflow: hidden; }
.notify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.notify-copy .h2 em { font-style: normal; color: var(--accent-2); }
.notify-copy .body-text { margin-top: 1.5rem; }
.notify-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.notify-points li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: var(--text); font-weight: 500; }
.notify-points svg { width: 18px; height: 18px; color: var(--accent); flex: none; padding: 3px; background: var(--accent-dim); border-radius: 50%; box-sizing: content-box; }

.notify-phone-wrap { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.notify-glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--accent-glow), transparent 65%); filter: blur(50px); opacity: 0.6; z-index: 0; }
.phone {
  position: relative; z-index: 1; width: 290px; height: 590px; border-radius: 46px; background: #05080f;
  border: 1px solid rgba(255,255,255,0.08); padding: 13px; flex: none;
  box-shadow: 0 50px 100px -34px rgba(0,0,0,0.85), 0 0 0 2px rgba(255,255,255,0.03), 0 0 70px -14px var(--accent-glow);
}
.phone::after { content: ''; position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 116px; height: 26px; background: #05080f; border-radius: var(--radius-pill); z-index: 5; }
.phone-screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; position: relative; background: linear-gradient(180deg, #0a1626, #07101F 60%); }
.phone-status { display: flex; justify-content: space-between; padding: 16px 24px 8px; font-size: 0.74rem; color: var(--text-2); font-weight: 600; }
.phone-clock { text-align: center; margin-top: 16px; }
.phone-clock .t { font-size: 3.4rem; font-weight: 300; letter-spacing: -0.02em; line-height: 1; }
.phone-clock .d { font-size: 0.86rem; color: var(--text-2); margin-top: 2px; }
.phone-notifs { padding: 22px 14px; display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.pn { display: flex; gap: 12px; padding: 14px 15px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(20,32,52,0.82); backdrop-filter: blur(20px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7); }
.pn-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; background: var(--surface-3); }
.pn-ico svg { width: 24px; height: 24px; }
.pn-ico.wa { background: #25D366; }
.pn-body { flex: 1; min-width: 0; }
.pn-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.pn-app { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em; color: var(--text); }
.pn-when { font-size: 0.68rem; color: var(--text-3); }
.pn-title { font-size: 0.84rem; font-weight: 600; margin-bottom: 1px; }
.pn-msg { font-size: 0.8rem; color: var(--text-2); line-height: 1.35; }
.pn-msg b { color: var(--text); font-weight: 600; }
.pn.notif-brand { background: rgba(255,153,1,0.1); border-color: var(--border-2); }
.pn.notif-brand .pn-ico { background: linear-gradient(135deg, var(--accent), #c46f00); box-shadow: 0 0 16px var(--accent-glow); }
.pn.notif-brand .pn-ico b { color: #07101F; font-weight: 800; font-size: 1.15rem; }

/* ============================================================
   5 · DASHBOARD (portado del mockup, scoped en .dash)
   ============================================================ */
.sec-panel { background: var(--surface); }
.panel-shell { max-width: 1080px; margin: 0 auto; }
.dash { background: linear-gradient(180deg, var(--surface) 0%, #0a1626 100%); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 50px 100px -34px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.02); }
.dash .dash-bar { display: flex; align-items: center; gap: 14px; padding: 16px 22px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.012); }
.dash .dots { display: flex; gap: 7px; }
.dash .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; background: var(--surface-3); }
.dash .dots i:first-child { background: #ff5f56; } .dash .dots i:nth-child(2) { background: #ffbd2e; } .dash .dots i:nth-child(3) { background: #27c93f; }
.dash .dash-url { flex: 1; text-align: center; font-size: 0.8rem; color: var(--text-3); }
.dash .dash-body { display: grid; grid-template-columns: 210px 1fr; min-height: 500px; }
.dash .side { border-right: 1px solid var(--border); padding: 24px 18px; background: rgba(0,0,0,0.15); }
.dash .brand { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.dash .brand-mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), #c46f00); display: grid; place-items: center; font-weight: 800; color: #07101F; font-size: 1rem; box-shadow: 0 0 18px var(--accent-glow); }
.dash .brand-name { font-weight: 700; font-size: 0.98rem; }
.dash .nav-i { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text-2); font-size: 0.88rem; font-weight: 500; margin-bottom: 3px; }
.dash .nav-i.active { background: var(--accent-dim); color: var(--text); border: 1px solid var(--border); }
.dash .nav-i .ico { width: 17px; height: 17px; opacity: 0.8; stroke: currentColor; fill: none; stroke-width: 1.8; }
.dash .nav-i.active .ico { color: var(--accent); opacity: 1; }
.dash .side-foot { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--border); }
.dash .main { padding: 28px 30px; }
.dash .main-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.dash .greet { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.dash .greet span { color: var(--text-3); font-weight: 400; font-size: 0.86rem; display: block; margin-top: 3px; letter-spacing: 0; }
.dash .live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; color: #25D366; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25); padding: 6px 12px; border-radius: var(--radius-pill); font-weight: 600; }
.dash .live i { width: 7px; height: 7px; border-radius: 50%; background: #25D366; display: block; box-shadow: 0 0 8px #25D366; }
.dash .stats { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.dash .stat { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 22px; position: relative; overflow: hidden; }
.dash .stat.feature { background: linear-gradient(135deg, rgba(255,153,1,0.14), rgba(255,153,1,0.03)); border-color: var(--border-2); }
.dash .stat .lbl { font-size: 0.76rem; color: var(--text-2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
.dash .stat .num { font-size: 2.9rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-top: 10px; }
.dash .stat.feature .num { color: var(--accent); }
.dash .stat .num small { font-size: 1rem; font-weight: 600; color: var(--text-2); letter-spacing: 0; }
.dash .stat .delta { font-size: 0.78rem; margin-top: 8px; color: #25D366; font-weight: 600; }
.dash .stat .delta.flat { color: var(--text-3); }
.dash .spark { position: absolute; right: 16px; bottom: 14px; display: flex; align-items: flex-end; gap: 3px; height: 34px; opacity: 0.85; }
.dash .spark b { width: 5px; border-radius: 2px; background: var(--accent); display: block; }
.dash .panel { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.dash .panel-h { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.dash .panel-h h3 { font-size: 0.96rem; font-weight: 600; }
.dash .panel-h a { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.dash .lead-row { display: grid; grid-template-columns: 1.6fr 1.4fr 1fr auto; gap: 12px; align-items: center; padding: 13px 20px; border-bottom: 1px solid rgba(255,153,1,0.06); }
.dash .lead-row:last-child { border-bottom: 0; }
.dash .lead-row.new { background: rgba(255,153,1,0.045); }
.dash .who { display: flex; align-items: center; gap: 11px; }
.dash .av { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 0.82rem; color: #07101F; flex: none; }
.dash .who .nm { font-weight: 600; font-size: 0.88rem; }
.dash .who .src { font-size: 0.74rem; color: var(--text-3); }
.dash .contact { font-size: 0.82rem; color: var(--text-2); }
.dash .time { font-size: 0.78rem; color: var(--text-3); }
.dash .badge { justify-self: end; margin: 0; font-size: 0.72rem; font-weight: 600; padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap; }
.dash .b-new { background: rgba(255,153,1,0.14); color: var(--accent); border: 1px solid var(--border-2); }
.dash .b-call { background: rgba(37,211,102,0.12); color: #25D366; border: 1px solid rgba(37,211,102,0.25); }
.dash .b-book { background: rgba(122,152,192,0.12); color: var(--text-2); border: 1px solid rgba(122,152,192,0.2); }
.panel-foot { text-align: center; margin-top: 1.75rem; font-size: 0.95rem; color: var(--text-2); }
.panel-foot a { color: var(--accent); font-weight: 600; }

/* ============================================================
   6 · CASOS / SHOWCASE
   ============================================================ */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.case-card { grid-column: span 1; }
.case-card--wide { grid-column: 1 / -1; }
.case-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: #081322;
  box-shadow: 0 30px 70px -34px rgba(0,0,0,0.7); transition: box-shadow 0.5s var(--transition), border-color 0.5s; will-change: transform; }
.case-card:hover .case-frame { transform: translateY(-6px); border-color: var(--border-2); box-shadow: 0 40px 90px -34px rgba(0,0,0,0.8); }
.case-bar { display: flex; align-items: center; gap: 6px; padding: 11px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.case-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-3); }
.case-bar span { margin-left: auto; font-size: 0.74rem; color: var(--text-3); }
.case-shot { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(150deg, var(--c1, #1a1430), var(--c2, #3a2358)); display: grid; place-items: center; overflow: hidden; }
.case-card--wide .case-shot { aspect-ratio: 21 / 9; }
.case-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-shot-label { font-family: 'Clash Display', sans-serif; font-size: 1.6rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; }
.case-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0.5rem 0; }
.case-sector { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; }
.case-meta .h3 { margin-top: 0.2rem; }

/* ============================================================
   7 · PRECIO
   ============================================================ */
.price-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.25rem; align-items: stretch; max-width: 1000px; margin: 0 auto; }
.price-main { position: relative; overflow: hidden; padding: clamp(2rem, 4vw, 3rem); border-radius: var(--radius-lg);
  border: 1px solid var(--border-2); background: linear-gradient(165deg, #0d1c33, #0a1424); box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8); }
.price-glow { position: absolute; top: -60px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, var(--accent-glow), transparent 65%); filter: blur(40px); opacity: 0.5; pointer-events: none; }
.price-tag { position: relative; display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); padding: 0.35rem 0.9rem; border: 1px solid var(--border-2); border-radius: var(--radius-pill); background: var(--accent-dim); margin-bottom: 1.75rem; }
.price-amounts { display: flex; align-items: flex-end; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.price-block { display: flex; flex-direction: column; gap: 0.35rem; }
.price-from { font-size: 0.78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.price-big { font-family: 'Clash Display', sans-serif; font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 600; line-height: 1; letter-spacing: -0.02em; color: var(--text); }
.price-big small { font-size: 0.9rem; font-weight: 500; color: var(--text-2); letter-spacing: 0; margin-left: 0.35rem; }
.price-big--accent { color: var(--accent); }
.price-plus { font-size: 1.6rem; color: var(--text-3); padding-bottom: 0.6rem; }
.price-feats { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.price-feats li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: var(--text-2); }
.price-feats li::before { content: ''; width: 18px; height: 18px; flex: none; border-radius: 50%; background: var(--accent-dim); border: 1px solid var(--border-2);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1.5' stroke='%23FF9901' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; }
.price-note { text-align: center; margin-top: 1rem; font-size: 0.8rem; color: var(--text-3); }
.price-grow { padding: clamp(1.75rem, 3vw, 2.25rem); border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface); display: flex; flex-direction: column; }
.price-grow-label { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 1.5rem; }
.grow-item { padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.grow-item .h3 { margin-bottom: 0.4rem; }
.grow-item p { font-size: 0.9rem; color: var(--text-2); line-height: 1.55; margin-bottom: 0.6rem; }
.grow-price { font-size: 0.86rem; font-weight: 700; color: var(--accent-2); }
.grow-foot { font-size: 0.84rem; color: var(--text-3); line-height: 1.5; margin-top: auto; }

/* ============================================================
   8 · FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: stretch; }
.faq-head { position: sticky; top: 8rem; }
.faq-head .h2 { margin: 0.6rem 0 1.35rem; }
.faq-head .body-text { margin-bottom: 1.75rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; transition: border-color 0.3s; }
.faq-item[open] { border-color: var(--border-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.25rem 1.5rem; font-size: 1.02rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; width: 22px; height: 22px; flex: none; border-radius: 50%; border: 1px solid var(--border-2); background: var(--accent-dim);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FFB340' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; transition: transform 0.35s var(--transition); }
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-answer { padding: 0 1.5rem 1.35rem; }
.faq-answer p { font-size: 0.95rem; color: var(--text-2); line-height: 1.65; }

/* ============================================================
   9 · CTA FINAL + FORM
   ============================================================ */
.sec-cta { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 70% 30%, rgba(255,153,1,0.12), transparent 60%); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.cta-title { font-family: 'Clash Display', 'Outfit', sans-serif; }
.cta-title em { font-style: normal; color: var(--accent-2); }
.cta-copy .body-text { margin-top: 1.35rem; }
.cta-trust { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cta-trust li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: var(--text); }
.cta-trust svg { width: 17px; height: 17px; color: var(--accent); flex: none; padding: 3px; background: var(--accent-dim); border-radius: 50%; box-sizing: content-box; }
.cta-form { padding: clamp(1.75rem, 3vw, 2.5rem); border-radius: var(--radius-lg); border: 1px solid var(--border-2);
  background: linear-gradient(165deg, var(--surface), #0a1626); box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8); }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-2); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.form-field input { width: 100%; padding: 0.95rem 1.1rem; border-radius: var(--radius-md); border: 1px solid var(--border);
  background: rgba(255,255,255,0.02); color: var(--text); font-family: 'Outfit', sans-serif; font-size: 0.98rem; transition: border-color 0.3s, background 0.3s; }
.form-field input::placeholder { color: var(--text-3); }
.form-field input:focus { outline: none; border-color: var(--accent); background: rgba(255,153,1,0.04); }
.cta-form .btn { margin-top: 0.5rem; }
.form-legal { margin-top: 1rem; font-size: 0.78rem; color: var(--text-3); line-height: 1.5; text-align: center; }
.form-legal a { color: var(--accent-2); }
.cta-form.is-sent { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; min-height: 320px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.3fr 2fr; gap: clamp(2.5rem, 6vw, 5rem); padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand p { margin-top: 1.25rem; font-size: 0.92rem; color: var(--text-2); line-height: 1.6; max-width: 38ch; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.35rem; }
.footer-col a { font-size: 0.92rem; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; font-size: 0.82rem; color: var(--text-3); }

/* ============================================================
   RESPONSIVE — secciones 2.0
   ============================================================ */
@media (max-width: 980px) {
  .problem-grid, .notify-grid, .cta-grid, .price-wrap, .faq-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .how-stage { position: relative; top: 0; height: 52vh; min-height: 360px; }
  .how-steps { padding: 2rem 0; gap: 1.25rem; }
  .how-step { opacity: 1; }
  .faq-head { position: static; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .problem-leaks { grid-template-columns: 1fr; }
  .leak-card:nth-child(even) { transform: none; }
  .leak-card:nth-child(even):hover { transform: translateY(-4px); }
  .cases-grid { grid-template-columns: 1fr; }
  .dash .dash-body { grid-template-columns: 1fr; }
  .dash .side { display: none; }
  .dash .stats { grid-template-columns: 1fr 1fr; }
  .dash .stat.feature { grid-column: 1 / -1; }
  .dash .lead-row { grid-template-columns: 1.4fr 1fr auto; }
  .dash .contact { display: none; }
  .price-amounts { gap: 0.75rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .notify-phone-wrap { min-height: 480px; }
  .phone { width: 250px; height: 510px; }
  .dash .stats { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .how-step { opacity: 1 !important; }
  .how-visual { transition: none; }
}
