/* ============================================================================
   Vocalyy — /start dedicated paid-traffic landing page
   Loaded ONLY on start.html. Reuses global tokens; everything here is
   prefixed .lp- to avoid colliding with the rest of the site.
   Palette: white #FFFFFF / near-black #18181B / gray #6B7280 / red #FD3A25.
   ========================================================================= */

:root {
    --lp-ink: #18181B;
    --lp-gray: #6B7280;
    --lp-gray-soft: #9CA3AF;
    --lp-line: #ECECEE;
    --lp-bg-soft: #FAFAFA;
    --lp-red: #FD3A25;
    --lp-red-dark: #E02D18;
    --lp-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --lp-shadow-lift: 0 14px 44px rgba(0, 0, 0, 0.10);
}

/* ---- Base ---------------------------------------------------------------- */
.lp-body {
    background: #ffffff;
    color: var(--lp-ink);
    font-family: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    /* overflow-x: clip (not hidden) prevents horizontal scroll WITHOUT making
       the body a containing block — otherwise iOS Safari breaks position:fixed
       (the sticky CTA + back-to-top would scroll with the page). */
    overflow-x: clip;
    /* Keep all native form controls + their dropdowns in light mode even if
       the visitor's OS / browser is set to dark mode. */
    color-scheme: light;
}
.lp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
.lp-section { padding: 112px 0; position: relative; }
.lp-section--soft { background: var(--lp-bg-soft); }
.lp-section--dark { background: var(--lp-ink); color: #fff; }

.lp-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-red);
    margin-bottom: 16px;
}
.lp-h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
    margin: 0 0 18px;
}
.lp-section--dark .lp-h2 { color: #fff; }
.lp-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--lp-gray);
    max-width: 760px;
    margin: 0 0 8px;
}
.lp-section--dark .lp-lead { color: #D4D4D8; }
.lp-accent { color: var(--lp-red); }
.lp-center { text-align: center; }
.lp-center .lp-lead { margin-left: auto; margin-right: auto; }

/* Primary button (red) */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--lp-red);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 17px 34px;
    border: 1.5px solid var(--lp-red);
    border-radius: 14px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(253, 58, 37, 0.22);
}
.lp-btn:hover { background: var(--lp-red-dark); border-color: var(--lp-red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(253, 58, 37, 0.30); }
.lp-btn:active { transform: translateY(0); }
.lp-btn--caps { text-transform: uppercase; letter-spacing: 0.04em; }
.lp-btn--lg { font-size: 18px; padding: 20px 44px; }
.lp-btn--ghost {
    background: transparent;
    color: var(--lp-ink);
    border-color: rgba(0,0,0,0.16);
    box-shadow: none;
}
.lp-btn--ghost:hover { background: var(--lp-bg-soft); color: var(--lp-ink); border-color: rgba(0,0,0,0.28); box-shadow: none; }
.lp-btn--white { background: #fff; color: var(--lp-ink); border-color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.lp-btn--white:hover { background: #f4f4f5; color: var(--lp-ink); border-color: #f4f4f5; }
/* Subtle secondary header button — white, smaller, never outshines the red CTA */
.lp-btn--subtle {
    background: #fff;
    color: var(--lp-gray);
    border: 1px solid var(--lp-line);
    box-shadow: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
}
.lp-btn--subtle:hover {
    background: var(--lp-bg-soft);
    color: var(--lp-ink);
    border-color: rgba(0,0,0,0.18);
    transform: none;
    box-shadow: none;
}
.lp-header-actions { display: flex; align-items: center; gap: 12px; }
.lp-btn--subtle .lp-short { display: none; } /* full label on desktop, short on mobile */

/* ---- Top promo banner ---------------------------------------------------- */
.lp-banner {
    background: var(--lp-ink);
    color: #fff;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 11px 16px;
    line-height: 1.4;
    position: relative;
    z-index: 60;
}
.lp-banner b { color: var(--lp-red); font-weight: 700; }

/* ---- Header (sticky, collapses on scroll) -------------------------------- */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: padding 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.lp-header.is-scrolled {
    border-bottom-color: var(--lp-line);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}
.lp-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.25s ease;
}
.lp-header.is-scrolled .lp-header-inner { padding-top: 12px; padding-bottom: 12px; }
.lp-logo img { height: 30px; width: auto; display: block; }

/* ---- Hero ---------------------------------------------------------------- */
.lp-hero { padding: 64px 0 88px; background: #fff; position: relative; }
.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}
.lp-hero-h1 {
    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--lp-ink);
    margin: 0 0 22px;
}
.lp-hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--lp-gray);
    margin: 0 0 28px;
    max-width: 560px;
}
.lp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 30px;
}
.lp-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--lp-ink);
}
.lp-trust .lp-tick {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-hero-cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.lp-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-ink);
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    text-decoration: none;
}
.lp-secondary-link .lp-play {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--lp-red); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-secondary-link:hover { color: var(--lp-red); }
.lp-microproof {
    font-size: 13.5px;
    color: var(--lp-gray-soft);
    line-height: 1.55;
    margin: 18px 0 0;
    max-width: 480px;
}

/* Phone mockup */
.lp-phone {
    position: relative;
    width: 290px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1c1c20 0%, #121215 100%);
    border-radius: 40px;
    padding: 16px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28), 0 8px 24px rgba(253, 58, 37, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-phone-notch {
    width: 120px; height: 26px; background: #0c0c0e;
    border-radius: 0 0 16px 16px; margin: 0 auto 18px;
}
.lp-phone-screen { padding: 6px 6px 22px; text-align: center; color: #fff; }
.lp-phone-label { font-size: 12px; color: #9ca3af; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.lp-phone-caller { font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lp-phone-num { font-size: 14px; color: #a1a1aa; margin-bottom: 26px; }
.lp-phone-avatar {
    width: 92px; height: 92px; border-radius: 50%;
    margin: 0 auto 24px;
    background: radial-gradient(circle at 30% 30%, #FD3A25, #c41f0e);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 8px rgba(253, 58, 37, 0.14), 0 0 0 18px rgba(253, 58, 37, 0.06);
    animation: lp-ring 2.2s ease-out infinite;
}
@keyframes lp-ring {
    0% { box-shadow: 0 0 0 6px rgba(253,58,37,0.20), 0 0 0 14px rgba(253,58,37,0.08); }
    70% { box-shadow: 0 0 0 14px rgba(253,58,37,0), 0 0 0 28px rgba(253,58,37,0); }
    100% { box-shadow: 0 0 0 6px rgba(253,58,37,0), 0 0 0 14px rgba(253,58,37,0); }
}
.lp-phone-wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 34px; }
.lp-phone-wave span {
    width: 4px; border-radius: 4px;
    background: linear-gradient(to top, #FD3A25, #ff8a73);
    animation: lp-wave 1.4s ease-in-out infinite;
}
.lp-phone-wave span:nth-child(1){height:10px;animation-delay:0s}
.lp-phone-wave span:nth-child(2){height:22px;animation-delay:.1s}
.lp-phone-wave span:nth-child(3){height:32px;animation-delay:.2s}
.lp-phone-wave span:nth-child(4){height:18px;animation-delay:.3s}
.lp-phone-wave span:nth-child(5){height:28px;animation-delay:.4s}
.lp-phone-wave span:nth-child(6){height:14px;animation-delay:.5s}
.lp-phone-wave span:nth-child(7){height:24px;animation-delay:.6s}
@keyframes lp-wave { 0%,100%{transform:scaleY(.4);opacity:.7} 50%{transform:scaleY(1);opacity:1} }

/* ---- Pain amplifier ------------------------------------------------------ */
.lp-scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.lp-scene {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: var(--lp-shadow);
    display: flex;
    flex-direction: column;
}
.lp-scene-tag {
    font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--lp-gray); margin-bottom: 14px;
}
.lp-scene-text { font-size: 16px; line-height: 1.6; color: #3f3f46; margin: 0 0 18px; flex: 1; }
.lp-scene-cost {
    font-size: 14.5px; line-height: 1.5; font-weight: 600; color: var(--lp-ink);
    padding-top: 16px; border-top: 1px solid var(--lp-line);
}
.lp-scene-cost strong { color: var(--lp-ink); }

/* ---- Stats --------------------------------------------------------------- */
.lp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.lp-stat {
    text-align: center;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    padding: 48px 28px;
    box-shadow: var(--lp-shadow);
}
.lp-stat-num {
    font-size: 96px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--lp-ink);
    margin-bottom: 16px;
}
/* Word-based stat values (no invented numbers) — smaller than the digit style */
.lp-stat-num--text { font-size: 30px; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 14px; }
@media (max-width: 900px) { .lp-stat-num--text { font-size: 28px; } }
.lp-stat-label { font-size: 19px; font-weight: 700; color: var(--lp-ink); margin-bottom: 10px; }
.lp-stat-sub { font-size: 14.5px; line-height: 1.55; color: var(--lp-gray); }
/* Industry marquee — small icons + labels scrolling slowly, edges faded */
.lp-marquee {
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--lp-line);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.lp-marquee-track {
    display: flex;
    width: max-content;
    gap: 44px;
    animation: lp-marquee-scroll 38s linear infinite;
}
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }
.lp-ind {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-gray);
    white-space: nowrap;
}
.lp-ind svg { width: 20px; height: 20px; flex-shrink: 0; color: #9CA3AF; }
@keyframes lp-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .lp-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 16px 28px; }
}

/* ---- Audio player -------------------------------------------------------- */
.lp-audio-card {
    background: var(--lp-ink);
    color: #fff;
    border-radius: 24px;
    padding: 40px 44px;
    max-width: 760px;
    margin: 40px auto 0;
    box-shadow: var(--lp-shadow-lift);
}
/* Hero variant — sits in the hero right column as the main visual */
.lp-audio-card--hero {
    margin: 0;
    max-width: 460px;
    padding: 30px 32px 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}
.lp-audio-badge {
    display: inline-block;
    font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 6px 12px; border-radius: 99px;
    margin-bottom: 22px;
}
.lp-audio-foot {
    margin-top: 22px; padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13.5px; line-height: 1.55; color: #B4B4BB;
}
.lp-audio-top { display: flex; align-items: center; gap: 20px; }
.lp-audio-play {
    width: 66px; height: 66px; border-radius: 50%; flex-shrink: 0;
    background: var(--lp-red); color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 28px rgba(253, 58, 37, 0.4);
    transition: transform 0.2s ease, background 0.2s ease;
}
.lp-audio-play:hover { transform: scale(1.06); background: var(--lp-red-dark); }
.lp-audio-meta { flex: 1; min-width: 0; }
.lp-audio-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lp-audio-dur { font-size: 13.5px; color: #a1a1aa; }
.lp-audio-wave { display: flex; align-items: center; gap: 3px; height: 38px; margin-top: 22px; }
.lp-audio-wave span {
    flex: 1; border-radius: 3px; height: 8px;
    background: rgba(255, 255, 255, 0.18);
    transition: height 0.2s ease, background 0.2s ease;
}
.lp-audio-card.is-playing .lp-audio-wave span { animation: lp-abar 1s ease-in-out infinite; background: var(--lp-red); }
.lp-audio-wave span:nth-child(odd) { animation-delay: 0.15s; }
.lp-audio-wave span:nth-child(3n) { animation-delay: 0.3s; }
@keyframes lp-abar { 0%,100%{height:8px} 50%{height:30px} }
.lp-audio-after { font-size: 16px; line-height: 1.6; color: var(--lp-gray); max-width: 720px; margin: 28px auto 0; text-align: center; }

/* ---- Inline agent CTA head (above the widget) ---------------------------- */
/* Stack the CTA head above the widget in both the desktop grid cell and the
   mobile stacked layout (the media column was flex-row for the old single card). */
.lp-hero-media {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vocalyy-inline-head {
    text-align: center;
    max-width: 460px;
    margin: 0 auto 18px;
}
.vocalyy-inline-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-red);
    background: rgba(253, 58, 37, 0.1);
    border: 1px solid rgba(253, 58, 37, 0.18);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 14px;
}
.vocalyy-inline-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lp-red); flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(253, 58, 37, 0.55);
    animation: vocalyy-dot-pulse 1.6s ease-out infinite;
}
@keyframes vocalyy-dot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(253, 58, 37, 0.55); }
    70% { box-shadow: 0 0 0 9px rgba(253, 58, 37, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 58, 37, 0); }
}
.vocalyy-inline-title {
    font-size: 27px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
    margin: 0 0 8px;
}
.vocalyy-inline-accent { color: var(--lp-red); }
.vocalyy-inline-sub {
    font-size: 15px;
    line-height: 1.5;
    color: var(--lp-gray);
    margin: 0 auto;
    max-width: 380px;
}

/* ---- Inline ElevenLabs agent (hero right column) ------------------------- */
.vocalyy-inline {
    position: relative;
    z-index: 1; /* stacking context: traps the widget's z-index:1000 so it stays
                   below the sticky header (z-index:50) instead of painting over it */
    width: 100%;
    max-width: 460px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden; /* clips the ~7px of branding that spills below the panel */
}
/* Opaque cover over the widget's shadow-DOM "Powered by ElevenLabs" link
   (can't be removed from code; this hides it AND blocks the click-through).
   Geometry is set by JS in start.html to track the panel across breakpoints. */
.vocalyy-inline-cover {
    position: absolute;
    display: none;
    background: #fff;
    z-index: 1001; /* above the widget host (z-index:1000) */
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    pointer-events: auto;
}
/* Force the widget's shadow host out of its default fixed/floating overlay
   so it renders inline inside .vocalyy-inline (undocumented but stable hack). */
.vocalyy-inline > elevenlabs-convai {
    position: relative !important;
    inset: auto !important;
    display: block;
    width: 100% !important;
    height: 100% !important;
    --el-overlay-padding: 0px;
}
@media (max-width: 768px) {
    .vocalyy-inline { max-width: 440px; height: 560px; }
    .vocalyy-inline-head { margin-bottom: 14px; }
    .vocalyy-inline-title { font-size: 23px; }
    .vocalyy-inline-sub { font-size: 14px; }
}

/* ---- Cal.com booking ----------------------------------------------------- */
.lp-book-bullets { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin: 26px 0 36px; }
.lp-book-bullet { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--lp-ink); }
.lp-book-bullet .lp-tick { width: 18px; height: 18px; border-radius: 50%; background: rgba(34,197,94,0.12); color: #16a34a; display: inline-flex; align-items: center; justify-content: center; }
.lp-cal-wrap {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    min-height: 700px;
    border-radius: 20px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    box-shadow: var(--lp-shadow-lift);
}

/* ---- How it works -------------------------------------------------------- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.lp-step {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: var(--lp-shadow);
}
.lp-step-badge {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--lp-ink);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; margin-bottom: 18px;
    flex-shrink: 0;
}
.lp-step-title { font-size: 19px; font-weight: 700; color: var(--lp-ink); margin: 0 0 10px; letter-spacing: -0.01em; line-height: 1.25; }
.lp-step-desc { font-size: 15px; line-height: 1.5; color: var(--lp-gray); margin: 0; }

/* ---- Pricing ------------------------------------------------------------- */
/* Currency toggle (RON/EUR) — ported from pricing-extras.css so this page
   doesn't need to load the whole pricing stylesheet. */
.vy-currency-toggle {
    display: inline-flex;
    background: #f4f4f5;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    font-family: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.vy-currency-toggle button {
    border: none;
    background: transparent;
    color: #71717a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.vy-currency-toggle button.vy-cur-active {
    background: #09090B;
    color: #fafafa;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.vy-currency-toggle button:not(.vy-cur-active):hover { color: #09090B; }

.lp-currency-wrap { display: flex; justify-content: center; margin-bottom: 36px; }
.lp-pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; max-width: 1040px; margin: 0 auto; }
#lpAgent { scroll-margin-top: 90px; }
@media (max-width: 980px) { .lp-pricing-grid { grid-template-columns: 1fr; gap: 24px; max-width: 460px; } }
.lp-price-card {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 22px;
    padding: 32px 30px;
    box-shadow: var(--lp-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-price-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lift); }
.lp-price-card--popular { border: 2px solid var(--lp-red); box-shadow: 0 18px 50px rgba(253, 58, 37, 0.14); }
.lp-pop-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--lp-red); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 99px; white-space: nowrap;
    box-shadow: 0 6px 16px rgba(253, 58, 37, 0.3);
}
.lp-price-name { font-size: 22px; font-weight: 700; color: var(--lp-ink); }
.lp-price-tag { font-size: 14px; color: var(--lp-gray); margin-bottom: 18px; }
.lp-price-figure { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 14px; }
.lp-price-figure .price-number { font-size: 42px; font-weight: 800; letter-spacing: -0.02em; color: var(--lp-ink); line-height: 1; }
.lp-price-figure .price-per { font-size: 15px; color: var(--lp-gray); font-weight: 600; margin-bottom: 4px; }
.lp-price-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.lp-price-badge { font-size: 11.5px; font-weight: 600; color: var(--lp-gray); background: var(--lp-bg-soft); border: 1px solid var(--lp-line); padding: 5px 10px; border-radius: 8px; }
.lp-price-card .lp-btn { width: 100%; margin-bottom: 24px; }
.lp-price-feats { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--lp-line); display: flex; flex-direction: column; gap: 12px; }
.lp-price-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: #3f3f46; }
.lp-price-feats li .lp-tick { width: 17px; height: 17px; border-radius: 50%; background: rgba(34,197,94,0.12); color: #16a34a; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.lp-price-feats li strong { color: var(--lp-ink); font-weight: 700; }

/* Enterprise banner */
.lp-enterprise {
    margin-top: 26px;
    background: var(--lp-ink);
    color: #fff;
    border-radius: 22px;
    padding: 38px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
}
.lp-enterprise-title { font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
.lp-enterprise-sub { font-size: 15.5px; line-height: 1.55; color: #B4B4BB; margin: 0; max-width: 620px; }

/* ---- Testimonials -------------------------------------------------------- */
.lp-quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 48px; }
.lp-quote {
    background: #fff; border: 1px solid var(--lp-line); border-radius: 22px;
    padding: 36px 34px; box-shadow: var(--lp-shadow); position: relative;
}
.lp-quote-mark { font-size: 64px; line-height: 0.6; font-family: Georgia, serif; color: #D4D4D8; height: 30px; display: block; margin-bottom: 8px; }
.lp-quote-text { font-size: 17px; line-height: 1.65; color: #3f3f46; font-style: italic; margin: 0 0 22px; }
.lp-quote-line { width: 40px; height: 2px; background: var(--lp-ink); margin-bottom: 16px; }
.lp-quote-name { font-size: 16px; font-weight: 700; color: var(--lp-ink); }
.lp-quote-role { font-size: 14px; color: var(--lp-gray); margin-top: 2px; }

/* ---- Lead capture form --------------------------------------------------- */
.lp-form-card {
    max-width: 620px; margin: 40px auto 0;
    background: #fff; border: 1px solid var(--lp-line); border-radius: 24px;
    padding: 40px 40px 36px; box-shadow: var(--lp-shadow-lift);
}
.lp-field { margin-bottom: 18px; display: block; }
.lp-field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--lp-ink); margin-bottom: 7px; }
.lp-field input, .lp-field select {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 14px 15px; font-size: 16px; font-family: inherit;
    color: var(--lp-ink);
    background-color: #fff;
    border: 1.5px solid var(--lp-line); border-radius: 12px; outline: none;
    transition: border-color 0.18s ease;
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    /* Force the native dropdown popup to render light instead of OS dark mode */
    color-scheme: light;
}
.lp-field input::placeholder { color: var(--lp-gray-soft); opacity: 1; }
.lp-field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat; background-position: right 15px center; background-size: 14px 14px; padding-right: 40px;
}
/* Make the expanded native option list readable (black-on-black fix) */
.lp-field select option { background-color: #fff; color: #18181B; }
.lp-field input:focus, .lp-field select:focus { border-color: var(--lp-ink); }
.lp-field input.is-invalid, .lp-field select.is-invalid { border-color: var(--lp-red); }
.lp-field-err { display: none; color: var(--lp-red); font-size: 13px; margin-top: 6px; }
.lp-field-err.show { display: block; }
.lp-form-card .lp-btn { width: 100%; margin-top: 6px; }
.lp-form-note { font-size: 13px; color: var(--lp-gray-soft); text-align: center; margin: 14px 0 0; }
.lp-form-success { display: none; text-align: center; padding: 24px 8px; }
.lp-form-success.show { display: block; }
.lp-form-success svg { width: 56px; height: 56px; color: #16a34a; margin-bottom: 16px; }
.lp-form-success-title { font-size: 20px; font-weight: 700; color: var(--lp-ink); margin-bottom: 8px; }
.lp-form-success-text { font-size: 15px; line-height: 1.6; color: var(--lp-gray); max-width: 420px; margin: 0 auto; }

/* ---- FAQ accordion ------------------------------------------------------- */
.lp-faq { max-width: 820px; margin: 48px auto 0; }
.lp-faq-item { border-bottom: 1px solid var(--lp-line); }
.lp-faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 24px 44px 24px 0; position: relative;
    font-size: 18px; font-weight: 700; color: var(--lp-ink); line-height: 1.4;
    font-family: inherit;
}
.lp-faq-q::after {
    content: ''; position: absolute; right: 6px; top: 28px;
    width: 12px; height: 12px;
    border-right: 2px solid var(--lp-gray); border-bottom: 2px solid var(--lp-gray);
    transform: rotate(45deg); transition: transform 0.25s ease;
}
.lp-faq-item.is-open .lp-faq-q::after { transform: rotate(-135deg); }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.lp-faq-a-inner { padding: 0 44px 26px 0; font-size: 16px; line-height: 1.68; color: var(--lp-gray); }
.lp-faq-item.is-open .lp-faq-a { max-height: 480px; }

/* ---- Final CTA ----------------------------------------------------------- */
.lp-final { text-align: center; }
.lp-final .lp-h2 { max-width: 860px; margin-left: auto; margin-right: auto; }
.lp-final-sub { font-size: 18px; line-height: 1.6; color: #B4B4BB; max-width: 720px; margin: 0 auto 34px; }
.lp-final-mail { font-size: 14px; color: #9CA3AF; margin-top: 22px; }
.lp-final-mail a { color: #fff; text-decoration: underline; }

/* ---- Footer -------------------------------------------------------------- */
.lp-footer { background: var(--lp-ink); color: #9CA3AF; padding: 26px 0; }
.lp-footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 80px;
    display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
    font-size: 13.5px;
}
.lp-footer-legal a { color: #9CA3AF; text-decoration: none; }
.lp-footer-legal a:hover { color: #fff; }
.lp-footer-sep { margin: 0 9px; color: #52525B; }

/* ---- Sticky mobile CTA --------------------------------------------------- */
.lp-sticky-cta { display: none; }

/* ---- Back to top --------------------------------------------------------- */
.lp-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 940;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--lp-line);
    background: #fff;
    color: var(--lp-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.lp-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.lp-top:hover { background: var(--lp-ink); color: #fff; border-color: var(--lp-ink); }

/* ---- Exit-intent popup --------------------------------------------------- */
.lp-exit-backdrop {
    position: fixed; inset: 0; z-index: 9998;
    background: rgba(9, 9, 11, 0.6);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.lp-exit-backdrop.is-open { display: flex; }
.lp-exit-card {
    position: relative; background: #fff; border-radius: 20px;
    max-width: 460px; width: 100%; padding: 38px 34px 30px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.28);
    animation: lp-exit-in 0.28s cubic-bezier(.2,.9,.3,1);
    box-sizing: border-box;
    color-scheme: light;
    max-height: 92vh;
    overflow-y: auto;
}
.lp-exit-card form { margin: 0; }
@keyframes lp-exit-in { from { transform: translateY(18px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.lp-exit-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border: none; background: none; cursor: pointer; color: var(--lp-gray); font-size: 22px; line-height: 1; border-radius: 50%; }
.lp-exit-close:hover { background: var(--lp-bg-soft); color: var(--lp-ink); }
.lp-exit-title { font-size: 24px; font-weight: 700; color: var(--lp-ink); line-height: 1.2; margin: 0 0 10px; letter-spacing: -0.01em; }
.lp-exit-sub { font-size: 15px; line-height: 1.55; color: var(--lp-gray); margin: 0 0 22px; }
.lp-exit-card .lp-btn { width: 100%; margin-top: 4px; }
.lp-exit-dismiss { display: block; width: 100%; text-align: center; background: none; border: none; cursor: pointer; color: var(--lp-gray-soft); font-size: 13.5px; margin-top: 14px; }
.lp-exit-dismiss:hover { color: var(--lp-ink); }

/* ============================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
    .lp-wrap, .lp-header-inner, .lp-footer-inner { padding-left: 48px; padding-right: 48px; }
    .lp-hero-h1 { font-size: 50px; }
}

@media (max-width: 991px) {
    .lp-section { padding: 76px 0; }
    .lp-wrap, .lp-header-inner, .lp-footer-inner { padding-left: 32px; padding-right: 32px; }
    .lp-h2 { font-size: 34px; }
    .lp-hero { padding: 40px 0 64px; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .lp-hero-h1 { font-size: 42px; }
    .lp-hero-sub { font-size: 18px; }
    .lp-hero-cta-row { align-items: center; text-align: center; width: 100%; }
    .lp-hero-text { text-align: center; }
    .lp-trust-row { justify-content: center; }
    .lp-hero-sub, .lp-microproof { margin-left: auto; margin-right: auto; }
    .lp-hero-media { order: 2; display: flex; justify-content: center; }
    .lp-audio-card--hero { max-width: 440px; width: 100%; }
    .lp-scenes { grid-template-columns: 1fr; gap: 18px; }
    .lp-stats { grid-template-columns: 1fr; gap: 18px; }
    .lp-stat { padding: 40px 28px; }
    .lp-stat-num { font-size: 80px; }
    .lp-steps { grid-template-columns: 1fr; gap: 32px; }
    .lp-pricing-grid { grid-template-columns: 1fr; gap: 36px; }
    .lp-price-card--popular { margin-top: 12px; }
    .lp-quotes { grid-template-columns: 1fr; gap: 18px; }
    .lp-enterprise { flex-direction: column; text-align: center; align-items: center; }
    .lp-header .lp-btn { padding: 11px 20px; font-size: 14px; }

    /* Sticky mobile CTA visible — white bar, red button (less red surface) */
    .lp-sticky-cta {
        display: block;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
        background: #fff;
        border-top: 1px solid var(--lp-line);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.10);
        padding: 11px 16px calc(11px + env(safe-area-inset-bottom, 0px));
    }
    .lp-sticky-cta .lp-btn {
        width: 100%;
        font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
        padding: 15px 20px;
    }
    .lp-body { padding-bottom: 76px; }

    /* Lift back-to-top above the sticky CTA bar on mobile */
    .lp-top { bottom: 88px; right: 16px; width: 44px; height: 44px; }
}

@media (max-width: 575px) {
    .lp-wrap, .lp-header-inner, .lp-footer-inner { padding-left: 24px; padding-right: 24px; }
    .lp-section { padding: 64px 0; }
    .lp-hero-h1 { font-size: 36px; line-height: 1.1; }
    .lp-h2 { font-size: 28px; }
    .lp-lead, .lp-hero-sub { font-size: 16.5px; }
    .lp-banner { font-size: 12px; padding: 9px 14px; }
    .lp-audio-card { padding: 28px 22px; }
    .lp-audio-card--hero { padding: 26px 22px 24px; }
    .lp-audio-top { gap: 14px; }
    .lp-audio-play { width: 56px; height: 56px; }
    .lp-form-card { padding: 30px 22px 26px; }
    .lp-quote { padding: 28px 24px; }
    .lp-stat { padding: 34px 24px; }
    .lp-stat-num { font-size: 64px; }
    .lp-enterprise { padding: 30px 24px; }
    .lp-marquee-track { gap: 32px; animation-duration: 26s; }
    /* Header on small phones: show the secondary button with the short label,
       compact both buttons + gap so logo + 2 buttons fit. */
    .lp-header-actions { gap: 8px; }
    .lp-btn--subtle { padding: 8px 13px; font-size: 12.5px; }
    .lp-btn--subtle .lp-full { display: none; }
    .lp-btn--subtle .lp-short { display: inline; }
    .lp-header .lp-btn { padding: 8px 14px; font-size: 13px; }
    .lp-exit-card { padding: 26px 20px 22px; }
    .lp-exit-title { font-size: 20px; }
    .lp-exit-sub { font-size: 14px; }
    .lp-footer-inner { flex-direction: column; text-align: center; gap: 10px; }
}
