@font-face {
    font-family: 'Aleo';
    src: url('./assets/fonts/Aleo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('./assets/fonts/Merriweather_36pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Aleo', Georgia, serif;
    background: #fff;
    color: #1a1a1a;
}

/* ── NAV ── */
.lp-nav {
    background: #fff;
    border-bottom: 1px solid #E2E8F4;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 76, 153, 0.07);
}

.lp-logo img {
    height: 38px;
    width: auto;
}

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

.lp-nav-link {
    font-size: 14px;
    color: #444;
    cursor: pointer;
    font-family: 'Aleo', Georgia, serif;
    text-decoration: none;
}

.lp-nav-link:hover {
    color: #0066CC;
    text-decoration: none;
}

.lp-nav-cta {
    background: #f4782a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Merriweather', Georgia, serif;
    transition: background 0.15s;
}

.lp-nav-cta:hover {
    background: #d9631c;
    color: #fff;
}

@media (max-width: 768px) {
    .lp-nav {
        padding: 12px 20px;
    }

    .lp-nav-links {
        display: none;
    }
}

/* ── HERO ── */
.lp-hero {
    background: linear-gradient(135deg, #004C99 0%, #0066CC 60%, #0080E8 100%);
    color: #fff;
    padding: 72px 40px 64px;
    position: relative;
    overflow: hidden;
}

.lp-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.lp-hero-inner {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.lp-hero h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.lp-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 560px;
}

.lp-hero-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 14px;
    font-style: italic;
}

.lp-cta-btn {
    display: inline-block;
    background: #f4782a;
    color: #fff;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    padding: 16px 36px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: background 0.15s, transform 0.1s;
}

.lp-cta-btn:hover {
    background: #d9631c;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .lp-hero {
        padding: 48px 20px 48px;
    }

    .lp-hero h1 {
        font-size: 30px;
    }

    .lp-hero p {
        font-size: 16px;
    }

    .lp-cta-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

/* ── TRUST BAR ── */
.lp-trust-bar {
    background: #003A80;
    padding: 16px 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-family: 'Aleo', Georgia, serif;
}

.lp-trust-icon {
    font-size: 15px;
    color: #5BD4A4;
}

@media (max-width: 768px) {
    .lp-trust-bar {
        padding: 14px 20px;
        gap: 16px;
    }

    .lp-trust-item {
        font-size: 12px;
    }
}

/* ── SECTIONS ── */
.lp-section {
    padding: 56px 40px;
}

.lp-section.gray {
    background: #F7F9FC;
}

.lp-section h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #004C99;
    margin-bottom: 12px;
    line-height: 1.25;
}

.lp-section .section-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 660px;
}

/* ── BULLETS ── */
.lp-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 660px;
}

.lp-bullets li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.lp-bullet-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0066CC;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    font-family: 'Aleo', Georgia, serif;
}

/* ── FEATURE GRID ── */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.lp-feature-card {
    background: #fff;
    border: 1px solid #E2E8F4;
    border-radius: 10px;
    padding: 28px 24px;
    border-top: 3px solid #0066CC;
}

.lp-feature-icon {
    font-size: 30px;
    margin-bottom: 14px;
    display: block;
}

.lp-feature-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    color: #004C99;
    margin-bottom: 10px;
}

.lp-feature-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .lp-feature-grid {
        grid-template-columns: 1fr;
    }

    .lp-section {
        padding: 40px 20px;
    }
}

/* ── QUIZ SECTION ── */
.lp-quiz-section {
    background: linear-gradient(135deg, #F0F6FF, #E8F0FB);
    padding: 64px 40px;
}

.lp-quiz-container {
    background: #fff;
    border-radius: 14px;
    padding: 48px 48px;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: 0 6px 32px rgba(0, 76, 153, 0.12);
    border: 1px solid #D8E5F7;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #004C99;
    margin-bottom: 8px;
    line-height: 1.35;
}

.quiz-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.6;
}

.quiz-btn-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quiz-option-btn {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #F7F9FC;
    border: 2px solid #D8E5F7;
    border-radius: 10px;
    padding: 18px 20px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
    font-family: 'Aleo', Georgia, serif;
    width: 100%;
}

.quiz-option-btn:hover {
    border-color: #0066CC;
    background: #EEF5FF;
}

.quiz-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0066CC;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.quiz-option-text strong {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.quiz-option-text span {
    font-size: 13px;
    color: #666;
}

.quiz-yn-group {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.quiz-yn-btn {
    flex: 1;
    padding: 16px;
    border: 2px solid #D8E5F7;
    border-radius: 10px;
    background: #F7F9FC;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-family: 'Merriweather', Georgia, serif;
    color: #004C99;
}

.quiz-yn-btn:hover {
    border-color: #0066CC;
    background: #EEF5FF;
}

.quiz-yn-btn.yes {
}

.quiz-yn-btn.no {
}

/* ── ALERT MESSAGES ── */
.quiz-alert {
    background: #FFF8F0;
    border: 1px solid #f4782a;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #7a3800;
    line-height: 1.6;
    display: none;
}

.quiz-alert.show {
    display: block;
}

.quiz-alert-blue {
    background: #F0F6FF;
    border: 1px solid #0066CC;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #003A80;
    line-height: 1.6;
    display: none;
}

.quiz-alert-blue.show {
    display: block;
}

/* ── REDIRECT CARD ── */
.redirect-card {
    text-align: center;
    padding: 20px 0;
}

.redirect-card .redirect-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.redirect-card h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 22px;
    color: #004C99;
    margin-bottom: 12px;
}

.redirect-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ── CONTACT FORM ── */
.form-section-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #004C99;
    margin-bottom: 6px;
}

.form-section-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.6;
}

.lp-form-group {
    margin-bottom: 18px;
}

.lp-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    font-family: 'Aleo', Georgia, serif;
}

.lp-form-input {
    width: 100%;
    border: 1.5px solid #CBD5E0;
    border-radius: 7px;
    padding: 12px 14px;
    font-size: 15px;
    color: #333;
    background: #fff;
    outline: none;
    font-family: 'Aleo', Georgia, serif;
}

.lp-form-input:focus {
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.lp-form-select {
    width: 100%;
    border: 1.5px solid #CBD5E0;
    border-radius: 7px;
    padding: 12px 14px;
    font-size: 15px;
    color: #333;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    appearance: none;
    outline: none;
    cursor: pointer;
    font-family: 'Aleo', Georgia, serif;
}

.lp-form-select:focus {
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.disclaimer-text {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.5;
}

.free-consulation-btn {
    width: 100%;
    background: #f4782a !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 17px;
    font-family: 'Merriweather', Georgia, serif;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.15s;
    display: block;
    text-align: center;
}

.free-consulation-btn:hover {
    background: #d9631c !important;
}

.privacy-lock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    justify-content: center;
}

.privacy-lock-img {
    width: 16px;
    height: 16px;
}

.tcpa-consent-container {
    margin-top: 16px;
}

.tcpa-consent-text {
    font-size: 11px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

.tcpa-consent-text a {
    color: #046bd2;
}

/* ── FOOTER ── */
.lp-footer {
    background: #003A80;
    color: rgba(255, 255, 255, 0.7);
    padding: 32px 40px;
    font-size: 12px;
    line-height: 1.7;
    font-family: 'Aleo', Georgia, serif;
}

.lp-footer-logo {
    margin-bottom: 10px;
}

.lp-footer-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.lp-consent-notice {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .lp-quiz-container {
        padding: 32px 24px;
    }

    .lp-quiz-section {
        padding: 40px 16px;
    }

    .quiz-question {
        font-size: 18px;
    }

    .lp-footer {
        padding: 24px 20px;
    }
}

/* Progress indicator */
.quiz-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
}

.quiz-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D8E5F7;
    transition: background 0.2s;
}

.quiz-progress-dot.done {
    background: #0066CC;
}

.quiz-progress-dot.active {
    background: #f4782a;
}

.quiz-back-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Aleo', Georgia, serif;
}

.quiz-back-btn:hover {
    color: #004C99;
}

@media (min-width: 769px) {
    .lp-hero-inner {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .lp-hero h1 {
        font-size: 60px;
    }

    .lp-hero p {
        font-size: 22px;
    }

    .lp-cta-btn {
        font-size: 22px;
        padding: 18px 40px;
        background: #f4782a;
        border-radius: 8px;
        font-weight: bold;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    }
}
