:root {
    --slate-950: #1a1410;
    --slate-900: #2D2520;
    --slate-800: #3D3330;
    --slate-700: #5A4D45;
    --slate-400: #A89888;
    --stone-100: #F0EAE0;
    --stone-200: #E5DDD3;
    --stone-50: #F3EDE4;
    --white: #FFFFFF;
    --text: #2D3436;
    --text-secondary: #636e72;
    --text-muted: #A8A29E;
    --coral: #E85D3A;
    --coral-dark: #C74A2A;
    --coral-light: rgba(232, 93, 58, 0.08);
    --coral-glow: rgba(232, 93, 58, 0.15);
    --accent-light: #F4A89B;
    --gold: #B45309;
    --gold-hover: #92400E;
    --gold-light: rgba(180, 83, 9, 0.08);
    --gold-glow: rgba(180, 83, 9, 0.2);
    --green: #2ECC71;
    --warn: #F39C12;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    background: var(--stone-50);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--coral); text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════ NAV ═══════════════════ */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 0;
    background: rgba(243, 237, 228, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1140px; margin: 0 auto;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 20px; font-weight: 700; color: var(--text);
    text-decoration: none; letter-spacing: -0.3px;
}
.logo-seal {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    color: var(--text-secondary); font-size: 14px; font-weight: 500;
    text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    background: var(--coral) !important; color: #fff !important;
    padding: 8px 20px; border-radius: 8px; font-weight: 600 !important;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--coral-dark) !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    position: relative;
    background: linear-gradient(165deg, var(--slate-950) 0%, #1F1510 40%, #2A1A12 100%);
    padding: 140px 24px 100px;
    overflow: hidden;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}
.hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,93,58,0.12) 0%, transparent 65%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.hero-inner {
    max-width: 1140px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
    align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 10px;
    border-radius: 50px;
    background: rgba(232,93,58,0.12);
    border: 1px solid rgba(232,93,58,0.25);
    font-size: 13px; font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 28px;
}
.chip-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent-light);
    animation: chipPulse 2s ease-in-out infinite;
}
@keyframes chipPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
    font-size: clamp(38px, 5.5vw, 58px);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -2px;
    color: #F1F0EE;
    margin-bottom: 24px;
}
.hero-accent {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--coral) 50%, var(--coral-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 17px; color: var(--slate-400);
    max-width: 480px; line-height: 1.7;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

/* Buttons */
.btn-gold {
    display: inline-flex; align-items: center;
    padding: 14px 32px; border-radius: 10px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #fff; font-weight: 700; font-size: 15px;
    text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 4px 20px var(--coral-glow), 0 1px 3px rgba(0,0,0,0.2);
    transition: all 0.2s; font-family: inherit;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--coral-glow), 0 2px 6px rgba(0,0,0,0.25);
}
.btn-gold.lg { padding: 18px 40px; font-size: 17px; }
.btn-ghost {
    display: inline-flex; align-items: center;
    padding: 14px 32px; border-radius: 10px;
    background: transparent;
    color: #CBD5E1; font-weight: 600; font-size: 15px;
    text-decoration: none; border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s; font-family: inherit;
}
.btn-ghost:hover { border-color: var(--accent-light); color: var(--accent-light); }

/* Hero proof */
.hero-proof {
    display: flex; align-items: center; gap: 28px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.proof-item { text-align: left; }
.proof-item strong {
    display: block; font-size: 28px; font-weight: 800;
    color: #F1F0EE; letter-spacing: -1px;
}
.proof-item span { font-size: 13px; color: var(--slate-400); }
.proof-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ═══════ SEAL ILLUSTRATION ═══════ */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.seal-container { position: relative; width: 380px; height: 380px; }
.seal {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120px; height: 120px;
}
.seal-ring {
    position: absolute; inset: -20px;
    border: 2px solid rgba(232,93,58,0.3);
    border-radius: 50%;
    animation: sealRotate 20s linear infinite;
}
.seal-ring::before {
    content: '';
    position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 12px var(--coral-glow);
}
.seal-ring.ring-2 {
    inset: -50px;
    border-color: rgba(232,93,58,0.12);
    animation-duration: 30s;
    animation-direction: reverse;
}
.seal-ring.ring-2::before { background: rgba(232,93,58,0.4); width: 6px; height: 6px; }
@keyframes sealRotate { to { transform: rotate(360deg); } }

.seal-center {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 60px var(--coral-glow), 0 0 120px rgba(232,93,58,0.08);
}

/* Orbit items */
.orbit-item {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: #CBD5E1; font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    animation: orbitAppear 0.5s ease forwards;
}
.orbit-item span { font-size: 16px; }
.orbit-item small { font-size: 11px; }
.o1 { top: 5%; left: 10%; animation-delay: 0.1s; }
.o2 { top: 0%; right: 10%; animation-delay: 0.25s; }
.o3 { top: 30%; right: -5%; animation-delay: 0.4s; }
.o4 { bottom: 30%; right: 0%; animation-delay: 0.55s; }
.o5 { bottom: 5%; right: 15%; animation-delay: 0.7s; }
.o6 { bottom: 0%; left: 15%; animation-delay: 0.85s; }
.o7 { bottom: 30%; left: -5%; animation-delay: 1s; }
.o8 { top: 30%; left: 0%; animation-delay: 1.15s; }
@keyframes orbitAppear {
    from { opacity: 0; transform: scale(0.8) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ═══════════════════ PROBLEM ═══════════════════ */
.problem { padding: 120px 0; }
.problem-intro { max-width: 700px; margin-bottom: 64px; }
.label-teal {
    display: inline-block;
    background: var(--coral-light); color: var(--coral);
    padding: 5px 14px; border-radius: 6px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.label-gold {
    display: inline-block;
    background: var(--gold-light); color: var(--gold);
    padding: 5px 14px; border-radius: 6px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.problem-intro h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800; letter-spacing: -1px; line-height: 1.2;
}
.chaos-vs-order {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px;
    align-items: center;
}
.transform-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--coral-light);
}
.chaos-papers { position: relative; height: 200px; margin-bottom: 24px; }
.paper {
    position: absolute;
    background: #fff; border: 1px solid var(--stone-200);
    border-radius: 8px; padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 140px;
}
.paper-line { height: 6px; background: var(--stone-200); border-radius: 3px; margin-bottom: 8px; }
.paper-line.short { width: 65%; }
.paper-cells { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.cell { height: 14px; background: var(--stone-200); border-radius: 2px; }
.p1 { top: 10px; left: 20px; transform: rotate(-6deg); z-index: 1; }
.p2 { top: 30px; left: 100px; transform: rotate(4deg); z-index: 2; }
.p3 { top: 50px; left: 50px; transform: rotate(-2deg); z-index: 3; }
.p4 { top: 20px; right: 10px; transform: rotate(3deg); z-index: 2; width: 120px; }
.chaos-side h3, .order-side h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.3px; }
.chaos-list, .order-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.chaos-list li, .order-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--text-secondary); line-height: 1.5;
}
.chaos-list li::before { content: '\2717'; color: #DC2626; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.order-list li::before { content: '\2713'; color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Order mockup */
.order-mockup {
    background: var(--slate-900); border-radius: 12px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2); margin-bottom: 24px;
}
.om-bar { display: flex; gap: 5px; padding: 10px 14px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.06); }
.om-dot { width: 8px; height: 8px; border-radius: 50%; }
.om-dot.r { background: #FF5F57; } .om-dot.y { background: #FFBD2E; } .om-dot.g { background: #28C840; }
.om-body { display: grid; grid-template-columns: 40px 1fr; padding: 12px; gap: 10px; min-height: 140px; }
.om-sidebar { display: flex; flex-direction: column; gap: 6px; padding-right: 8px; border-right: 1px solid rgba(255,255,255,0.06); }
.om-nav-item { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.om-nav-item.active { background: var(--coral); }
.om-content { display: flex; flex-direction: column; gap: 10px; }
.om-stats-row { display: flex; gap: 6px; }
.om-stat { flex: 1; height: 28px; background: rgba(255,255,255,0.04); border-radius: 6px; padding: 4px; display: flex; align-items: flex-end; }
.om-stat-bar { height: 6px; border-radius: 3px; background: var(--coral); }
.om-stat-bar.warn { background: var(--warn); }
.om-rows { display: flex; flex-direction: column; gap: 4px; }
.om-row { height: 20px; background: rgba(255,255,255,0.04); border-radius: 4px; display: flex; align-items: center; padding-left: 8px; }
.om-check { font-size: 10px; color: var(--coral); }

/* ═══════════════════ PLATFORM FEATURES ═══════════════════ */
.platform { padding: 120px 0; background: var(--stone-100); }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 12px; }
.section-sub { font-size: 17px; color: var(--text-secondary); line-height: 1.6; margin-top: 8px; }
.feature-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; margin-bottom: 96px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { grid-template-columns: 1.2fr 1fr; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-num {
    display: inline-block; font-size: 13px; font-weight: 700; color: var(--coral);
    background: var(--coral-light); padding: 4px 12px; border-radius: 6px;
    margin-bottom: 16px; letter-spacing: 1px;
}
.feature-text h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px; }
.feature-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.feature-details { display: flex; flex-direction: column; gap: 10px; }
.fd { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.fd::first-letter { color: var(--coral); }
.feature-visual > div {
    background: var(--white); border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg); padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.04);
}

/* Dashboard visual */
.fv-toprow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.fv-card { padding: 16px 12px; border-radius: var(--radius); background: var(--stone-50); border: 1px solid rgba(0,0,0,0.05); text-align: center; }
.fv-card.accent { background: var(--coral-light); border-color: rgba(232,93,58,0.15); }
.fv-card-num { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -1px; }
.fv-card.accent .fv-card-num { color: var(--coral); }
.fv-card-label { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.fv-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.fv-bar-row { display: flex; align-items: center; gap: 12px; }
.fv-bar-label { font-size: 12px; color: var(--text-secondary); min-width: 80px; font-weight: 500; }
.fv-bar { flex: 1; height: 8px; background: var(--stone-100); border-radius: 4px; overflow: hidden; }
.fv-bar-fill { height: 100%; border-radius: 4px; background: var(--coral); transition: width 1.5s ease; }
.fv-bar-fill.warn { background: var(--warn); }
.fv-alert {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: 8px;
    background: rgba(243,156,18,0.06); border: 1px solid rgba(243,156,18,0.15);
    font-size: 13px; color: var(--warn); font-weight: 500;
}
.fv-alert-icon { font-size: 16px; }

/* Pipeline visual */
.fv-pipeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fv-pipe-head { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 2px solid var(--stone-200); }
.fv-pipe-head.done { color: var(--coral); border-bottom-color: var(--coral); }
.fv-pipe-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; background: var(--stone-50); border: 1px solid rgba(0,0,0,0.05); font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
.fv-pipe-item.certified { background: var(--coral-light); border-color: rgba(232,93,58,0.2); color: var(--coral-dark); }
.fv-avatar { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; }
.fv-badge-check { margin-left: auto; color: var(--coral); font-weight: 700; }

/* Audit visual */
.fv-audit-head { display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.fv-audit-status { font-size: 12px; font-weight: 600; color: var(--warn); background: rgba(243,156,18,0.08); padding: 4px 12px; border-radius: 50px; }
.fv-checklist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fv-chk { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 8px; font-size: 14px; color: var(--text-muted); font-weight: 500; background: var(--stone-50); }
.fv-chk.done { color: var(--text-secondary); }
.fv-chk.active { color: var(--gold); background: var(--gold-light); border: 1px solid rgba(180,83,9,0.15); }
.fv-chk-box { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--stone-200); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.fv-chk-box.done { background: var(--coral); border-color: var(--coral); color: #fff; }
.fv-chk-box.active { border-color: var(--gold); }
.fv-finding { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 8px; background: rgba(243,156,18,0.06); font-size: 13px; color: var(--warn); font-weight: 500; }

/* ═══════════════════ TIMELINE ═══════════════════ */
.eight { padding: 120px 0; background: #3E2723; color: #fff; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--stone-200); transform: translateX(-50%); }
.tl-item { position: relative; display: grid; grid-template-columns: 1fr 40px 1fr; gap: 0; align-items: start; margin-bottom: 24px; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.tl-item.visible { opacity: 1; transform: translateY(0); }
.tl-node { grid-column: 2; width: 36px; height: 36px; border-radius: 50%; background: var(--coral); color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 0 0 6px var(--stone-50), 0 0 20px var(--coral-glow); }
.tl-card { padding: 24px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: box-shadow 0.2s, transform 0.2s; }
.tl-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.tl-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.tl-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.tl-item.left .tl-card { grid-column: 1; text-align: right; margin-right: 16px; }
.tl-item.left .tl-node { grid-column: 2; grid-row: 1; }
.tl-item.right .tl-card { grid-column: 3; margin-left: 16px; }
.tl-item.right .tl-node { grid-column: 2; grid-row: 1; }

/* ═══════════════════ TRUST ═══════════════════ */
.trust { padding: 100px 0; background: #1a1a2e; color: #fff; overflow: hidden; }
.trust .section-head h2 { color: #fff; }
.trust .section-sub { color: rgba(255,255,255,0.6); }
.trust-badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.trust-badge {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.trust-badge:hover {
  transform: translateY(-4px); border-color: #E85D3A;
}
.badge-shield {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: rgba(232,93,58,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.trust-badge h4 { font-size: 18px; font-weight: 700; margin: 0 0 4px; color: #fff; }
.trust-badge > p { font-size: 13px; color: #E85D3A; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 16px; }
.badge-list {
  list-style: none; padding: 0; margin: 0; text-align: left;
}
.badge-list li {
  font-size: 13px; color: rgba(255,255,255,0.7); padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; padding-left: 20px;
}
.badge-list li::before {
  content: '\2713'; position: absolute; left: 0; color: #4ade80; font-weight: 700;
}
.trust-bottom {
  display: flex; justify-content: center; gap: 48px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-stat { text-align: center; }
.stat-num {
  display: block; font-size: 36px; font-weight: 800; color: #E85D3A;
  line-height: 1;
}
.stat-label {
  display: block; font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 8px; max-width: 160px;
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing { padding: 120px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 20px; align-items: start; }
.plan-card { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius-xl); padding: 36px 32px; position: relative; transition: all 0.25s; }
.plan-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.08); transform: translateY(-4px); }
.plan-card.featured { background: linear-gradient(165deg, var(--slate-900) 0%, #2A1A12 100%); border: 1px solid rgba(232,93,58,0.3); color: #F1F0EE; }
.plan-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 18px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.plan-header h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-header p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 24px; }
.plan-card.featured .plan-header p { color: var(--slate-400); }
.plan-price { margin-bottom: 28px; }
.plan-price strong { font-size: 40px; font-weight: 800; letter-spacing: -2px; }
.plan-card.featured .plan-price strong { color: var(--accent-light); }
.plan-price span { font-size: 14px; color: var(--text-muted); margin-left: 4px; }
.plan-card.featured .plan-price span { color: var(--slate-400); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; font-weight: 500; }
.plan-card.featured .plan-features li { color: #CBD5E1; }
.plan-features li::before { content: '\2713'; color: var(--coral); font-weight: 700; flex-shrink: 0; }
.plan-btn { display: block; width: 100%; padding: 14px; border-radius: 10px; text-align: center; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: all 0.2s; font-family: inherit; text-decoration: none; }
.plan-btn.outline { background: transparent; border: 2px solid rgba(0,0,0,0.1); color: var(--text); }
.plan-btn.outline:hover { border-color: var(--coral); color: var(--coral); }
.plan-btn.solid { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); color: #fff; box-shadow: 0 4px 16px var(--coral-glow); }
.plan-btn.solid:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--coral-glow); }

/* ═══════════════════ CTA ═══════════════════ */
.cta { padding: 0 0 120px; }
.cta-card { background: linear-gradient(165deg, var(--slate-900) 0%, #2A1A12 100%); border-radius: var(--radius-xl); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(232,93,58,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-seal { margin-bottom: 24px; position: relative; }
.cta-card h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1.5px; color: #F1F0EE; margin-bottom: 16px; position: relative; }
.cta-card p { font-size: 17px; color: var(--slate-400); max-width: 500px; margin: 0 auto 36px; line-height: 1.6; position: relative; }
.cta-card .btn-gold { position: relative; }
.cta-email { display: block; margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.3); position: relative; }
.cta-email a { color: var(--accent-light); }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer { padding: 40px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--text); }
.footer-seal { width: 24px; height: 24px; border-radius: 6px; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.footer-by { font-size: 13px; color: var(--text-muted); }
.footer-by a { color: var(--text-secondary); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--coral); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ═══════════════════ REVEAL ═══════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 900px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(243,237,228,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 18px; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .nav-links.open { display: flex; }
    .menu-toggle { display: block; }
    .hero { padding: 120px 24px 80px; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { order: 2; }
    .hero-proof { flex-wrap: wrap; gap: 20px; }
    .proof-sep { display: none; }
    .chaos-vs-order { grid-template-columns: 1fr; gap: 32px; }
    .transform-arrow { transform: rotate(90deg); margin: 0 auto; }
    .chaos-papers { height: 160px; }
    .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
    .feature-row.reverse .feature-text { order: 1; }
    .feature-row.reverse .feature-visual { order: 2; }
    .timeline-line { left: 18px; }
    .tl-item { grid-template-columns: 36px 1fr; gap: 0; }
    .tl-node { grid-column: 1 !important; }
    .tl-item.left .tl-card, .tl-item.right .tl-card { grid-column: 2 !important; text-align: left; margin: 0 0 0 16px; }
    .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 16px; } .trust-badge { padding: 24px 16px; } .trust-bottom { flex-wrap: wrap; gap: 24px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .cta-card { padding: 48px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 32px; letter-spacing: -1px; }
    .fv-pipeline { grid-template-columns: 1fr; }
    .fv-toprow { grid-template-columns: 1fr; }
    .problem-intro h2 { font-size: 24px; }
    .trust-badges { grid-template-columns: 1fr; gap: 16px; }
    .trust-badge { padding: 24px 20px; }
    .trust-bottom { flex-wrap: wrap; gap: 16px; }
    .stat-num { font-size: 28px; }
}
/* Dashboard preview in hero */
.dashboard-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: none;
  transition: transform 0.5s ease;
}
.dashboard-preview:hover {
  transform: none;
}
.dashboard-preview img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .dashboard-preview {
    transform: none;
    border-radius: 12px;
  }
}


/* D016 Procedures Grid */
.d016-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.d016-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.d016-card:hover {
  border-color: #E85D3A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,58,0.12);
}
.d016-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.d016-check {
  width: 22px;
  height: 22px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
}
.d016-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.d016-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 12px;
}
.d016-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.d016-tags span {
  font-size: 11px;
  background: rgba(232,93,58,0.12);
  color: #E85D3A;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .d016-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .d016-grid { grid-template-columns: 1fr; gap: 12px; }
  .d016-card { padding: 16px; }
}

/* D016 section dark bg overrides */
.eight .section-head h2 { color: #fff; }
.eight .section-sub { color: rgba(255,255,255,0.7); }
.eight .label-gold { background: rgba(232,93,58,0.2); color: #FF8A65; }
.d016-card { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); }
.d016-card:hover { background: rgba(255,255,255,0.12); }


/* CTA Contact Section */
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.cta-channels {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
}
.cta-channel div { text-align: left; }
.cta-channel strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.cta-channel span {
  font-size: 13px;
  opacity: 0.8;
}
.cta-channel.whatsapp {
  background: #25D366;
  color: #fff;
}
.cta-channel.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.cta-channel.email {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.cta-channel.email:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}
.cta-channel.phone {
  background: rgba(232,93,58,0.15);
  border: 1px solid rgba(232,93,58,0.3);
  color: #fff;
}
.cta-channel.phone:hover {
  background: rgba(232,93,58,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,58,0.2);
}
.cta-info {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.cta-dot { margin: 0 6px; }
@media (max-width: 768px) {
  .cta-channels { flex-direction: column; align-items: center; }
  .cta-channel { width: 100%; max-width: 300px; justify-content: center; }
}


/* CTA Contact Form */
.cta-form-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cta-form-header h2 { margin-bottom: 0; }
.cta-form-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.cta-form {
  max-width: 600px;
  margin: 0 auto;
}
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cta-form-group {
  text-align: left;
}
.cta-form-group.full {
  margin-bottom: 16px;
}
.cta-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.cta-form-group input,
.cta-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.cta-form-group input::placeholder,
.cta-form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.cta-form-group input:focus,
.cta-form-group textarea:focus {
  outline: none;
  border-color: #E85D3A;
  background: rgba(255,255,255,0.12);
}
.cta-form-btn {
  width: 100%;
  padding: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.cta-form-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #E85D3A;
}
.cta-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cta-form-ok {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  color: #27ae60;
  font-weight: 500;
  font-size: 15px;
}
.cta-contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta-contact-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.cta-contact-links a:hover {
  color: #E85D3A;
}
@media (max-width: 576px) {
  .cta-form-row { grid-template-columns: 1fr; gap: 12px; }
  .cta-contact-links { flex-direction: column; align-items: center; gap: 10px; }
}


/* Problem Section — Marketing */
.problem-lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
.pain-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}
.pain-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(231,76,60,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.pain-stat {
  background: rgba(231,76,60,0.04);
  border: 1px solid rgba(231,76,60,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pain-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #e74c3c;
  white-space: nowrap;
}
.pain-stat-label {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

/* Consequence callout */
.pain-consequence {
  margin: 0 0 40px;
}
.pain-consequence-inner {
  background: linear-gradient(135deg, #fff5f3, #fff9f7);
  border: 1px solid rgba(232,93,58,0.15);
  border-left: 4px solid #E85D3A;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pain-consequence-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(232,93,58,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-consequence-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.pain-consequence-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Transition arrow */
.pain-transition {
  text-align: center;
  position: relative;
  padding: 20px 0;
}
.pain-transition-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(232,93,58,0.1), #E85D3A);
  margin: 0 auto 12px;
}
.pain-transition-badge {
  width: 40px;
  height: 40px;
  background: #E85D3A;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(232,93,58,0.3);
}
.pain-transition-text {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-consequence-inner { flex-direction: column; gap: 12px; }
  .problem-lead { font-size: 16px; }
}

/* ── Lightbox zoom ── */
.feature-visual img { cursor: zoom-in; transition: transform 0.2s ease; }
.feature-visual img:hover { transform: scale(1.02); }
#lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: none; align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 92vw; max-height: 92vh; border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  cursor: default;
}
#lightbox .lb-close {
  position: absolute; top: 16px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
#lightbox .lb-close:hover { background: rgba(255,255,255,0.3); }

/* ── Procedures D016 grid ── */
.procedures { padding: 100px 0; background: #fafaf9; }
.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.proc-card {
  background: #fff; border-radius: 14px; padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.proc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.proc-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #E85D3A, #D44A2A);
  color: #fff; font-weight: 800; font-size: 0.85rem;
  margin-bottom: 14px;
}
.proc-card h4 {
  font-size: 1.05rem; font-weight: 700; color: #1a1a1a;
  margin-bottom: 8px;
}
.proc-card p {
  font-size: 0.88rem; color: #666; line-height: 1.5;
  margin-bottom: 12px;
}
.proc-module {
  font-size: 0.78rem; color: #E85D3A; font-weight: 600;
  padding-top: 10px; border-top: 1px solid rgba(0,0,0,0.06);
}
.proc-module i { margin-right: 4px; }
@media (max-width: 900px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .proc-grid { grid-template-columns: 1fr; } }


/* ── Docs carousel for module 09 ── */
.docs-carousel {
  position: relative; overflow: hidden; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.06);
  background: #fff; aspect-ratio: 16/9;
}
.docs-track {
  display: flex; transition: transform 0.4s ease;
  height: 100%;
}
.docs-track img {
  min-width: 100%; max-width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block; cursor: zoom-in;
}
.docs-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.1);
  color: #333; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: background 0.2s;
  z-index: 2;
}
.docs-nav:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.docs-prev { left: 10px; }
.docs-next { right: 10px; }
.docs-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.docs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.2); cursor: pointer; transition: background 0.2s;
}
.docs-dot.active { background: #E85D3A; width: 20px; border-radius: 4px; }

/* ── Hero carousel ── */
.hero-carousel {
  position: relative; overflow: hidden;
}
.hero-track {
  display: flex; transition: transform 0.5s ease;
}
.hero-track img {
  min-width: 100%; max-width: 100%; height: auto; display: block; cursor: zoom-in;
}
.hero-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.2s;
}
.hero-dot.active { background: #E85D3A; width: 18px; border-radius: 3px; }

/* ── Lightbox navigation arrows ── */
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10000;
}
.lb-arrow:hover { background: rgba(255,255,255,0.3); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── Comparativa Antes vs Despues ── */
.comparativa { padding: 100px 0; background: var(--white); }
.comp-table-wrap {
  overflow-x: auto; border-radius: 16px; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.comp-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; line-height: 1.6;
}
.comp-table thead { background: #1a1a2e; }
.comp-table th {
  padding: 18px 24px; font-weight: 700; font-size: 15px;
  text-align: left; color: #fff; border: none;
}
.comp-table th.comp-feature { width: 28%; }
.comp-table th.comp-old { width: 36%; color: rgba(255,255,255,0.6); }
.comp-table th.comp-new { width: 36%; color: #E85D3A; }
.comp-table td {
  padding: 14px 24px; border-bottom: 1px solid rgba(0,0,0,0.05);
  vertical-align: top;
}
.comp-table tbody tr:hover { background: rgba(232,93,58,0.03); }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table td:first-child { font-weight: 600; color: var(--text-primary); }
.comp-table td:nth-child(2) { color: var(--text-secondary); }
.comp-table td:nth-child(3) { color: var(--text-primary); }
/* Alinea las líneas envueltas con el texto, no bajo el ícono (hanging indent) */
.comp-table tbody td:has(.comp-ok, .comp-x, .comp-warn) { padding-left: 54px; text-indent: -30px; }
.comp-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fee2e2; color: #dc2626; font-weight: 700; font-size: 14px;
  margin-right: 8px; flex-shrink: 0;
}
.comp-ok {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #dcfce7; color: #16a34a; font-weight: 700; font-size: 13px;
  margin-right: 8px; flex-shrink: 0;
}
.comp-warn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fef3c7; color: #d97706; font-weight: 700; font-size: 14px;
  margin-right: 8px; flex-shrink: 0;
}
@media (max-width: 768px) {
  .comp-table { font-size: 12px; table-layout: fixed; width: 100%; }
  .comp-table th, .comp-table td { padding: 10px 8px; word-break: break-word; overflow-wrap: break-word; }
  .comp-table th.comp-feature, .comp-table th.comp-old, .comp-table th.comp-new { width: 33.33%; }
  .comp-table td { font-size: 11px; line-height: 1.4; }
  .comp-table tbody td:has(.comp-ok, .comp-x, .comp-warn) { padding-left: 38px; text-indent: -30px; }
}

/* Hide scrollbars globally but allow touch scroll */
.comp-table-wrap::-webkit-scrollbar, .trust-badges::-webkit-scrollbar { display: none; }

/* ── Ajuste composicion hero: captura llena su columna ── */
.hero-visual { align-self: stretch; }
.hero-visual .dashboard-preview { width: 100%; align-self: center; }
@media (min-width: 769px) {
  .hero-inner { grid-template-columns: 1fr 1.25fr; gap: 48px; }
}

/* ── Browser frame en la captura del hero ── */
.hero-visual .dashboard-preview {
  padding-top: 34px;
  background: #21262f;
}
.hero-visual .dashboard-preview::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 34px;
  background: linear-gradient(#2b313c, #262b34);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 5;
}
.hero-visual .dashboard-preview::after {
  content: '';
  position: absolute; top: 12px; left: 16px; z-index: 6;
  width: 11px; height: 11px; border-radius: 50%;
  background: #ff5f57;
  box-shadow: 19px 0 0 #febc2e, 38px 0 0 #28c840;
}

/* ── Refinamiento hero: mas compacto y balanceado (evita min-height 100dvh gigante) ── */
.hero { min-height: auto; padding: 116px 24px 86px; }
.hero h1 { font-size: clamp(34px, 4.2vw, 52px); letter-spacing: -1.5px; line-height: 1.07; }
.hero-sub { margin-bottom: 28px; }
.hero-actions { margin-bottom: 36px; }
@media (min-width: 1500px) {
  .hero-inner { max-width: 1240px; }
}

/* ── Hero reestructurado: dashboard arriba + acciones centradas abajo ── */
.hero { flex-direction: column; justify-content: center; }
.hero-inner { align-items: start; }
.hero-visual { align-self: start; }
.hero-visual .dashboard-preview { align-self: flex-start; }
.hero-bottom {
  max-width: 1140px; width: 100%; margin: 40px auto 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 2;
}
.hero-bottom .hero-actions { justify-content: center; margin-bottom: 0; }
.hero-fineprint { margin: 16px 0 0; font-size: 0.9rem; opacity: 0.8; color: var(--slate-400); }
.hero-videolink { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 14px; color: #E85D3A; font-weight: 600; text-decoration: none; }
.hero-bottom .hero-proof { margin-top: 24px; justify-content: center; }
.hero-bottom .proof-item { text-align: center; }

/* ── Fix overflow horizontal en movil ── */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, table, iframe { max-width: 100%; }
@media (max-width: 600px) {
  .proc-grid { grid-template-columns: 1fr; }
  .container, .hero-inner, .hero-bottom { max-width: 100%; }
  .fd, .feature-text p, .plan-features li, .pain-card p, .section-sub { overflow-wrap: anywhere; }
}


/* ===== Fundador (S159) ===== */
.founder { padding: 110px 0; background: var(--stone-100); }
.founder-inner { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: center; max-width: 1000px; margin: 0 auto; }
.founder-photo { display: flex; justify-content: center; }
.founder-seal { width: 200px; height: 200px; border-radius: 24px; background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 76px; font-weight: 800; letter-spacing: -2px; box-shadow: 0 20px 50px var(--coral-glow); }
.founder-photo img { width: 200px; height: 240px; object-fit: cover; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.founder-body h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin: 10px 0 16px; }
.founder-body p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; font-size: 16px; }
.founder-quote { border-left: 4px solid var(--coral); background: var(--coral-light); padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 8px 0 20px; line-height: 1.65; font-size: 16px; }
.founder-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.founder-mail { font-weight: 600; }
@media (max-width: 760px) {
  .founder-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .founder-quote { text-align: left; }
  .founder-actions { justify-content: center; }
}

/* ===== FAQ (S159) ===== */
.faq { padding: 100px 0; background: var(--stone-100); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--coral); font-size: 26px; font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > div { padding: 0 22px 20px; color: var(--text-secondary); line-height: 1.7; font-size: 15.5px; }

/* founder-photo img framing (S159) */
.founder-photo img { object-position: 66% 35%; }

.founder-linkedin { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #0A66C2; }
.founder-linkedin:hover { color: #084d92; }

/* founder-contact (S159) */
.founder-contact { margin-top: 10px; }
.founder-contact-label { display:block; font-size:12px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; color: var(--coral); margin-bottom:14px; }
.contact-row { display:flex; align-items:center; gap:12px; font-weight:600; color:#33333a; margin-bottom:11px; font-size:16px; }
.contact-row:hover { color: var(--coral); }
.contact-ic { display:inline-flex; width:36px; height:36px; align-items:center; justify-content:center; border-radius:10px; background: var(--coral-light); color: var(--coral); flex-shrink:0; }
.contact-ic.wa { background: rgba(37,211,102,0.14); color:#128C4B; }
.contact-social { display:flex; gap:12px; margin-top:14px; }
.social-ic { display:inline-flex; width:40px; height:40px; align-items:center; justify-content:center; border-radius:11px; background:#fff; border:1px solid rgba(0,0,0,0.09); color:#5a5a63; transition: all .18s ease; }
.social-ic:hover { transform: translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,0.1); }
.social-ic.li:hover { color:#0A66C2; border-color:#0A66C2; }
.social-ic.gh:hover { color:#111; border-color:#111; }

/* ===== Mejoras landing S159 (#4,#6,#7,#8,#10,#11) ===== */

/* #4 ChileValora vs CertificaDesk */
.versus { padding: 100px 0; background:#fff; }
.vs-grid { display:grid; grid-template-columns:1fr auto 1fr; align-items:stretch; gap:24px; max-width:960px; margin:0 auto; }
.vs-col { background:var(--stone-100); border:1px solid rgba(0,0,0,0.06); border-radius:18px; padding:32px 28px; }
.vs-col.highlight { background:var(--coral-light); border-color:rgba(232,93,58,0.25); box-shadow:0 12px 34px rgba(232,93,58,0.12); }
.vs-col h3 { font-size:22px; font-weight:800; margin-bottom:8px; }
.vs-tag { display:inline-block; font-size:12px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:#7a7d8c; background:rgba(0,0,0,0.05); padding:4px 12px; border-radius:999px; margin-bottom:18px; }
.vs-tag.coral { color:var(--coral); background:rgba(232,93,58,0.12); }
.vs-col ul { list-style:none; padding:0; margin:0 0 16px; display:flex; flex-direction:column; gap:12px; }
.vs-col li { display:flex; gap:10px; line-height:1.5; color:#3a3a42; font-size:15.5px; }
.vs-col li::before { content:'—'; color:#a9adba; flex-shrink:0; }
.vs-col.highlight li::before { content:'\2713'; color:var(--coral); font-weight:800; }
.vs-note { font-size:14px; color:var(--text-secondary); font-style:italic; margin:0; }
.vs-plus { display:flex; align-items:center; justify-content:center; font-size:34px; font-weight:800; color:var(--coral); }
@media(max-width:780px){ .vs-grid{ grid-template-columns:1fr; } }

/* #7 Soberanía de datos */
.sovereignty { padding:96px 0; background:#fff; }
.sov-inner { display:grid; grid-template-columns:auto 1fr; gap:40px; align-items:center; max-width:980px; margin:0 auto; background:linear-gradient(135deg,#16162b,#20203c); color:#fff; border-radius:24px; padding:48px 52px; }
.sov-icon { width:96px; height:96px; border-radius:22px; background:rgba(232,93,58,0.15); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sov-text h2 { font-size:clamp(24px,3.2vw,32px); font-weight:800; letter-spacing:-1px; margin:8px 0 14px; }
.sov-text p { color:#c3c6d6; line-height:1.7; margin-bottom:20px; }
.sov-badges { display:flex; flex-wrap:wrap; gap:10px; }
.sov-badges span { font-size:14px; font-weight:600; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.14); padding:7px 15px; border-radius:10px; }
.sov-text .label-gold { background:rgba(232,93,58,0.15); color:#ff9d82; }
@media(max-width:780px){ .sov-inner{ grid-template-columns:1fr; gap:24px; padding:36px 28px; text-align:center; } .sov-icon{ margin:0 auto; } .sov-badges{ justify-content:center; } }

/* #6 Cómo empiezas */
.steps { padding:100px 0; background:#fff; }
.steps-grid { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:center; gap:16px; max-width:1000px; margin:0 auto; }
.step { background:var(--stone-100); border:1px solid rgba(0,0,0,0.06); border-radius:18px; padding:32px 26px; text-align:center; height:100%; }
.step-n { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,var(--coral),var(--coral-dark)); color:#fff; font-size:24px; font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; box-shadow:0 8px 22px var(--coral-glow); }
.step h3 { font-size:19px; font-weight:800; margin-bottom:8px; }
.step p { font-size:15px; color:var(--text-secondary); line-height:1.6; }
.step-arrow { font-size:28px; color:var(--coral); font-weight:700; }
@media(max-width:780px){ .steps-grid{ grid-template-columns:1fr; } .step-arrow{ transform:rotate(90deg); } }

/* #10 ROI */
.roi { padding:100px 0; background:var(--stone-100); }
.roi-card { display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:940px; margin:0 auto; background:#fff; border:1px solid rgba(0,0,0,0.07); border-radius:22px; padding:40px 44px; align-items:center; }
.roi-inputs label { display:block; font-size:14.5px; font-weight:600; color:#3a3a42; margin-bottom:26px; }
.roi-inputs input[type=range] { width:100%; margin-top:12px; accent-color:var(--coral); }
.roi-inputs b { color:var(--coral); font-size:16px; }
.roi-out { text-align:center; border-left:1px solid rgba(0,0,0,0.08); padding-left:40px; }
.roi-big span { font-size:46px; font-weight:800; color:var(--coral); letter-spacing:-1.5px; display:block; line-height:1.1; }
.roi-big small { color:var(--text-secondary); font-size:14px; }
.roi-vs { margin:16px 0 6px; color:var(--text-secondary); font-size:15px; }
.roi-net { font-size:17px; font-weight:600; }
.roi-net b { color:#128C4B; font-weight:800; }
@media(max-width:780px){ .roi-card{ grid-template-columns:1fr; gap:24px; padding:32px 26px; } .roi-out{ border-left:none; border-top:1px solid rgba(0,0,0,0.08); padding-left:0; padding-top:24px; } }

/* #8 Urgencia */
.urgency { background:linear-gradient(135deg,var(--coral),var(--coral-dark)); color:#fff; }
.urgency .container { padding-top:22px; padding-bottom:22px; }
.urgency p { margin:0; text-align:center; font-size:17px; font-weight:600; line-height:1.5; }

/* #11 Toggle mensual/anual */
.billing-toggle { display:flex; align-items:center; justify-content:center; gap:16px; margin:0 auto 40px; }
.bt-opt { font-weight:700; color:var(--text-secondary); cursor:pointer; font-size:16px; display:flex; align-items:center; gap:8px; }
.bt-opt.active { color:#1a1a2e; }
.bt-opt em { font-style:normal; font-size:12px; font-weight:700; color:var(--coral); background:var(--coral-light); padding:3px 9px; border-radius:999px; }
.bt-switch { width:54px; height:30px; border-radius:999px; background:#d8d2c7; position:relative; cursor:pointer; transition:background .2s; flex-shrink:0; }
.bt-switch.on { background:var(--coral); }
.bt-knob { position:absolute; top:3px; left:3px; width:24px; height:24px; border-radius:50%; background:#fff; transition:transform .2s; box-shadow:0 2px 6px rgba(0,0,0,0.2); }
.bt-switch.on .bt-knob { transform:translateX(24px); }

.footer-legal { flex-basis:100%; width:100%; margin-top:22px; padding-top:20px; border-top:1px solid rgba(0,0,0,0.07); font-size:12.5px; color:var(--text-muted); line-height:1.6; text-align:center; }
