/* ============================================
   LaraPush Variant 3: "Modern Sales Machine"
   Typography: Plus Jakarta Sans
   Style: Neobrutalist / High-Contrast / Ultra-Modern
   ============================================ */

:root {
    --bg: #ffffff;
    --black: #000000;
    --neon: #ff6000;
    /* High-impact Orange */
    --neon-hover: #e65600;
    --gray-light: #f7f7f8;
    --gray-border: #e0e0e0;
    --text-muted: #666666;
    --shadow: 8px 8px 0px #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--black);
    line-height: 1.5;
    background: var(--bg);
    overflow-x: hidden;
    max-width: 100%;
}

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

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Ticker */
.top-ticker {
    background: var(--black);
    color: var(--bg);
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Nav */
.main-nav {
    padding: 24px 0;
    border-bottom: 2px solid var(--black);
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.logo span {
    color: var(--neon);
}

/* Buttons */
.btn {
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
    display: inline-block;
}

.btn-black-outline {
    border: 3px solid var(--black);
    color: var(--black);
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-black-outline:hover {
    background: var(--black);
    color: var(--bg);
}

.btn-neon {
    background: var(--neon);
    color: white;
    padding: 16px 32px;
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0px #000;
}

.btn-neon-lg {
    background: var(--neon);
    color: white;
    padding: 20px;
    width: 100%;
    border: 4px solid var(--black);
    box-shadow: 6px 6px 0px #000;
    font-size: 1.1rem;
}

.btn-neon:hover,
.btn-neon-lg:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000;
}

/* Hero */
.hero-split {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 20%, #fff0e7 0%, #ffffff 50%);
}

.container-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.badge-modern {
    background: var(--black);
    color: var(--bg);
    display: inline-block;
    padding: 4px 12px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.highlight-neon {
    color: var(--neon);
    text-decoration: underline;
    text-decoration-thickness: 8px;
}

.hero-p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}

.hero-stat span {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.6;
}

/* Calculator Card */
.hero-calculator-card {
    background: white;
    border: 4px solid var(--black);
    padding: 40px;
    box-shadow: 20px 20px 0px var(--black);
}

.hero-calculator-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.hero-calculator-card p {
    margin-bottom: 32px;
    font-weight: 600;
    opacity: 0.7;
}

.modern-form .input-wrap {
    margin-bottom: 24px;
}

.modern-form label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modern-form input {
    width: 100%;
    padding: 16px;
    border: 3px solid var(--black);
    font-family: inherit;
    font-weight: 700;
    font-size: 1.1rem;
}

.result-box {
    background: var(--gray-light);
    padding: 24px;
    border: 2px solid var(--black);
    margin-bottom: 24px;
    text-align: center;
}

.res-label {
    font-size: 0.7rem;
    font-weight: 800;
    opacity: 0.5;
    display: block;
}

.res-val {
    font-size: 1.5rem;
    font-weight: 900;
}

.res-val.danger {
    color: #d00;
}

.divider {
    margin: 12px 0;
    font-weight: 900;
    color: var(--neon);
}

.form-trust {
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    margin-top: 16px;
    opacity: 0.6;
}

/* Social Bar */
.social-bar {
    padding: 40px 0;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    background: #fdfdfd;
}

.bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-pill {
    background: #eee;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
}

.logo-grid {
    display: flex;
    gap: 40px;
    font-weight: 800;
    color: #888;
    font-size: 1.1rem;
}

/* Trap Section */
.section-trap {
    padding: 100px 0;
}

.header-center {
    margin-bottom: 64px;
    text-align: center;
}

.header-center h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.header-center p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.trap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trap-card-modern {
    padding: 40px;
    border: 3px solid var(--black);
    background: white;
    box-shadow: 10px 10px 0px var(--black);
    transition: all 0.2s;
}

.trap-card-modern:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0px var(--black);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.icon-wrap.red {
    background: #ffeded;
}

.icon-wrap.orange {
    background: #fff4ed;
}

.icon-wrap.purple {
    background: #f3edff;
}

.trap-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.trap-card-modern p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Comparison */
.section-comparison {
    padding: 100px 0;
    background: var(--gray-light);
    border-top: 2px solid var(--black);
}

.table-modern-wrap {
    max-width: 900px;
    margin: 48px auto;
    border: 4px solid var(--black);
    box-shadow: 15px 15px 0px var(--black);
    background: white;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 0;
}

.modern-table th,
.modern-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 2px solid var(--black);
}

.modern-table th {
    background: #000;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.modern-table th.active {
    background: var(--neon);
    color: white;
    border-left: 2px solid var(--black);
}

.modern-table td.active-val {
    background: #fffdf9;
    color: var(--neon);
    font-weight: 800;
    border-left: 2px solid var(--black);
}

/* Final Section */
.section-final {
    padding: 120px 0;
}

.brutalist-cta {
    background: var(--black);
    color: white;
    padding: 100px 40px;
    border: 10px solid var(--neon);
}

.brutalist-cta h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.brutalist-cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 48px;
    opacity: 0.8;
}

.inline-modern-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.inline-modern-form input {
    flex: 1;
    padding: 20px;
    border: 4px solid white;
    background: transparent;
    color: white;
    font-weight: 800;
    font-family: inherit;
}

.inline-modern-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.guarantee-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-weight: 800;
    color: var(--neon);
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Exit Popup */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.exit-overlay.active {
    display: flex;
}

.exit-dialog {
    background: white;
    border: 5px solid var(--black);
    padding: 50px;
    max-width: 550px;
    position: relative;
    box-shadow: 20px 20px 0px var(--neon);
    animation: pop 0.3s ease-out;
}

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
}

.warning-tag {
    background: #d00;
    color: white;
    padding: 4px 12px;
    font-weight: 800;
    font-size: 0.7rem;
    margin-bottom: 24px;
    display: inline-block;
}

.exit-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

/* Sticky Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: white;
    border-top: 3px solid var(--black);
    display: none;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.sticky-cta .btn {
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .container-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .trap-grid {
        grid-template-columns: 1fr;
    }

    .brutalist-cta h2 {
        font-size: 2.5rem;
    }
}

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

    .sticky-cta {
        display: block;
    }

    .inline-modern-form {
        flex-direction: column;
    }

    .bar-inner {
        flex-direction: column;
        gap: 24px;
    }

    .hero-calculator-card {
        box-shadow: 6px 6px 0 var(--black);
    }

    .section-trap,
    .section-comparison,
    .section-final {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .table-modern-wrap {
        box-shadow: 6px 6px 0 var(--black);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .modern-table {
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .modern-table th,
    .modern-table td {
        padding: 12px 8px;
        font-size: 0.72rem;
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .modern-table th {
        font-size: 0.62rem;
        letter-spacing: 0.04em;
    }

    .brutalist-card,
    .brutalist-card-dark {
        box-shadow: 8px 8px 0 var(--neon);
        padding: 28px 18px;
    }
}

/* Brutalist Card Extensions */
.brutalist-card {
    background: var(--black);
    border: 4px solid var(--neon);
    padding: 40px;
    box-shadow: 15px 15px 0px var(--neon);
}

.brutalist-card-dark {
    background: #111;
    border: 4px solid var(--neon);
    padding: 40px;
    box-shadow: 15px 15px 0px var(--neon);
    color: white;
}

.text-white {
    color: white;
}

/* Migration V3 */
.section-migration-v3 {
    padding: 80px 0;
}

.v3-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.v3-step {
    padding: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.v3-step span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon);
    margin-bottom: 12px;
}

.v3-step p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: white;
}

.v3-step.active {
    border-color: var(--neon);
    background: rgba(255, 100, 0, 0.1);
}

/* Video V3 */
.section-video-v3 {
    padding: 80px 0;
}

.v3-video-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.v3-side-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
}

.v3-side-text p {
    margin-bottom: 32px;
    opacity: 0.8;
    color: white;
}

@media (max-width: 768px) {
    .v3-steps {
        grid-template-columns: 1fr;
    }
}
