/* ============================================================
   LAVU LANDING PAGE — STYLES
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --dark:         #0F172A;
    --dark-2:       #1E293B;
    --accent:       #F97316;
    --accent-dark:  #EA580C;
    --text:         #1E293B;
    --text-light:   #64748B;
    --bg-light:     #F8FAFC;
    --white:        #FFFFFF;
    --border:       #E2E8F0;
    --success:      #10B981;
    --error:        #EF4444;
    --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    text-align: center;
    border-radius: 8px;
    line-height: 1.2;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    display: block;
}

/* ===== HERO ===== */
.hero {
    background: var(--dark);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(30px, 4.5vw, 54px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: #94A3B8;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ===== VSL SECTION ===== */
.vsl-section {
    background: var(--white);
    padding: 72px 0;
}

.video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.scarcity {
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== RESULTS SECTION ===== */
.results-section {
    background: var(--bg-light);
    padding: 88px 0;
    text-align: center;
}

.results-section h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-sub {
    color: var(--text-light);
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto 52px;
    line-height: 1.65;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

.result-card {
    background: white;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.result-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 14px;
}

.result-keyword {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 6px;
}

.result-time {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
}

.result-detail {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--white);
    padding: 88px 0;
}

.problem-section h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.25;
}

.problem-section p {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}

.stat-callout {
    background: var(--dark);
    color: white;
    border-radius: 12px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 40px 0;
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.stat-text {
    font-size: 20px;
    line-height: 1.5;
}

.emphasis {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 0 !important;
}

/* ===== SERVICE SECTION ===== */
.service-section {
    background: var(--dark);
    padding: 88px 0;
    color: white;
}

.service-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.service-section h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-sub-light {
    color: #94A3B8;
    font-size: 18px;
    margin-bottom: 44px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 40px;
    margin-bottom: 36px;
}

.service-list li {
    font-size: 18px;
    padding: 18px 0;
    color: #E2E8F0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-closer {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ===== QUALIFIER SECTION ===== */
.qualifier-section {
    background: #FFF7ED;
    border-top: 4px solid var(--accent);
    padding: 72px 0;
    text-align: center;
}

.qualifier-section h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 20px;
}

.qualifier-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #334155;
}

.qualifier-section p:last-child {
    margin-bottom: 0;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--white);
    padding: 88px 0;
    text-align: center;
}

.process-section h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 52px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}

.step {
    padding: 36px 32px;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.step:hover {
    border-color: var(--accent);
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.3;
}

.step p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-light);
}

/* ===== FORM SECTION ===== */
.form-section {
    background: var(--bg-light);
    padding: 88px 0;
}

.form-section h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.form-section .section-sub {
    margin-bottom: 44px;
    text-align: center;
}

#booking-form {
    background: white;
    border-radius: 16px;
    padding: 52px 48px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

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

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.required {
    color: var(--accent);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 15px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font);
    color: var(--text);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

input.error,
select.error {
    border-color: var(--error);
}

input::placeholder {
    color: #CBD5E1;
}

/* Custom select arrow */
select {
    background-image: 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='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.field-error {
    display: block;
    font-size: 13px;
    color: var(--error);
    margin-top: 6px;
    min-height: 18px;
    font-weight: 500;
}

#submit-btn {
    margin-top: 8px;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
}

/* ===== MULTI-STEP FORM ===== */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: stepIn 0.25s ease;
}

@keyframes stepIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 28px;
}

/* Progress dots */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.step-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s ease, transform 0.2s ease;
}

.step-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.step-dot.complete {
    background: var(--success);
    transform: scale(1);
}

.step-counter {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Step navigation buttons */
.step-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.btn-back {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border);
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.btn-back:hover {
    border-color: var(--text-light);
    color: var(--text);
}

.step-nav .btn-primary {
    flex: 1;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    text-align: center;
    padding: 72px 48px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.success-message p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
    padding: 88px 0;
}

.faq-section h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 52px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 24px 28px;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font);
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background 0.15s ease;
    line-height: 1.4;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 28px 24px;
    background: white;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    background: var(--dark);
    padding: 88px 0;
    text-align: center;
    color: white;
}

.final-cta-section h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.final-cta-section p {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 16px;
    line-height: 1.7;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-section .btn {
    margin-top: 8px;
}

.cta-disclaimer {
    margin-top: 20px !important;
    font-size: 15px !important;
}

/* ===== FOOTER ===== */
.footer {
    background: #020617;
    padding: 40px 0 28px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-legal {
    font-size: 11px;
    color: #334155;
    line-height: 1.6;
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    color: #334155;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #0F172A;
}

.footer-bottom p {
    font-size: 14px;
    color: #475569;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-sep {
    color: #475569;
    font-size: 14px;
}

.footer-links a {
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

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

    #booking-form {
        padding: 32px 24px;
    }

    .success-message {
        padding: 48px 24px;
    }

    .stat-callout {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 16px;
    }

    .stat-number {
        font-size: 56px;
    }

    .service-list {
        padding: 8px 24px;
    }

    .container-narrow {
        padding: 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .btn-large {
        padding: 18px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 48px;
    }
}
