/* ============================================================================
   Veredict Landing Page
   Matches Veredict Landing V1.1 reference design
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;800;900&family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Design Tokens ───────────────────────────────────────────────────────── */

:root {
    /* Backgrounds */
    --bg-base:        #0a1426;
    --bg-darker:      #050b18;
    --bg-card:        #0e1a30;
    --bg-card-soft:   #142340;

    /* Accents — cyan/teal is the hero color */
    --teal:           #20E0D6;
    --teal-soft:      rgba(32, 224, 214, 0.10);
    --teal-line:      rgba(32, 224, 214, 0.25);
    --cyan:           #1ED5C8;

    /* Brand palette */
    --silver:         #E2E5ED;
    --pink:           #FE73AB;
    --amber:          #FAAB61;
    --electric-blue:  #7684FA;

    /* Quote/segment card colors (solid, bright pastels) */
    --card-pink:      #FF3D8C;
    --card-pink-soft: #FF7AAB;
    --card-purple:    #9B7BFF;
    --card-orange:    #FF8855;
    --card-beige:     #F0D8A8;
    --card-mint:      #6DE7C9;
    --card-yellow:    #FFCC55;

    /* Typography */
    --text-white:     #ffffff;
    --text-soft:      #D0DCE8;
    --text-muted:     #8A98B0;
    --text-dim:       #6B7A92;

    /* Fonts */
    --font-display:   'Unbounded', system-ui, sans-serif;
    --font-body:      'DM Sans', system-ui, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base); /* canvas falls through to this */
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-soft);
    background: transparent; /* let fixed canvas show through */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Layout ──────────────────────────────────────────────────────────────── */

.landing-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.landing-section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

/* ── Typography Utilities ────────────────────────────────────────────────── */

.landing-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--teal);
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 16px;
}

.landing-section-title-left {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--amber);
    letter-spacing: 0;
}

.landing-section-subtitle {
    text-align: center;
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 56px;
    font-weight: 300;
}

.landing-text-pink { color: var(--card-pink); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 6px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: 1.5px solid transparent;
    box-sizing: border-box;
    max-width: 100%;
}

.landing-btn-primary {
    background-color: var(--amber);
    color: #0a1426;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.25s ease;
}

.landing-btn-primary:hover {
    background-color: var(--electric-blue);
    color: var(--bg-base);
    transform: translate(0px, -9px);
    box-shadow: 0 14px 32px rgba(5, 11, 24, 0.5);
}

@keyframes landing-btn-float {
    0%   {
        transform: translate(3px, 0px);
        box-shadow: 0 4px 18px rgba(32, 224, 214, 0.18);
    }
    50%  {
        transform: translate(-3px, -5px);
        box-shadow: 0 10px 26px rgba(32, 224, 214, 0.32);
    }
    100% {
        transform: translate(3px, 0px);
        box-shadow: 0 4px 18px rgba(32, 224, 214, 0.18);
    }
}

.landing-btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
    padding: 9px 18px;
    font-size: 12px;
}

.landing-btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.landing-btn-ghost {
    background: transparent;
    color: var(--teal);
    padding: 13px 18px;
}

.landing-btn-ghost:hover { color: #3aeae0; }

.landing-btn-large {
    padding: 16px 36px;
    font-size: 14px;
}

.landing-btn-founder {
    background-color: var(--card-orange);
    color: #0a1426;
    font-family: 'Syne', sans-serif;
}

.landing-btn-founder:hover {
    background-color: #ff9d6a;
    transform: translateY(-1px);
}

.landing-btn-standard {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 20, 38, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
    overflow: hidden;
}

.landing-nav .landing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.landing-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.3px;
    text-indent: -7px;
}

.landing-logo-mark { flex-shrink: 0; }

.landing-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.landing-nav-links a {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.landing-nav-links a:hover { color: var(--teal); }
.landing-nav-links a.is-active { color: var(--amber); }

/* Hamburger button */
.landing-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 32px;
    height: 32px;
}

.landing-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-soft);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s ease;
    transform-origin: center;
}

.landing-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
    background: var(--amber);
}
.landing-hamburger[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
    background: var(--amber);
}

/* Mobile menu panel */
.landing-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    border-top: 1px solid transparent;
}

.landing-mobile-menu.is-open {
    max-height: 400px;
    padding: 16px 0 24px;
    border-top-color: rgba(255, 255, 255, 0.06);
}

.landing-mobile-link {
    display: block;
    padding: 14px 24px;
    color: var(--text-soft);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.landing-mobile-link:hover { color: var(--amber); }

.landing-mobile-cta {
    margin: 16px 24px 0;
    text-align: center;
    justify-content: center;
    align-self: stretch;
    box-sizing: border-box;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.landing-hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: visible;
    background: transparent;
    z-index: 10;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.landing-hero-content { display: flex; flex-direction: column; gap: 28px; }

.landing-headline {
    font-family: var(--font-display);
    font-size: 43px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--teal) 0%, #5BB8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subheadline {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 500px;
    font-weight: 300;
}

.landing-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.landing-hero-meta {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
}

.landing-meta-dot { color: var(--text-dim); }

.landing-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 90px;
    left: 102px;
    transform: scale(1.4);
}

/* ── Hero Deck ─────────────────────────────────────────────────────────── */

.landing-hero-deck {
    position: relative;
    width: 100%;
    max-width: 575px;
    /* ratio matches the tallest screenshot (588 × 412) */
    aspect-ratio: 588 / 412;
    margin: 0 auto;
}

.landing-hero-card {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: -9px 12px 17px -13px rgb(22 2 27 / 72%), 0 0 0 1px rgba(255, 255, 255, 0.12);
    animation: hero-card-cycle 12s cubic-bezier(0.81, 0, 0.19, 1) infinite;
    will-change: transform;
    transform-origin: center center;
}

.landing-hero-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

/* z-index managed by JS — static values here are the initial state */
.landing-hero-card--1 { animation-delay: 0s;  z-index: 3; }
.landing-hero-card--2 { animation-delay: -4s; z-index: 2; }
.landing-hero-card--3 { animation-delay: -8s; z-index: 1; }

@keyframes hero-card-cycle {
    /* ─ resting on top ─ */
    0%, 30% {
        transform: rotate(-1.5deg) scale(1) translateY(0);
    }
    /* ─ drop to middle ─ */
    36% {
        transform: rotate(2.5deg) scale(0.96) translateY(10px);
    }
    /* ─ rest in middle ─ */
    62% {
        transform: rotate(2.5deg) scale(0.96) translateY(10px);
    }
    /* ─ drop to back ─ */
    67% {
        transform: rotate(-5deg) scale(0.91) translateY(20px);
    }
    /* ─ rest in back ─ */
    82% {
        transform: rotate(-5deg) scale(0.91) translateY(20px);
    }
    /* ─ emerge — peak overshoot ─ */
    88% {
        transform: rotate(1deg) scale(1.05) translateY(-28px);
    }
    /* ─ settle on top ─ */
    95% {
        transform: rotate(-1.5deg) scale(1.01) translateY(-6px);
    }
    100% {
        transform: rotate(-1.5deg) scale(1) translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero-card { animation-play-state: paused; }
}

/* ── Problem Cards (quote cards) ─────────────────────────────────────────── */

.landing-problem-cards {
    background-color: var(--bg-darker);
}

.landing-problem-cards .landing-section-title,
.landing-problem-cards .landing-section-subtitle {
    text-align: left;
}

.landing-quote-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.landing-quote-card {
    padding: 24px 20px;
    border-radius: 8px;
    color: #0a1426;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.landing-quote-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.landing-quote-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    color: #0a1426;
}

.landing-quote-meta {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(10, 20, 38, 0.75);
    font-weight: 400;
    margin-top: auto;
}

.landing-quote-pink       { background: var(--card-pink); }
.landing-quote-purple     { background: var(--card-purple); }
.landing-quote-orange     { background: var(--card-orange); }
.landing-quote-beige      { background: var(--card-beige); }
.landing-quote-pink-light { background: var(--card-pink-soft); }

/* ── Reduce Work ─────────────────────────────────────────────────────────── */

.landing-reduce {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.landing-reduce-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 18px;
    letter-spacing: 0;
}

.landing-reduce-subtitle {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    font-weight: 300;
}

/* ── Defendible ──────────────────────────────────────────────────────────── */

.landing-defendible { background-color: var(--bg-darker); }

.landing-defendible-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.landing-defendible-meta {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 24px 0 32px;
    font-weight: 300;
}

.landing-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.landing-tag {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    user-select: none;
}

/* Per-tag accent colors */
.landing-tag:nth-child(1) { color: var(--cyan);           border: 1.5px solid var(--cyan); }
.landing-tag:nth-child(2) { color: var(--electric-blue);  border: 1.5px solid var(--electric-blue); }
.landing-tag:nth-child(3) { color: var(--pink);           border: 1.5px solid var(--pink); }
.landing-tag:nth-child(4) { color: var(--amber);          border: 1.5px solid var(--amber); }

.landing-tag.is-active,
.landing-tag:hover {
    color: #0a1426;
}
.landing-tag:nth-child(1).is-active, .landing-tag:nth-child(1):hover { background: var(--cyan); }
.landing-tag:nth-child(2).is-active, .landing-tag:nth-child(2):hover { background: var(--electric-blue); }
.landing-tag:nth-child(3).is-active, .landing-tag:nth-child(3):hover { background: var(--pink); }
.landing-tag:nth-child(4).is-active, .landing-tag:nth-child(4):hover { background: var(--amber); }

.landing-defendible-card {
    background: var(--teal);
    padding: 48px 40px;
    border-radius: 12px;
    color: #0a1426;
    height: 400px;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: background 0.25s ease, opacity 0.18s ease;
}

.landing-defendible-card.is-fading {
    opacity: 0;
}

.landing-defendible-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    line-height: 1;
    color: #0a1426;
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.landing-defendible-quote {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    line-height: 1.3;
    color: #0a1426;
    letter-spacing: 0;
}

/* ── 7 Pasos — Sticky scrollytelling ────────────────────────────────────── */

.landing-pasos { background-color: var(--bg-base); }

.landing-pasos-title { margin-bottom: 56px; }

.landing-pasos-sticky-layout {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 60px;
    align-items: start;
}

/* Left — step list */
.landing-pasos-steps { display: flex; flex-direction: column; }

.landing-paso-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.landing-paso-item:last-child { border-bottom: none; }
.landing-paso-item.is-active  { opacity: 1; }

.landing-paso-num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    color: var(--teal);
    background: transparent;
    border: 1px solid var(--teal-line);
    width: 44px;
    height: 44px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

/* Active state — teal (steps 1, 4, 7) */
.landing-paso-item.is-active .landing-paso-num {
    background: var(--teal);
    color: #0a1426;
    border-color: var(--teal);
}

/* Steps 2, 5 — warm orange */
.landing-paso-item:nth-child(2) .landing-paso-num,
.landing-paso-item:nth-child(5) .landing-paso-num {
    color: var(--amber);
    border-color: rgba(250, 171, 97, 0.4);
}
.landing-paso-item:nth-child(2).is-active .landing-paso-num,
.landing-paso-item:nth-child(5).is-active .landing-paso-num {
    background: var(--amber);
    border-color: var(--amber);
    color: #0a1426;
}

/* Steps 3, 6 — electric blue */
.landing-paso-item:nth-child(3) .landing-paso-num,
.landing-paso-item:nth-child(6) .landing-paso-num {
    color: var(--electric-blue);
    border-color: rgba(118, 132, 250, 0.4);
}
.landing-paso-item:nth-child(3).is-active .landing-paso-num,
.landing-paso-item:nth-child(6).is-active .landing-paso-num {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: #0a1426;
}

.landing-paso-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 8px;
    line-height: 1.3;
}

.landing-paso-body p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

/* Right — sticky screenshot panel */
.landing-pasos-visual-wrap {
    position: sticky;
    top: 88px;
}

.landing-pasos-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: #0d1525;
    aspect-ratio: 16 / 11;
}

/* Individual step screens */
.landing-paso-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(8px) scale(0.99);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.landing-paso-screen.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Browser chrome mockup */
.lpscreen-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.lpscreen-chrome-dots { display: flex; gap: 5px; }

.lpscreen-chrome-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    display: block;
}

.lpscreen-chrome-url {
    font-size: 9px;
    color: var(--text-dim);
    letter-spacing: 0.4px;
}

/* Screenshot area */
.lpscreen-img-wrap {
    flex: 1;
    overflow: hidden;
}

.lpscreen-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ── Zoom trigger ────────────────────────────────────────────────────────── */

.lpscreen-zoom-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(6, 10, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s, background 0.15s, color 0.15s, border-color 0.15s;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.landing-pasos-visual-wrap:hover .lpscreen-zoom-btn,
.landing-pasos-visual-wrap:focus-within .lpscreen-zoom-btn {
    opacity: 1;
}

.lpscreen-zoom-btn:hover {
    background: rgba(32, 224, 214, 0.1);
    border-color: rgba(32, 224, 214, 0.35);
    color: var(--teal);
}

/* ── Pasos Lightbox ──────────────────────────────────────────────────────── */

.pasos-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.pasos-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.pasos-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 18, 0.9);
    cursor: pointer;
}

.pasos-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1080px;
    max-height: calc(100vh - 60px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d1525;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    transform: scale(0.96) translateY(10px);
    transition: transform 0.3s ease;
}

.pasos-lightbox.is-open .pasos-lightbox-content {
    transform: scale(1) translateY(0);
}

.pasos-lightbox-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.pasos-lightbox-url {
    flex: 1;
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.4px;
}

.pasos-lightbox-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    line-height: 1;
}

.pasos-lightbox-close:hover {
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.06);
}

.pasos-lightbox-img-wrap {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.pasos-lightbox-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

.pasos-lightbox-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.pasos-lightbox-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.3px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.pasos-lightbox-nav:hover {
    color: var(--teal);
    background: rgba(32, 224, 214, 0.06);
}

.pasos-lightbox-nav:disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
}

.pasos-lightbox-counter {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* ── Reputacional ────────────────────────────────────────────────────────── */

.landing-reputacional {
    background-color: #1A2432;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.landing-reputacional-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
    letter-spacing: 0;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.landing-reputacional-accent { color: var(--teal); }

.landing-reputacional-text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.landing-reputacional-screens {
    display: block;
    border-radius: 0;
    position: absolute;
    bottom: 0;
    left: 64px;
    z-index: 0;
    max-width: calc(100% - 64px);
    height: auto;
}

/* ── Founder Proof ───────────────────────────────────────────────────────────── */

.landing-founder-proof {
    text-align: center;
}

.landing-founder-proof-highlight {
    font-size: 16px;
    font-weight: 500;
    color: var(--teal);
    margin: 24px 0;
}

.landing-founder-proof .landing-btn {
    display: inline-flex;
    margin-top: 16px;
}

/* ── Demo Video ──────────────────────────────────────────────────────────── */

.landing-demo {
    position: relative;
    overflow: hidden;
    padding: 0;
    box-shadow:
        inset 0 40px 60px rgba(0, 0, 0, 0.45),
        inset 0 -40px 60px rgba(0, 0, 0, 0.45);
}

.landing-demo-bkgd {
    position: absolute;
    inset: 0;
    background-image: url('/images/landing/bkgd-landing-demo.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .landing-demo-bkgd {
        background-image: url('/images/landing/bkgd-landing-demo@2x.jpg');
    }
}

.landing-demo-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ── Demo Player ─────────────────────────────────────────────────────────── */

.landing-demo-player {
    position: relative;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.landing-player-iframe-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.landing-player-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Poster — pre-play state */
.landing-player-poster {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: radial-gradient(ellipse at center, #060632, #01060e 70%);
    z-index: 2;
    transition: opacity 0.35s ease;
}

.landing-player-poster.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.landing-player-big-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--amber);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.landing-player-big-play:hover {
    transform: scale(1.1);
    background: var(--bg-darker);
}

.landing-player-big-play:hover svg path {
    fill: var(--amber);
}

.landing-demo-caption {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

.landing-demo-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--amber);
    margin: 0;
}

.landing-demo-meta {
    font-size: 14px;
    color: var(--silver);
    text-transform: uppercase;
    margin: 0;
}

/* Controls bar */
.landing-player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.landing-demo-player.is-playing:hover .landing-player-controls,
.landing-demo-player.controls-visible .landing-player-controls {
    opacity: 1;
}

.landing-player-playpause,
.landing-player-fs {
    background: none;
    border: none;
    color: var(--silver);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.landing-player-playpause:hover,
.landing-player-fs:hover { color: var(--amber); }

.landing-player-time {
    font-size: 11px;
    color: var(--silver);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    flex-shrink: 0;
    min-width: 32px;
}

/* Scrubber */
.landing-player-scrubber {
    flex: 1;
    position: relative;
    height: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.landing-player-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.landing-player-fill {
    height: 100%;
    width: 0%;
    background: var(--amber);
    border-radius: 2px;
    pointer-events: none;
    transition: width 0.1s linear;
}

.landing-player-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--amber);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.landing-player-scrubber:hover .landing-player-handle { opacity: 1; }

/* ── Testimonial ─────────────────────────────────────────────────────────── */

.landing-testimonial {
    background: transparent;
    text-align: center;
    padding: 80px 0;
}

.landing-testimonial-quote-mark {
    display: block;
    margin-bottom: -23px;
    margin-left: 85px;
}

.landing-testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-white);
    max-width: 780px;
    margin: 0 auto 24px;
    letter-spacing: 0;
    text-align: left;
}

.landing-testimonial-author {
    font-size: 11px;
    color: var(--teal);
    letter-spacing: 1.2px;
    line-height: 1.6;
    font-weight: 500;
    text-align: right;
    margin: 0 auto;
    width: 62%;
}

/* Testimonial cards grid */
.landing-tcard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.landing-tcard {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 28px 24px;
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

.landing-tcard-blue  { border-top-color: var(--electric-blue); }
.landing-tcard-pink  { border-top-color: var(--pink); }
.landing-tcard-amber { border-top-color: var(--amber); }

.landing-tcard-quote {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.landing-tcard-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-tcard-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    color: #0a0e27;
}

.landing-tcard-blue  .landing-tcard-avatar { background: var(--electric-blue); }
.landing-tcard-pink  .landing-tcard-avatar { background: var(--pink); }
.landing-tcard-amber .landing-tcard-avatar { background: var(--amber); }

.landing-tcard-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}

.landing-tcard-role {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Para Ti Si ──────────────────────────────────────────────────────────── */

.landing-para-ti {
    position: relative;
    overflow: hidden;
}

.landing-para-ti-bkgd {
    position: absolute;
    inset: 0;
    background-color: #0a1426;
    z-index: 0;
}

.landing-para-ti-bkgd::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: transparent;
}

.landing-para-ti > .landing-container {
    position: relative;
    z-index: 1;
}

.landing-para-ti-title {
    text-align: left;
    margin-bottom: 40px;
}

.landing-segment-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    overflow-x: auto;
    padding-top: 10px;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.landing-segment-cards:active {
    cursor: grabbing;
}

/* Ocultar scrollbar pero mantener scrolling funcional */
.landing-segment-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.landing-segment-cards::-webkit-scrollbar {
    display: none;
}

.landing-segment-card {
    padding: 26px 22px;
    border-radius: 8px;
    color: inherit;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    flex: 0 0 calc(23% - 12px);
    min-width: calc(23% - 12px);
    scroll-snap-align: start;
}

.landing-segment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
    background-color: #E2E5ED;
    color: #0a1426;
}

.landing-segment-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 900;
    color: inherit;
    line-height: 1.25;
}

.landing-segment-card p {
    font-size: 14px;
    color: inherit;
    line-height: 1.55;
    font-weight: 400;
}

.landing-segment-pink   { background: #142540; border: 1px solid rgba(32, 224, 214, 0.2); color: var(--text-white); }
.landing-segment-mint   { background: #142540; border: 1px solid rgba(32, 224, 214, 0.2); color: var(--text-white); }
.landing-segment-orange { background: #142540; border: 1px solid rgba(32, 224, 214, 0.2); color: var(--text-white); }
.landing-segment-purple { background: #142540; border: 1px solid rgba(32, 224, 214, 0.2); color: var(--text-white); }
.landing-segment-gray   { background: #142540; border: 1px solid rgba(32, 224, 214, 0.2); color: var(--text-white); }

.landing-para-ti-bottom {
    text-align: center;
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 1.5px;
    line-height: 1.7;
    margin: 0 auto;
    margin-bottom: 32px;
    background-color: #0b1527;
    width: 45%;
    padding: 10px;
    border-radius: 7px;
}

.landing-para-ti-tagline {
    font-family: var(--font-display);
    text-align: center;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--teal);
    letter-spacing: 0;
}

/* ── Precios ─────────────────────────────────────────────────────────────── */

.landing-precios { background: transparent; }

.landing-precios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.landing-precio-card {
    padding: 36px 32px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-precio-eyebrow {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.landing-precio-price {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--card-orange);
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: 0;
}

.landing-precio-standard .landing-precio-price { color: var(--teal); }

.landing-precio-desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300;
}

.landing-precio-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.landing-precio-features li {
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: 0.8px;
    line-height: 1.5;
    padding-left: 4px;
}

.landing-precio-note {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 14px;
    line-height: 1.5;
}

.landing-precios-closing {
    margin-top: 32px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-precios-closing a {
    color: var(--teal);
    text-decoration: none;
    transition: opacity 0.15s;
}

.landing-precios-closing a:hover { opacity: 0.75; }

.landing-precios-detail {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.landing-precios-detail-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.landing-precios-detail-trigger:hover { color: var(--text-soft); }

.landing-precios-detail-trigger[aria-expanded="true"] .landing-faq-icon {
    transform: rotate(180deg);
    color: var(--teal);
}

.landing-precios-detail-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.landing-precios-detail-body.is-open {
    grid-template-rows: 1fr;
}

.landing-precios-detail-inner {
    overflow: hidden;
}

.landing-precios-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    margin-top: 4px;
}

.landing-precios-table th,
.landing-precios-table td {
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-precios-table th {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.landing-precios-table td {
    font-size: 12px;
    color: var(--text-soft);
}

.landing-precios-table tbody tr:last-child td { border-bottom: none; }

.landing-precios-example {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 28px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.landing-faq { background-color: var(--bg-base); }

.landing-faq-title { margin-bottom: 48px; }

.landing-faq-list {
    max-width: 720px;
}

.landing-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.landing-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.landing-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.landing-faq-trigger span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.2s ease;
}

/* Alternating title colors — 4-color cycle */
.landing-faq-item:nth-child(4n+1) .landing-faq-trigger span { color: var(--cyan); }
.landing-faq-item:nth-child(4n+2) .landing-faq-trigger span { color: var(--electric-blue); }
.landing-faq-item:nth-child(4n+3) .landing-faq-trigger span { color: var(--pink); }
.landing-faq-item:nth-child(4n+4) .landing-faq-trigger span { color: var(--amber); }

.landing-faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.2s ease;
}

.landing-faq-trigger[aria-expanded="true"] .landing-faq-icon {
    transform: rotate(180deg);
}

/* Icon color matches title color when open */
.landing-faq-item:nth-child(4n+1) .landing-faq-trigger[aria-expanded="true"] .landing-faq-icon { color: var(--cyan); }
.landing-faq-item:nth-child(4n+2) .landing-faq-trigger[aria-expanded="true"] .landing-faq-icon { color: var(--electric-blue); }
.landing-faq-item:nth-child(4n+3) .landing-faq-trigger[aria-expanded="true"] .landing-faq-icon { color: var(--pink); }
.landing-faq-item:nth-child(4n+4) .landing-faq-trigger[aria-expanded="true"] .landing-faq-icon { color: var(--amber); }

.landing-faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.landing-faq-body.is-open {
    grid-template-rows: 1fr;
}

.landing-faq-inner {
    overflow: hidden;
}

.landing-faq-inner p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.75;
    font-weight: 300;
    padding-bottom: 22px;
}

/* ── Final CTA ───────────────────────────────────────────────────────────── */

.landing-final-cta {
    background: transparent;
    text-align: center;
    padding: 100px 0;
}

.landing-final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: 0;
}

.landing-final-cta-text {
    font-size: 18px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 32px;
    font-weight: 300;
}

.landing-final-cta-meta {
    font-size: 12px;
    color: var(--amber);
    margin-top: 24px;
}

/* ── Demo Modal ──────────────────────────────────────────────────────────── */

.landing-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(1, 6, 14, 0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.landing-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
}

.landing-modal {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px 40px;
    width: 100%;
    max-width: 520px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.landing-modal-backdrop.is-open .landing-modal {
    transform: translateY(0);
}

.landing-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.landing-modal-close:hover { color: var(--silver); }

.landing-modal-header { margin-bottom: 32px; }

.landing-modal-eyebrow {
    font-size: 10px;
    color: var(--amber);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.landing-modal-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.landing-modal-subtitle {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.7;
}

.landing-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.landing-modal-field label {
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.landing-modal-field label span {
    color: var(--text-muted);
    font-weight: 400;
}

.landing-modal-field input,
.landing-modal-field select,
.landing-modal-field textarea {
    background: var(--bg-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px 14px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease;
    resize: none;
}

.landing-modal-field input::placeholder,
.landing-modal-field textarea::placeholder { color: var(--text-dim); }

.landing-modal-field select { cursor: pointer; }

.landing-modal-field input:focus,
.landing-modal-field select:focus,
.landing-modal-field textarea:focus {
    border-color: var(--amber);
}

.landing-modal-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
}

.landing-modal-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.landing-modal-success {
    text-align: center;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.landing-modal-success-icon {
    font-size: 40px;
    color: var(--cyan);
}

.landing-modal-success-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
}

.landing-modal-success-text {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.landing-footer {
    background-color: var(--bg-darker);
    padding: 50px 0 400px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.landing-footer-content {
    display: grid;
    grid-template-columns: 2fr 6fr;
    gap: 60px;
    padding-bottom: 36px;
    margin-bottom: 20px;
    border-bottom: none;
}

.landing-footer-brand p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.landing-footer-links h5 {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 14px;
    font-weight: 700;
}

.landing-footer-links ul { display: flex; flex-direction: column; gap: 8px; }

.landing-footer-links a {
    font-size: 12px;
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.landing-footer-links a:hover { color: var(--teal); }

.landing-footer-bottom {
    text-align: center;
    border-top: none;
    padding-top: 0;
    background: none;
}

.landing-footer-bottom p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .landing-quote-cards { grid-template-columns: repeat(2, 1fr); }
    .landing-segment-cards { grid-template-columns: repeat(2, 1fr); }
    .landing-demo-content { padding-top: 60px; padding-bottom: 60px; }
    .landing-tcard-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .landing-section { padding: 60px 0; }

    /* P5.5: secciones que no suman valor en mobile */
    .landing-reduce     { display: none; }
    .landing-defendible { display: none; }
    .landing-reputacional { display: none; }

    .landing-nav .landing-container { gap: 16px; overflow: hidden; }
    .landing-nav-links { display: none; }
    .landing-nav-cta-desktop { display: none; }
    .landing-hamburger { display: flex; }

    .landing-hero { padding: 50px 0 70px; }
    .landing-hero-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Hero visual: quitar offset de desktop y escalar a 0.9 */
    .landing-hero-visual {
        top: 0;
        left: 0;
        transform: none;
        scale: 0.9;
    }

    /* Headline: 32px en todos los móviles */
    .landing-headline { font-size: 32px; letter-spacing: 0; }

    .landing-defendible-grid { grid-template-columns: 1fr; gap: 32px; }
    .landing-defendible-card { padding: 40px 28px; }

    .landing-pasos-sticky-layout { grid-template-columns: 1fr; }
    .landing-pasos-visual-wrap    { display: none; }
    .landing-paso-item             { opacity: 1 !important; }

    .landing-precios-grid { grid-template-columns: 1fr; }

    .landing-faq-list { max-width: 100%; }

    .landing-footer-content { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
    /* Problem cards → scroll horizontal con snap */
    .landing-quote-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
        gap: 12px;
        grid-template-columns: unset;
    }
    .landing-quote-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 0;
    }

    /* Segment cards → una tarjeta a la vez con snap */
    .landing-segment-cards { grid-template-columns: unset; }
    .landing-segment-card  { min-width: 80vw; scroll-snap-align: start; }

    .landing-cta-group { flex-direction: column; align-items: stretch; }
    /* .landing-btn { width: 100%; } */
    .landing-hero-meta { font-size: 10px; }

    /* Headline: reducir a 32px en móvil pequeño */
    .landing-headline { max-width: 100%; word-break: break-word; font-size: 32px; letter-spacing: 0; }
    .landing-section-title { max-width: 100%; }
    .landing-section-title-left { max-width: 100%; }
    .landing-pasos-title { max-width: 100%; }
    .landing-reputacional-title { max-width: 100%; }
    .landing-final-cta-title { max-width: 100%; }
}
