/* ============================================
   LaraPush Variant 2: Professional Blue Edition
   Brand: #0067f5, Accent: #10b981
   ============================================ */

:root {
    --primary: #0067f5;
    --primary-dark: #0056cc;
    --primary-light: #eef2ff;
    --accent: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #0f172a;
    --text-main: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --container: 1200px;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.2;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 103, 245, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 103, 245, 0.4);
}

.btn-primary-sm {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: #e0e7ff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo span {
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }
}

/* Hero */
.hero {
    padding: 80px 0 120px;
    background: radial-gradient(circle at 90% 10%, var(--primary-light) 0%, var(--white) 50%);
}

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

.announcement {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ann-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.trust-pill-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero Form Card */
.hero-card {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.card-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.card-header p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.premium-form .form-group {
    margin-bottom: 24px;
}

.premium-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.premium-form input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.premium-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Social Proof */
.social-proof {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.proof-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 32px;
}

.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(1);
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit';
}

/* Section Header */
.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 64px;
}

/* Problem Cards */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-8px);
}

.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

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

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

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--text-light);
}

/* Comparison Table */
.comparison-section {
    background: var(--bg-light);
}

.table-container {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--dark);
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th.highlight {
    background: var(--primary);
}

.comparison-table td.check {
    color: var(--accent);
    font-weight: 700;
}

/* Calculator */
.calc-box {
    background: var(--dark);
    color: var(--white);
    padding: 64px;
    border-radius: 32px;
}

.calc-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.calc-header p {
    opacity: 0.7;
    margin-bottom: 48px;
}

.slider-group {
    margin-bottom: 64px;
}

.slider-group label {
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
    opacity: 0.9;
}

#calc-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    appearance: none;
    cursor: pointer;
}

#calc-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid #fff;
}

.slider-label {
    margin-top: 24px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.result-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.result-total {
    grid-column: span 2;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 20px;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 8px;
}

.price.red {
    color: var(--danger);
}

.price.green {
    color: var(--accent);
}

.price.gold {
    color: #facc15;
}

/* Features */
.feature-grid-rich {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.feature-item .f-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-item p {
    color: var(--text-light);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.faq-item p {
    color: var(--text-light);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
}

.cta-card-premium {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    color: var(--white);
    padding: 80px;
    border-radius: 40px;
}

.cta-card-premium h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-card-premium p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

.cta-form-inline {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
}

.cta-form-inline input {
    flex: 1;
    padding: 18px 24px;
    border-radius: var(--radius);
    border: none;
    font-size: 1rem;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 64px 0;
    border-top: 1px solid var(--border);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-light);
}

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

    .hero-grid,
    .problem-grid,
    .feature-grid-rich {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-card {
        margin-top: 40px;
    }

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

    .result-total {
        grid-column: span 1;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }
    .final-cta {
        padding: 48px 0;
    }

    .cta-card-premium {
        padding: 40px 24px;
        border-radius: 24px;
        text-align: center;
    }

    .cta-card-premium h2 {
        font-size: 2rem;
    }

    .cta-card-premium p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .cta-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* Migration Section */
.bg-light {
    background: #f8fafc;
}

.migration-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

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

.m-step span {
    width: 48px;
    height: 48px;
    background: #0067f5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 16px;
    font-size: 1.25rem;
}

.m-step p {
    font-weight: 600;
    font-size: 0.95rem;
}

.migration-note {
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
}

/* Video Gate */
.video-gate-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 103, 245, 0.08);
    border: 1px solid #e2e8f0;
}

.v-preview-side {
    flex: 1;
    background: #0f172a;
    position: relative;
    min-height: 250px;
}

.v-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background 0.2s;
}

.v-play-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.v-form-side {
    flex: 1;
    padding: 48px;
}

.inline-v2-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.inline-v2-form input {
    flex: 1;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

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

.v2-popup-overlay.active {
    display: flex;
}

.v2-popup-modal {
    background: white;
    padding: 48px;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.v2-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: none;
    font-size: 2rem;
    cursor: pointer;
}

.v2-tag {
    color: #0067f5;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

.v2-form-stacked input {
    width: 100%;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

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

    .video-gate-card {
        flex-direction: column;
    }

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