/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
    --bg-dark: #0A0A0A;
    --bg-card: #121212;
    --bg-card-hover: #181818;
    --border-color: #222222;
    --text-light: #FFFFFF;
    --text-body: #ECEAE5;
    --text-muted: #9E9B95;

    --accent-gold: #C5A880;
    --accent-gold-dark: #A58962;
    --accent-gold-light: #DFCDAF;
    --danger: #FF4A4A;

    --nequi-pink: #E0007A;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --wompi-purple: #7415D4;

    --font-heading: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(197, 168, 128, 0.2);
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);

    --header-h: 58px;
    --footer-h: 80px;
}

/* ========================================
   RESET & BASE
   ======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    background-color: var(--bg-dark);
    color: var(--text-body);
    font-family: var(--font-sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

body.immersive {
    overflow: hidden;
    height: 100%;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ========================================
   UTILITIES
   ======================================== */
.text-accent { color: var(--accent-gold); }
.text-danger { color: var(--danger); }
.italic { font-style: italic; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    outline: none;
    letter-spacing: 0.3px;
}

/* Main CTA button inside slide footer */
.slide-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.slide-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    border-radius: 5px;
    z-index: -1;
    opacity: 0.35;
    filter: blur(12px);
    transition: var(--transition);
}

.slide-cta:not([disabled]):hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.slide-cta:not([disabled]):hover::after {
    opacity: 0.7;
    filter: blur(18px);
}

.slide-cta[disabled] {
    background-color: #2a2a2a;
    color: #555;
    cursor: not-allowed;
}

.slide-cta[disabled]::after { display: none; }

/* Wompi pay button */
.btn-wompi-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background-color: var(--wompi-purple);
    color: #fff;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    margin-top: 0.8rem;
}

.btn-wompi-pay:hover {
    background-color: #5a0faa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(116, 21, 212, 0.35);
}

/* WhatsApp pay button */
.btn-whatsapp-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background-color: var(--whatsapp-green);
    color: #fff;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    margin-top: 0.8rem;
}

.btn-whatsapp-pay:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* WhatsApp contact button */
.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background-color: var(--whatsapp-green);
    color: #fff;
    transition: var(--transition);
}

.btn-whatsapp-contact:hover {
    background-color: var(--whatsapp-dark);
}

/* Back button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #2a2a2a;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.btn-back:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Nequi copy button */
.btn-copy-nequi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(224, 0, 122, 0.4);
    color: var(--accent-gold);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-copy-nequi:hover { color: var(--text-light); border-color: var(--accent-gold); }

/* ========================================
   JOURNEY HEADER
   ======================================== */
.journey-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 200;
    background: rgba(10, 10, 10, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.jh-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.jh-logo {
    height: 30px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.85;
}

.jh-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
}

.jh-progress-track {
    display: flex;
    gap: 4px;
    width: 100%;
}

.jh-seg {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background-color: #2a2a2a;
    transition: background-color 0.5s ease;
    position: relative;
    overflow: hidden;
}

.jh-seg.done {
    background-color: var(--accent-gold-dark);
}

.jh-seg.active {
    background-color: var(--accent-gold);
}

.jh-seg.active::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    to { left: 200%; }
}

.jh-step-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ========================================
   SLIDE SYSTEM
   ======================================== */
.journey-main {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(28px);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    background-color: var(--bg-dark);
}

.slide.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    z-index: 10;
}

.slide.exiting {
    opacity: 0;
    transform: translateY(-28px);
    z-index: 9;
    pointer-events: none;
}

/* Scrollable content area */
.slide-inner {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1.5rem;
}

/* Fixed footer with CTA */
.slide-footer {
    flex-shrink: 0;
    padding: 1rem 1.5rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.s0-footer { padding-bottom: 1.2rem; }

.slide-unlock-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    text-align: center;
}

/* ========================================
   SHARED CONTENT LAYOUTS
   ======================================== */
.s-center-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 1rem 0 1.5rem;
}

.s-narrow { max-width: 560px; }

.s-padded {
    max-width: 820px;
    margin: 0 auto;
    padding: 0.5rem 0 1.5rem;
}

.s-tag {
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.s-label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.s-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.s-title-xl {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.s-lead {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.s-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* ========================================
   SLIDE 0 — INTRO
   ======================================== */
.s0-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100dvh - var(--header-h) - var(--footer-h));
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 0;
}

.event-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.event-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-body);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.event-chip i { color: var(--accent-gold); font-size: 0.78rem; }

.timezone-card {
    width: 100%;
    max-width: 520px;
    margin: -0.7rem 0 1.5rem;
    padding: 0.85rem;
    background: linear-gradient(135deg, rgba(197,168,128,0.12), rgba(255,255,255,0.025));
    border: 1px solid rgba(197,168,128,0.24);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.32);
}

.timezone-title {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--accent-gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.timezone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.timezone-item {
    background-color: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 7px;
    padding: 0.58rem 0.52rem;
}

.timezone-country {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.15;
    margin-bottom: 0.25rem;
}

.timezone-item strong {
    display: block;
    color: var(--text-light);
    font-size: 1.04rem;
    line-height: 1;
}

.s0-question {
    background: linear-gradient(135deg, #131313, #0e0e0e);
    border: 1px solid rgba(197,168,128,0.18);
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-glow);
}

.s0-question p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.4;
}

.s0-mobile-hook { display: none; }

.s0-visual { display: flex; justify-content: center; align-items: center; }

.s0-img-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.s-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.05);
}

.s0-img-border {
    position: absolute;
    top: 12px; left: 12px;
    right: -12px; bottom: -12px;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   SLIDE 1 — PAIN POINTS
   ======================================== */
.pain-reveal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #0e0e0e;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.5;
}

.pain-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.pain-item i {
    margin-top: 3px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ========================================
   SLIDE 2 — BEFORE/AFTER SLIDER
   ======================================== */
.slider-wrapper {
    max-width: 380px;
    margin: 1.5rem auto 0;
}

.slider-container {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    user-select: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.image-before {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.image-after {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slider-badge {
    position: absolute;
    bottom: 14px;
    padding: 0.4rem 0.8rem;
    background: rgba(10,10,10,0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    border-radius: 4px;
    z-index: 3;
}

.badge-before { left: 12px; }
.badge-after { right: 12px; }

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--accent-gold);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line { width: 1px; height: 100%; background: var(--accent-gold); }

.handle-button {
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 0 15px rgba(197,168,128,0.5);
    transition: transform 0.1s ease;
    gap: 2px;
}

.slider-handle:hover .handle-button { transform: scale(1.1); }

.slider-instruction {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 1rem;
    letter-spacing: 0.3px;
}

.slider-instruction i { color: var(--accent-gold); margin-right: 4px; }

.slider-instruction.unlocked-hint {
    color: var(--accent-gold);
}

/* ========================================
   PROCESS PREVIEW
   ======================================== */
.process-preview {
    margin: 1rem 0 1.25rem;
}

.process-preview-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.process-preview-head span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.98rem;
}

.process-preview-head small {
    color: var(--accent-gold);
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.process-step {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 9 / 14;
    background-color: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 34px rgba(0,0,0,0.36);
}

.process-step img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.03);
}

.process-step::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
    pointer-events: none;
}

.process-step figcaption {
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.62rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.15;
}

.process-step figcaption span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 0.68rem;
    font-weight: 800;
}

/* ========================================
   SLIDE 3 — TEMARIO / MÓDULOS
   ======================================== */
.module-counter-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0.8rem 0 1.2rem;
}

.module-counter-text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.module-counter-text span {
    color: var(--accent-gold);
    font-weight: 700;
}

.module-progress-track {
    width: 100%;
    height: 3px;
    background-color: #1e1e1e;
    border-radius: 2px;
    overflow: hidden;
}

.module-progress-fill {
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 2px;
    transition: width 0.4s var(--ease-out);
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.module-card {
    background-color: #0d0d0d;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.module-card.seen {
    border-color: rgba(197,168,128,0.25);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.module-header:hover { background-color: rgba(255,255,255,0.02); }

.module-num {
    font-weight: 700;
    font-size: 0.7rem;
    color: rgba(197,168,128,0.35);
    min-width: 20px;
    transition: color 0.3s ease;
}

.module-card.seen .module-num { color: var(--accent-gold); }

.module-header h3 {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
}

.module-check-icon {
    font-size: 0.7rem;
    color: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.module-card.seen .module-check-icon { opacity: 1; }

.module-toggle-icon {
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out), color 0.2s;
}

.module-card.open .module-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
}

.module-body p {
    padding: 0 1rem 1rem 2.8rem;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ========================================
   SLIDE 4 — MENTORA
   ======================================== */
.s4-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
    min-height: calc(100dvh - var(--header-h) - var(--footer-h));
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
}

.s4-img-wrap {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
    justify-self: end;
}

.s4-img-border {
    position: absolute;
    top: 12px; left: 12px;
    right: -12px; bottom: -12px;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

.s4-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

.s4-stat { display: flex; flex-direction: column; gap: 2px; }

.stat-n {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-l {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SLIDE 5 — QUÉ INCLUYE
   ======================================== */
.inc-counter-wrap {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0.4rem 0 1.2rem;
}

.inc-counter-wrap span {
    color: var(--accent-gold);
    font-weight: 700;
}

.inc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.inc-card {
    position: relative;
    background-color: #0d0d0d;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.inc-card:hover { transform: translateY(-2px); border-color: #2a2a2a; }

.inc-card.revealed {
    border-color: rgba(197,168,128,0.25);
    cursor: default;
}

.inc-card.revealed:hover { transform: none; }

.inc-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(2px);
    z-index: 2;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.inc-lock-overlay i {
    font-size: 1.4rem;
    color: #333;
}

.inc-card.revealed .inc-lock-overlay {
    opacity: 0;
    visibility: hidden;
}

.inc-content {
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    flex: 1;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.inc-card.revealed .inc-content { opacity: 1; }

.inc-icon-wrap {
    width: 46px;
    height: 46px;
    background-color: rgba(197,168,128,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.inc-content h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

.inc-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* ========================================
   SLIDE 6 — COUNTDOWN / PRECIO
   ======================================== */
.s6-countdown {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1rem 0 1.5rem;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0.7rem;
    border: 1px solid rgba(197,168,128,0.16);
    border-radius: 10px;
    background: radial-gradient(circle at 50% 0%, rgba(197,168,128,0.14), rgba(10,10,10,0.2) 55%);
    box-shadow: var(--shadow-glow);
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(197,168,128,0.12);
    min-width: 68px;
    padding: 0.7rem 0;
    border-radius: 5px;
}

.timer-num {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-light);
    line-height: 1;
}

.timer-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.s6-price-box {
    background: linear-gradient(135deg, #121212, #0e0e0e);
    border: 1px solid rgba(197,168,128,0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
    margin-bottom: 1.2rem;
}

.price-badge {
    display: inline-block;
    background-color: rgba(197,168,128,0.1);
    border: 1px solid rgba(197,168,128,0.2);
    color: var(--accent-gold);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.price-old-val {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new-val {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.price-note {
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 0.3px;
}

.s6-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.s6-inc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-body);
}

.s6-inc-item i { color: var(--accent-gold); font-size: 0.75rem; }

.s6-urgency {
    font-size: 0.82rem;
    color: var(--accent-gold);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ========================================
   SLIDE 7 — LEAD CAPTURE
   ======================================== */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.lead-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.lead-field span {
    color: var(--text-body);
    font-size: 0.82rem;
    font-weight: 600;
}

.lead-field input,
.lead-field select {
    width: 100%;
    min-height: 48px;
    background-color: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    padding: 0.78rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--accent-gold) 50%), linear-gradient(135deg, var(--accent-gold) 50%, transparent 50%);
    background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.lead-field input:focus,
.lead-field select:focus {
    border-color: rgba(197,168,128,0.55);
    box-shadow: 0 0 0 3px rgba(197,168,128,0.1);
}

.phone-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 0.55rem;
}

.lead-field .dial-code-input {
    text-align: center;
    font-weight: 700;
    color: var(--accent-gold-light);
}

.lead-error {
    min-height: 1.1rem;
    color: var(--danger);
    font-size: 0.82rem;
    line-height: 1.35;
}

/* ========================================
   SLIDE 7 — ELIGE PAGO
   ======================================== */
.pay-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pay-choice-card {
    background-color: #0e0e0e;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.pay-choice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pay-choice-card:hover {
    border-color: rgba(197,168,128,0.3);
    background-color: #121212;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.pay-choice-card:hover::before { opacity: 1; }

.pay-choice-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.pay-wompi-icon { background-color: rgba(116,21,212,0.15); color: #9f4ef0; }
.pay-nequi-icon { background-color: rgba(224,0,122,0.12); color: var(--nequi-pink); }

.pay-choice-card h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.2;
}

.pay-choice-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

.pay-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0.3rem;
}

.pay-badge-chip {
    font-size: 0.68rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--text-muted);
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
}

.nequi-chip {
    background-color: rgba(224,0,122,0.1);
    border-color: rgba(224,0,122,0.2);
    color: var(--nequi-pink);
}

.pay-choice-arrow {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}

.pay-choice-card:hover .pay-choice-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   SLIDES 8/9 — PAYMENT FLOWS
   ======================================== */
.pay-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.pay-step {
    display: flex;
    gap: 1rem;
    opacity: 0.35;
    transition: opacity 0.5s ease;
}

.pay-step.active { opacity: 1; }
.pay-step.done { opacity: 0.7; }

.pay-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.pay-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.pay-step.active .pay-step-num {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-dark);
}

.pay-step.done .pay-step-num {
    background-color: rgba(197,168,128,0.15);
    border-color: rgba(197,168,128,0.3);
    color: var(--accent-gold);
}

.pay-step-line {
    width: 1px;
    flex: 1;
    min-height: 1.5rem;
    background-color: #1e1e1e;
    margin: 4px 0;
}

.pay-step-body {
    padding: 0.3rem 0 1.5rem;
    flex: 1;
}

.pay-step-body h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.pay-step-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.pay-security-note {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
}

.pay-security-note i { color: #00C853; }

/* Nequi copy box */
.nequi-copy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(57,0,82,0.12);
    border: 1px solid rgba(224,0,122,0.18);
    border-radius: 5px;
    padding: 0.7rem 1rem;
    margin-top: 0.5rem;
    gap: 1rem;
}

.nequi-num-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    font-family: var(--font-sans);
}

/* ========================================
   SLIDE 10 — CONFIRMACIÓN
   ======================================== */
.s-confirm {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
}

.confirm-icon-wrap {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    animation: pop-in 0.5s var(--ease-out) both;
}

@keyframes pop-in {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.confirm-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin: 1.5rem 0;
    text-align: left;
    background-color: #0d0d0d;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
}

.confirm-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.confirm-detail-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.confirm-detail-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.confirm-detail-item strong {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.confirm-detail-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.confirm-contact {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.confirm-contact p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.thank-you-body {
    min-height: 100dvh;
    background:
        linear-gradient(180deg, rgba(197,168,128,0.08), transparent 34%),
        var(--bg-dark);
    color: var(--text-body);
    font-family: var(--font-sans);
}

.thank-you-page {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.thank-you-card {
    width: min(100%, 560px);
    padding: 2rem 0;
}

.thank-you-logo {
    width: 112px;
    height: auto;
    opacity: 0.86;
    margin-bottom: 1.4rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .s0-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0.5rem 0;
        min-height: auto;
    }

    .s0-visual {
        order: -1;
    }

    .s0-img-wrap {
        max-width: 100%;
        aspect-ratio: auto;
        border-radius: 6px;
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
        background-color: #050505;
    }

    .s0-img-wrap img {
        height: auto;
        object-fit: contain;
        object-position: center top;
    }
    .s0-img-border { display: none; }

    .s-title-xl { font-size: 2.8rem; }

    .s4-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        min-height: auto;
    }

    .s4-img-wrap {
        max-width: 100%;
        aspect-ratio: auto;
        border-radius: 6px;
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
        justify-self: auto;
        background-color: #050505;
    }

    .s4-img-wrap img {
        height: auto;
        object-fit: contain;
        object-position: center top;
    }

    .s4-img-border { display: none; }
    .s4-stats { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 640px) {
    :root {
        --header-h: 52px;
        --footer-h: 76px;
    }

    html { font-size: 16px; }

    body.immersive { line-height: 1.45; }

    .jh-logo { height: 24px; }
    .jh-step-label { display: none; }

    .s-title { font-size: 1.72rem; margin-bottom: 0.68rem; }
    .s-title-xl { font-size: 2.15rem; margin-bottom: 0.55rem; }

    .slide-inner { padding: 1.18rem 1rem 0.95rem; }
    .slide:not(#s-0) .slide-inner { padding-top: 2.25rem; }
    .slide-footer { padding: 0.72rem 1rem 0.86rem; }
    .s0-footer { padding-bottom: 0.86rem; }

    .slide-cta {
        min-height: 48px;
        padding: 0.78rem 1rem;
        font-size: 1rem;
        max-width: 430px;
    }

    .s0-layout { gap: 0.72rem; padding-top: 0; }
    .s0-text { text-align: center; }
    .s0-text .s-title-xl,
    .s0-text .s-title-xl {
        display: none;
    }
    .s0-text .s-lead {
        display: none;
    }
    .s-tag {
        font-size: 0.66rem;
        letter-spacing: 2.7px;
        margin-bottom: 0.55rem;
    }
    .s-label {
        display: none;
        font-size: 0.64rem;
        letter-spacing: 2px;
        margin-bottom: 0.52rem;
    }
    .s-desc {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.82rem;
    }
    .s0-question { display: none; }
    .s0-mobile-hook {
        display: block;
        max-width: 330px;
        margin: 0.7rem auto 0;
        color: var(--text-muted);
        font-size: 0.96rem;
        line-height: 1.42;
    }
    .event-chips {
        justify-content: center;
        gap: 0.42rem;
        margin-bottom: 0.55rem;
    }
    .event-chip {
        justify-content: center;
        font-size: 0.8rem;
        line-height: 1.2;
        padding: 0.32rem 0.62rem;
        border-radius: 999px;
    }
    .timezone-card {
        max-width: 360px;
        margin: 0 auto 0.62rem;
        padding: 0.62rem;
        border-radius: 9px;
    }
    .timezone-title {
        justify-content: center;
        font-size: 0.72rem;
        margin-bottom: 0.52rem;
    }
    .timezone-grid {
        gap: 0.38rem;
    }
    .timezone-item {
        padding: 0.48rem 0.3rem;
        text-align: center;
    }
    .timezone-country {
        font-size: 0.68rem;
        margin-bottom: 0.2rem;
    }
    .timezone-item strong {
        font-size: 0.98rem;
    }
    .s0-img-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: min(52dvh, 468px);
    }
    .s0-img-wrap img {
        width: auto;
        max-width: 100%;
        max-height: min(52dvh, 468px);
    }

    .s-padded, .s-center-content { padding-bottom: 1rem; }
    .s-center-content { padding-top: 0.18rem; }

    /* Temario: bigger tap targets */
    .module-header { padding: 1rem; }

    /* Inclusions: 2 columns */
    .inc-grid { grid-template-columns: repeat(2, 1fr); }
    .inc-card { min-height: 140px; }

    /* Countdown: compact */
    .countdown-timer { gap: 0.5rem; padding: 0.55rem; }
    .timer-segment { min-width: 56px; }
    .timer-num { font-size: 1.6rem; }

    /* Payment choice: stack */
    .pay-choice-grid { grid-template-columns: 1fr; }

    /* s6 includes: single column */
    .s6-includes { grid-template-columns: 1fr; }

    /* slider: less padding */
    .slider-wrapper {
        width: min(100%, 300px);
        margin-top: 0.9rem;
    }

    .slider-container {
        aspect-ratio: 3/4;
        max-height: 39dvh;
    }

    .s4-layout { gap: 0.85rem; padding-top: 0; }
    .s4-img-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: min(40dvh, 350px);
    }
    .s4-img-wrap img {
        width: auto;
        max-width: 100%;
        max-height: min(40dvh, 350px);
    }
    .s4-text .s-desc {
        font-size: 0.98rem;
        margin-bottom: 0.65rem;
    }
    .s4-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.55rem;
        padding-top: 0.9rem;
        margin-top: 0.85rem;
    }
    .stat-n { font-size: 1.35rem; }
    .stat-l { font-size: 0.59rem; letter-spacing: 0.7px; }

    .pain-reveal-list {
        gap: 0.64rem;
        margin-top: 0.9rem;
    }
    .pain-item {
        padding: 0.78rem 0.86rem;
        font-size: 0.98rem;
        line-height: 1.42;
    }

    .module-counter-wrap { margin: 0.5rem 0 0.85rem; }
    .modules-list { gap: 0.42rem; }
    .module-counter-text { font-size: 0.9rem; }
    .module-header h3 { font-size: 1rem; }
    .module-body p {
        font-size: 0.95rem;
        line-height: 1.48;
    }

    .process-preview {
        margin: 0.8rem -1rem 0.95rem 0;
    }
    .process-preview-head {
        padding-right: 1rem;
        margin-bottom: 0.58rem;
    }
    .process-preview-head span { font-size: 0.98rem; }
    .process-preview-head small { font-size: 0.7rem; }
    .process-steps {
        display: flex;
        gap: 0.58rem;
        overflow-x: auto;
        padding: 0 1rem 0.2rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .process-step {
        flex: 0 0 132px;
        aspect-ratio: 9 / 14;
        scroll-snap-align: start;
    }
    .process-step figcaption {
        left: 0.52rem;
        right: 0.52rem;
        bottom: 0.52rem;
        gap: 0.34rem;
        font-size: 0.84rem;
    }
    .process-step figcaption span {
        width: 20px;
        height: 20px;
        font-size: 0.62rem;
    }

    .inc-grid {
        gap: 0.62rem;
    }
    .inc-card { min-height: 152px; }
    .inc-content { padding: 0.9rem 0.7rem; }
    .inc-icon-wrap { width: 38px; height: 38px; }
    .inc-content h3 { font-size: 0.94rem; }
    .inc-content p {
        display: block;
        font-size: 0.76rem;
        line-height: 1.36;
    }

    .s6-countdown { margin: 0.75rem 0 0.95rem; }
    .s6-price-box { padding: 1.1rem; margin-bottom: 0.85rem; }
    .price-new-val { font-size: 2rem; }
    .price-display { flex-direction: column; gap: 3px; }

    .pay-choice-grid { margin-top: 1rem; gap: 0.78rem; }
    .lead-form { gap: 0.72rem; margin-top: 0.9rem; }
    .lead-grid { gap: 0.72rem; }
    .lead-field span { font-size: 0.92rem; }
    .lead-field input,
    .lead-field select {
        min-height: 48px;
        font-size: 1rem;
        padding: 0.72rem 0.78rem;
    }
    .phone-row {
        grid-template-columns: 82px 1fr;
        gap: 0.45rem;
    }
    .lead-error { font-size: 0.9rem; }
    .pay-choice-card { padding: 1rem; }
    .pay-choice-card h3 { font-size: 1.12rem; }
    .pay-choice-card p { font-size: 0.94rem; }
    .pay-flow { margin-top: 0.75rem; }
    .pay-step { gap: 0.75rem; }
    .pay-step-body { padding-bottom: 1rem; }
    .pay-step-body h4 { font-size: 1.02rem; }
    .pay-step-body p { font-size: 0.94rem; }
}

@media (max-width: 380px) {
    .s-title { font-size: 1.58rem; }
    .s-title-xl { font-size: 1.95rem; }
    .event-chips { gap: 0.4rem; }
    .event-chip { font-size: 0.74rem; padding: 0.28rem 0.55rem; }
    .timezone-card { padding: 0.55rem; }
    .timezone-grid { gap: 0.28rem; }
    .timezone-country { font-size: 0.62rem; }
    .timezone-item strong { font-size: 0.9rem; }
    .inc-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .lead-grid { grid-template-columns: 1fr; }
    .slider-wrapper { width: min(100%, 286px); }
    .timer-segment { min-width: 50px; }
    .timer-num { font-size: 1.42rem; }
}


/* ================================================================
   SENIOR DESIGN SYSTEM v2
   Editorial scale · Elevated contrast · NYC agency feel
   ================================================================ */

/* --- TOKENS: CONTRAST UPGRADE --- */
:root {
    --text-muted:      #AEABA4;   /* was #9E9B95 — +legibility */
    --text-body:       #F0EDE8;   /* crisper off-white */
    --border-color:    #1C1C1C;
    --accent-gold:     #C9AC84;   /* warmer gold */
    --shadow-glow:     0 0 36px rgba(201,172,132,0.16);
    --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- GRAIN TEXTURE OVERLAY --- */
.journey-main::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 260px 260px;
}

/* --- EDITORIAL TYPOGRAPHY SCALE --- */
.s-title-xl {
    font-size: 5.2rem;
    letter-spacing: -2.5px;
    font-weight: 700;
    line-height: 0.96;
    margin-bottom: 1.4rem;
}

.s-title-xl .italic {
    font-weight: 400;
    letter-spacing: -1px;
    display: block;
    margin-top: 0.06em;
}

.s-title {
    font-size: 2.5rem;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
    color: #FFFFFF;
}

.s-label,
.s-tag {
    font-size: 0.63rem;
    letter-spacing: 5px;
    font-weight: 500;
    opacity: 0.65;
}

.s-lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.68;
}

.s-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #C2BEB7;
    line-height: 1.65;
}

/* --- CTA BUTTON — refined uppercase --- */
.slide-cta:not([disabled]) {
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 1.1rem 2.4rem;
    border-radius: 3px;
    box-shadow: 0 4px 22px rgba(201,172,132,0.2);
}

.slide-cta:not([disabled]):hover {
    box-shadow: 0 8px 32px rgba(201,172,132,0.32);
    transform: translateY(-3px);
}

/* --- HEADER REFINEMENTS --- */
.journey-header { border-bottom: 1px solid rgba(255,255,255,0.03); }
.jh-logo { opacity: 1; }
.jh-seg { height: 2px; border-radius: 1px; }

.jh-step-label {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #3a3a3a;
    font-weight: 600;
}

/* --- PAIN ITEMS: left accent border --- */
.pain-item {
    border-left: 2px solid #1a1a1a;
    padding: 1.1rem 1.3rem;
    font-size: 1rem;
    color: var(--text-body);
}

.pain-item.visible { border-left-color: rgba(201,172,132,0.22); }

/* --- MODULE CARDS: italic numbers --- */
.module-num {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.88rem;
    font-weight: 400;
    min-width: 24px;
    color: rgba(201,172,132,0.22);
}

.module-card.seen .module-num { color: var(--accent-gold); }
.module-card.seen { border-left: 2px solid rgba(201,172,132,0.3); }
.module-header h3 { font-size: 0.95rem; letter-spacing: -0.1px; }

/* --- COUNTDOWN: luxury watch aesthetic --- */
.timer-segment {
    background: rgba(201,172,132,0.04);
    border: 1px solid rgba(201,172,132,0.11);
    min-width: 76px;
    padding: 1rem 0.4rem 0.85rem;
    position: relative;
}

.timer-segment::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,172,132,0.3), transparent);
}

.timer-num {
    font-size: 2.6rem;
    color: #FFFFFF;
    letter-spacing: -1px;
}

.timer-label {
    font-size: 0.58rem;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    opacity: 0.55;
    margin-top: 6px;
}

/* --- PRICE BOX --- */
.s6-price-box {
    background: linear-gradient(145deg, #111111, #090909);
    border: 1px solid rgba(201,172,132,0.2);
    box-shadow: 0 0 44px rgba(201,172,132,0.07), inset 0 1px 0 rgba(255,255,255,0.03);
    padding: 2rem;
}

.price-new-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1.5px;
}

.price-old-val { color: #444; }

/* --- SLIDE FOOTER: editorial gradient --- */
.slide-footer {
    padding: 1rem 2rem 1.4rem;
    background: linear-gradient(to top, rgba(4,4,4,1) 0%, rgba(10,10,10,0.85) 65%, transparent 100%);
    border-top: none;
}

.slide-unlock-hint {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3a3a3a;
    font-weight: 600;
}

/* --- INCLUSION ICON --- */
.inc-icon-wrap {
    border: 1px solid rgba(201,172,132,0.1);
    background-color: rgba(201,172,132,0.06);
}

/* --- CONFIRMATION ICON --- */
.confirm-icon-wrap { font-size: 5rem; }

/* --- PAYMENT CHOICE CARDS --- */
.pay-choice-card { padding: 2rem 1.5rem 2.5rem; border-radius: 6px; }
.pay-choice-card h3 { font-size: 1.1rem; letter-spacing: -0.2px; }
.pay-choice-card p { font-size: 0.85rem; color: #777; }
.pay-choice-card:hover { box-shadow: 0 16px 44px rgba(0,0,0,0.55); }

/* --- RESPONSIVE OVERRIDES FOR NEW SIZES --- */
@media (max-width: 1024px) {
    .s-title-xl { font-size: 4.2rem; letter-spacing: -2px; }
}
@media (max-width: 900px) {
    .s-title-xl { font-size: 3.4rem; letter-spacing: -1.5px; }
    .s-title { font-size: 2.1rem; }
}
@media (max-width: 640px) {
    .s-title-xl { font-size: 2.7rem; letter-spacing: -1px; }
    .s-title-xl .italic { display: inline; }
    .s-title { font-size: 1.85rem; letter-spacing: -0.3px; }
    .slide-cta:not([disabled]) { font-size: 0.74rem; letter-spacing: 1.2px; }
    .slide-footer { padding: 0.9rem 1.2rem 1.1rem; }
    .timer-num { font-size: 2rem; letter-spacing: -0.5px; }
    .timer-segment { min-width: 60px; padding: 0.8rem 0.3rem 0.65rem; }
}

/* ================================================================
   NYC AGENCY POLISH v3
   ui-ux-pro-max · Dark OLED + Exaggerated Minimalism
   ================================================================ */

/* ── 1. CONTRAST BOOST: step label legible, not invisible ── */
.jh-step-label {
    color: rgba(255,255,255,0.28) !important;
}

/* ── 2. HERO TITLE: true clamp editorial scale ── */
.s-title-xl {
    font-size: clamp(2.8rem, 9vw, 6.5rem);
    letter-spacing: clamp(-1px, -0.04em, -3px);
    font-weight: 800;
    line-height: 0.94;
}

/* ── 3. SECTION TITLES: bolder, tighter ── */
.s-title {
    font-size: clamp(1.75rem, 5vw, 2.8rem);
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #FFFFFF;
}

/* ── 4. BODY TEXT: 7:1+ contrast on #0A0A0A ── */
:root {
    --text-body:  #F5F2ED;
    --text-muted: #B9B4AC;
}

/* ── 5. CURSOR POINTER on every interactive element ── */
.pain-item,
.module-header,
.module-card,
.inc-card,
.pay-choice-card,
.pay-step,
.btn-back,
.jh-seg {
    cursor: pointer;
}

/* ── 6. TOUCH TARGETS: 44px minimum (WCAG 2.5.5) ── */
.slide-cta,
.btn,
.btn-back,
.pay-choice-card button,
[data-next],
[data-goto] {
    min-height: 44px;
}

/* ── 7. FOCUS RINGS: visible for keyboard nav ── */
:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── 8. SMOOTH HOVER on module and inc cards ── */
.module-card {
    transition: border-color 0.2s ease-out, background 0.2s ease-out;
}
.module-card:hover { background: rgba(255,255,255,0.025); }

.inc-card {
    transition: transform 0.22s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.22s cubic-bezier(0.25,1,0.5,1),
                border-color 0.22s ease;
}
.inc-card:hover:not(.revealed) {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
    border-color: rgba(201,172,132,0.25);
}

/* ── 9. PAY CHOICE CARDS: stronger hover state ── */
.pay-choice-card {
    transition: transform 0.25s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.25s cubic-bezier(0.25,1,0.5,1),
                border-color 0.25s ease;
    cursor: pointer;
}
.pay-choice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,172,132,0.35) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,172,132,0.15);
}

/* ── 10. PAIN ITEMS: pointer + smooth entrance ── */
.pain-item {
    transition: border-left-color 0.4s ease-out, opacity 0.4s ease-out;
}
.pain-item:not(.visible) { opacity: 0.25; }

/* ── 11. SLIDE-CTA disabled state: clearly inactive ── */
.slide-cta[disabled] {
    opacity: 0.22;
    cursor: not-allowed;
    pointer-events: none;
    letter-spacing: 1px;
    font-size: 0.78rem;
}

/* ── 12. UNLOCK HINT: improved visibility when unlocked ── */
.unlocked-hint {
    color: rgba(201,172,132,0.8) !important;
    letter-spacing: 2px;
}

/* ── 13. CONSISTENT VERTICAL RHYTHM in slide-inner ── */
.slide-inner > * + * { margin-top: 0; }  /* reset stray margins */
.slide-inner {
    --flow-space: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── 14. PREFERS-REDUCED-MOTION (WCAG 2.3.3 / skill priority HIGH) ── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .slide { transition: opacity 0.15s ease !important; transform: none !important; }
    .slide.active { opacity: 1 !important; transform: none !important; }
    .slide.exiting { opacity: 0 !important; transform: none !important; }
}

/* ── 15. RESPONSIVE: touch targets on mobile ── */
@media (max-width: 640px) {
    .slide-cta { font-size: 0.78rem !important; min-height: 50px; }
    .pay-choice-card { padding: 1.5rem 1.2rem 2rem; }
    .pain-item { font-size: 0.95rem; padding: 1rem 1.1rem; }
}

/* ================================================================
   CRO COMPONENTS v1
   Testimonials · Guarantee · Spots · FAQ · Form trust
   ================================================================ */

/* ── SLIDER CAPTION (Slide 2) ── */
.slider-caption {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.3px;
    margin-top: 0.75rem;
    font-style: italic;
    line-height: 1.5;
}

/* ── TESTIMONIALS (Slide 4) ── */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 0.25rem;
}

@media (min-width: 700px) {
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.testimonial-card:hover {
    border-color: rgba(201,172,132,0.22);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.t-stars svg {
    width: 80px;
    height: 16px;
}

.t-quote {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-body);
    flex: 1;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(201,172,132,0.2);
    flex-shrink: 0;
    background: var(--bg-card-hover);
}

.t-author strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
}

.t-author span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1px;
}

/* ── SPOTS COUNTER (Slide 6) ── */
.spots-left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: #FF6B6B;
    font-weight: 500;
    margin-top: 1.2rem;
    justify-content: center;
}

.spots-left strong { color: #FF4A4A; }

.spots-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF4A4A;
    flex-shrink: 0;
    animation: spotsPluse 1.8s ease-in-out infinite;
}

@keyframes spotsPluse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── GUARANTEE BADGE (Slide 6) ── */
.guarantee-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: rgba(201,172,132,0.05);
    border: 1px solid rgba(201,172,132,0.18);
    border-radius: 8px;
    padding: 1rem 1.1rem;
    margin-top: 1.1rem;
    text-align: left;
}

.guarantee-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--accent-gold);
    margin-top: 2px;
}

.guarantee-badge strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

.guarantee-badge p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── FAQ ACCORDION (New slide) ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0.25rem;
    text-align: left;
    color: var(--text-body);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-q:hover { color: #FFFFFF; }

.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-out), color 0.2s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.faq-item.open .faq-q { color: #FFFFFF; }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
}

.faq-a p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 0.25rem 1.1rem;
    margin: 0;
}

/* ── FORM TRUST COPY ── */
.form-trust {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.6rem;
    letter-spacing: 0.3px;
    opacity: 0.7;
}

/* ── S4 STATS 4-column layout when 4 stats ── */
.s4-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 600px) {
    .s4-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ── Responsive: testimonials stacked on mobile ── */
@media (max-width: 640px) {
    .testimonial-grid { gap: 0.75rem; }
    .testimonial-card { padding: 1rem; }
    .guarantee-badge { padding: 0.85rem; }
    .spots-left { font-size: 0.78rem; }
    .faq-q { font-size: 0.84rem; }
}
