@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-blue: #0A58CA;
    --primary-dark: #003a8c;
    --accent-yellow: #FFB800;
    --accent-yellow-hover: #e5a500;
    --accent-red: #E63946;
    --text-main: #1E293B;
    --text-light: #64748B;
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --card-bg: #FFFFFF;
    --border-color: #E2E8F0;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg-main);
    line-height: 1.6;
}

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

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

.bg-light {
    background: var(--bg-light);
}

.w-100 {
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-main);
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.text-yellow {
    color: var(--accent-yellow);
}

.text-blue {
    color: var(--primary-blue);
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 30px;
}

.mb-4 {
    margin-bottom: 30px;
}

/* CTAs & Animations */
.btn-primary-large {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(10, 88, 202, 0.3);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 88, 202, 0.4);
}

.btn-primary-medium {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary-medium:hover {
    background: var(--primary-dark);
}

.btn-outline-light {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline-blue {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-blue:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.btn-outline-dark:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: #f0f4f8;
}

.btn-yellow-huge {
    display: inline-block;
    background: var(--accent-yellow);
    color: #0F172A;
    padding: 18px 45px;
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.4);
    text-transform: uppercase;
}

.btn-yellow-huge:hover {
    background: var(--accent-yellow-hover);
}

.btn-yellow-outline {
    display: inline-block;
    background: transparent;
    color: var(--accent-yellow-hover);
    border: 2px solid var(--accent-yellow);
    padding: 12px 20px;
    font-weight: 900;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-yellow-outline:hover {
    background: var(--accent-yellow);
    color: #0F172A;
}

.scale-anim {
    animation: subtle-scale 2s infinite ease-in-out;
}

@keyframes subtle-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 184, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-yellow);
    color: #0F172A;
    padding: 15px 25px;
    font-weight: 900;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid #fff;
}

.floating-cta:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--accent-yellow-hover);
}

/* Top Auth Bar */
.btn-login,
.btn-guest {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-guest {
    background: var(--accent-yellow);
    color: #0F172A;
}

.btn-guest:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-2px);
}

/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* 1. Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 80px 20px 100px 20px;
    position: relative;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    max-width: 500px;
    margin-bottom: 25px;
}

.micro-trusts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.mt-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-subtext strong {
    color: #fff;
}

.loss-aversion {
    background: rgba(255, 184, 0, 0.15);
    border: 1px dashed var(--accent-yellow);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 auto 30px auto;
    max-width: 600px;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* 2. Test Selection Modern */
.test-selection-modern {
    padding: 90px 0;
    background: #f8fafc;
}

.test-selection-modern .test-header {
    margin-bottom: 3rem;
}

.test-selection-modern h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.test-selection-modern .section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.section-social-proof {
    display: inline-block;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-main);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.grid-4-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.test-card-modern {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 30px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.test-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 88, 202, 0.12);
    border-color: var(--primary-blue);
}

.test-card-modern:hover .test-icon-modern i {
    transform: scale(1.1) rotate(-5deg);
}

.test-card-modern:hover .btn-primary-gradient {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.badge-gratis,
.badge-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.badge-gratis {
    background: #dcfce7;
    color: #166534;
}

.badge-popular {
    background: #fee2e2;
    color: #991b1b;
}

.test-icon-modern {
    width: 60px;
    height: 60px;
    background: #EFF6FF;
    color: var(--primary-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.test-icon-modern i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.test-title-modern {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.test-desc-modern {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.test-duration-modern {
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    width: max-content;
}

.test-action-modern {
    margin-top: auto;
}

.btn-primary-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9, #4f46e5);
    color: #ffffff !important;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.test-urgency-text {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .grid-4-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4-modern {
        grid-template-columns: 1fr;
    }

    .test-card-modern {
        padding: 24px 20px;
    }

    .test-selection-modern {
        padding: 60px 0;
    }
}

/* Floating Mobile CTA */
.floating-cta-mobile {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    align-items: flex-end;
}

@media (max-width: 600px) {
    .floating-cta-mobile {
        display: flex;
    }

    body {
        padding-bottom: 20px;
    }

    /* Prevent footer overlap */
}

/* 3. Problems */
.problems {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #fef08a 100%);
}

.problem-boxes {
    margin-bottom: 50px;
}

.problem-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-red);
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-box i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-top: 5px;
}

.problem-box p {
    margin: 0;
    color: var(--text-main);
    font-size: 1.1rem;
}

.problem-solution-trigger {
    background: #EFF6FF;
    padding: 40px;
    border-radius: 12px;
    display: inline-block;
    max-width: 800px;
    border: 2px dashed rgba(10, 88, 202, 0.3);
}

/* 4. Flow System */
.flow-system {
    padding: 90px 0;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.step {
    flex: 1;
    text-align: center;
    min-width: 200px;
    position: relative;
    padding: 20px 10px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 15px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.active-step .step-icon {
    border-color: var(--accent-yellow);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.step h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.85rem;
}

.step-arrow {
    color: #CBD5E1;
    font-size: 1.5rem;
}

/* After Test Experience */
.after-test {
    padding: 90px 0;
}

.feature-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fb-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.feature-box h4 {
    margin-bottom: 10px;
}

/* 5. Programs */
.programs {
    padding: 90px 0;
    background: #F4F7FB;
}

.programs h2 {
    color: var(--text-main);
}

.programs .section-subtitle {
    color: var(--text-light);
}

.programs .section-subtitle strong {
    color: var(--text-main);
}

.program-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-radius: 20px;
    width: fit-content;
}

.badge-beginner {
    background: #DCFCE7;
    color: #166534;
}

.badge-intermediate {
    background: #FEF9C3;
    color: #854D0E;
}

.badge-advanced {
    background: #FEE2E2;
    color: #991B1B;
}

.badge-all {
    background: #E0E7FF;
    color: #3730A3;
}

/* 6. WHV Trigger */
.whv-trigger {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 100px 20px;
    position: relative;
}

.whv-badge {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 8px 16px;
    font-weight: 800;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whv-trigger h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: white;
}

.whv-salary-box {
    background: rgba(74, 222, 128, 0.1);
    border: 2px dashed #4ade80;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.whv-salary-box p {
    color: #cbd5e1;
    margin-bottom: 5px;
    font-size: 1rem;
}

.whv-salary-box h3 {
    color: #4ade80;
    font-size: 2.2rem;
    margin: 0;
}

.whv-req-title {
    color: #94A3B8;
    margin-bottom: 10px;
    font-weight: 600;
}

.whv-req-box {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.whv-req-box strong {
    color: var(--accent-yellow);
    margin-right: 5px;
}

.whv-req-box .divider {
    margin: 0 20px;
    color: rgba(255, 255, 255, 0.3);
}

/* 7. Testimonials */
.testimonials {
    padding: 90px 0;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review {
    font-size: 1.05rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 25px;
}

.user-info {
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    color: var(--text-light);
}

.user-info strong {
    color: var(--text-main);
}

/* 8. Forms */
.form-capture {
    padding: 100px 0;
}

.bg-blue-grad {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
}

.bg-blue-grad h2 {
    color: white;
    margin-bottom: 20px;
}

.form-trust {
    background: rgba(0, 0, 0, 0.15);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.trust-item {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item:last-child {
    margin-bottom: 0;
}

.lead-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    text-align: left;
}

.compact-form {
    max-width: 500px;
}

.detail-form {
    max-width: 800px;
    border: 1px solid var(--border-color);
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background: #FFFFFF;
    transition: var(--transition);
}

.lead-form input:focus,
.lead-form select:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.lead-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

/* Footer */
footer {
    background: #0F172A;
    color: white;
    padding: 60px 0 40px 0;
    text-align: center;
}

footer h3 {
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .step-arrow {
        display: none;
    }

    .whv-req-box {
        flex-direction: column;
        gap: 10px;
    }

    .whv-req-box .divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .step {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .floating-cta {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

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

    .whv-salary-box h3 {
        font-size: 1.6rem;
    }
}