﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #F4F1EC !important;
}

.serif {
    font-family: Georgia, 'Times New Roman', serif;
}

/* ====================================================
           SHARED
        ==================================================== */
.req {
    color: #C9A84C;
}

/* ====================================================
           DESKTOP HERO (≥1200px) — original two-column
        ==================================================== */
.hero-section {
    background: #1E3A1E;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 85% 15%, rgba(201,168,76,0.14) 0%, transparent 55%), radial-gradient(ellipse at 8% 90%, rgba(45,90,39,0.45) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-inner {
    display: grid;
    gap: 56px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 40px;
    position: relative;
    z-index: 1;
}

.join-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.16);
    border: 1px solid rgba(201,168,76,0.35);
    color: #C9A84C;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.hero-heading {
    font-family: Georgia, serif;
    color: white;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    color: #A9C4A6;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
}

.avatar-stack {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.avatar-group {
    display: flex;
}

    .avatar-group .av {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid #1E3A1E;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        margin-left: -12px;
    }

        .avatar-group .av:first-child {
            margin-left: 0;
        }

.av-gold {
    background: #C9A84C;
    color: #1E3A1E;
}

.av-green {
    background: #2D5A27;
    color: white;
}

.av-grey {
    background: #7A7268;
    color: white;
}

.av-ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 11px;
}

.avatar-text {
    color: #D6E2D4;
    font-size: 14px;
}

    .avatar-text strong {
        color: white;
    }

.value-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

    .value-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        color: #D6E2D4;
        font-size: 15px;
    }

.check-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201,168,76,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

    .check-circle i {
        color: #C9A84C;
        font-size: 11px;
    }

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px;
    max-width: 460px;
}

    .testimonial-card .quote-icon {
        color: #C9A84C;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .testimonial-card blockquote {
        color: #E8EFE6;
        font-size: 14px;
        line-height: 1.7;
        font-style: italic;
        margin: 0 0 16px;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #C9A84C;
    color: #1E3A1E;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.author-meta {
    color: #9DB89A;
    font-size: 11px;
}

/* ====================================================
           FORM CARD
        ==================================================== */
.form-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    padding: 36px;
}

.form-card-title {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.form-card-sub {
    color: #7A7268;
    font-size: 13px;
    margin-top: 4px;
    margin-bottom: 28px;
}

.field-label {
    font-size: 12px;
    font-weight: 600;
    color: #5A5651;
    display: block;
    margin-bottom: 6px;
}

    .field-label .opt {
        color: #AAA49D;
        font-weight: 400;
    }

.field {
    width: 100%;
    background: #FAFAF7;
    border: 1px solid #E2DDD6;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1A1A1A;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

    .field::placeholder {
        color: #AAA49D;
    }

    .field:focus {
        border-color: #2D5A27;
        box-shadow: 0 0 0 3px rgba(45,90,39,0.13);
    }

.field-icon-wrap {
    position: relative;
}

    .field-icon-wrap i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #AAA49D;
        font-size: 12px;
        pointer-events: none;
    }

    .field-icon-wrap .field {
        padding-left: 36px;
    }

.wa-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7A7268;
    font-size: 12px;
    margin-top: 8px;
}

    .wa-hint i {
        color: #2D5A27;
        font-size: 14px;
    }

.submit-btn {
    width: 100%;
    background: #C9A84C;
    color: #1E3A1E;
    font-weight: 700;
    font-size: 15px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.15s;
}

    .submit-btn:hover {
        background: #d9b962;
    }

.recaptcha-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #AAA49D;
    font-size: 11px;
    margin-top: 12px;
}

/* ====================================================
           HOW IT WORKS (desktop / mobile)
        ==================================================== */
.how-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 40px;
}

.how-title {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 8px;
}

.how-sub {
    color: #7A7268;
    font-size: 15px;
    text-align: center;
    margin-bottom: 48px;
}

.step-card {
    background: white;
    border: 1px solid #E2DDD6;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    height: 100%;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    color: #F0EDE6;
    line-height: 1;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.step-icon-green {
    background: #F0EDE6;
    color: #1E3A1E;
}

.step-icon-gold {
    background: rgba(201,168,76,0.16);
    color: #C9A84C;
}

.step-title {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.step-desc {
    color: #5A5651;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ====================================================
           TABLET INFO PANEL — left dark column (768–1199px only)
        ==================================================== */
.tb-info-panel {
    display: none; /* hidden outside tablet */
}

/* ====================================================
           DESKTOP (≥1200px)
        ==================================================== */
@media (min-width: 1200px) {
    .hero-inner {
        display: grid;
        grid-template-columns: 1fr 520px;
        grid-template-areas: "content form";
        gap: 56px;
        align-items: start;
    }

    .hero-left-desktop {
        grid-area: content;
    }

    .form-card {
        grid-area: form;
        display: block;
    }

    .how-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .hero-left-desktop {
        grid-area: content;
        display: block;
    }
    /* .hero-right-desktop { display: none; } */
    .form-card {
        grid-area: form;
        display: block !important;
    }

    .tb-form-card {
        display: none !important;
    }

    .tb-signin-note {
        display: none;
    }
}

/* ====================================================
           TABLET (768–1199px) — two-column info + form panel
        ==================================================== */
@media (min-width: 768px) and (max-width: 1199px) {
    /* Override hero background — right panel has its own bg */
    .hero-section {
        background: #F4F1EC;
        overflow: visible;
    }

        .hero-section::before {
            display: none;
        }

    .hero-inner {
        padding: 0;
        max-width: 100%;
        display: flex;
        min-height: calc(100vh - 60px);
    }
    /* Hide the original desktop left column */
    .hero-left-desktop {
        display: none !important;
    }
    /* Show the tablet info panel */
    .tb-info-panel {
        display: flex;
    }
    /* Form panel takes remaining space */
    .hero-right-desktop {
        flex: 1;
        background: #F4F1EC;
        padding: 32px 28px;
        overflow-y: auto;
    }
    /* ── Tablet Info Panel ── */
    .tb-info-panel {
        width: 340px;
        flex-shrink: 0;
        background: #1E3A1E;
        position: relative;
        overflow: hidden;
        padding: 32px 28px;
        flex-direction: column;
    }

        .tb-info-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 15%, rgba(201,168,76,0.15) 0%, transparent 55%), radial-gradient(ellipse at 10% 85%, rgba(45,90,39,0.5) 0%, transparent 50%);
            pointer-events: none;
        }

        .tb-info-panel > * {
            position: relative;
            z-index: 1;
        }
    /* Program badge row */
    .tb-program-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .tb-badge-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: #C9A84C;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .tb-badge-icon i {
            color: #1E3A1E;
            font-size: 18px;
        }

    .tb-badge-label {
        color: #C9A84C;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        line-height: 1.2;
    }

    .tb-badge-sub {
        color: #9DB89A;
        font-size: 11px;
    }
    /* Heading */
    .tb-heading {
        font-family: Georgia, serif;
        color: white;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 12px;
    }

        .tb-heading span {
            color: #C9A84C;
        }

    .tb-desc {
        color: #9DB89A;
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 24px;
    }
    /* Stats row */
    .tb-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }

    .tb-stat {
        border: 1px solid rgba(201,168,76,0.25);
        background: rgba(201,168,76,0.08);
        border-radius: 12px;
        padding: 10px 8px;
        text-align: center;
    }

    .tb-stat-num {
        font-family: Georgia, serif;
        color: #C9A84C;
        font-size: 19px;
        font-weight: 700;
        line-height: 1.1;
    }

    .tb-stat-lbl {
        color: #9DB89A;
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        margin-top: 2px;
    }
    /* Value props */
    .tb-props {
        margin-bottom: 24px;
    }

    .tb-prop {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
    }

    .tb-prop-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: #2D5A27;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .tb-prop-icon i {
            color: #C9A84C;
            font-size: 11px;
        }

    .tb-prop-title {
        color: white;
        font-size: 12px;
        font-weight: 600;
    }

    .tb-prop-desc {
        color: #8AAA88;
        font-size: 11px;
        margin-top: 1px;
    }
    /* Steps */
    .tb-steps-heading {
        color: #C9A84C;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 14px;
    }

    .tb-steps {
        margin-bottom: 20px;
    }

    .tb-step {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .tb-step-num {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 11px;
        font-weight: 700;
        margin-top: 1px;
    }

        .tb-step-num.active {
            background: #C9A84C;
            color: #1E3A1E;
        }

        .tb-step-num.pending {
            background: #2D5A27;
            color: #9DB89A;
        }

    .tb-step-title {
        color: white;
        font-size: 12px;
        font-weight: 600;
    }

    .tb-step-sub {
        color: #8AAA88;
        font-size: 11px;
    }

    .tb-step-line {
        width: 1px;
        height: 14px;
        background: #2D5A27;
        margin-left: 13px;
    }
    /* WhatsApp badge */
    .tb-wa-badge {
        background: #0f2c0f;
        border: 1px solid rgba(37,211,102,0.18);
        border-radius: 12px;
        padding: 14px;
        margin-bottom: 20px;
    }

    .tb-wa-badge-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
    }

        .tb-wa-badge-header i {
            color: #25D366;
            font-size: 18px;
        }

    .tb-wa-badge-title {
        color: white;
        font-size: 12px;
        font-weight: 600;
    }

    .tb-wa-badge-desc {
        color: #8AAA88;
        font-size: 11px;
        line-height: 1.5;
    }
    /* Testimonial */
    .tb-testimonial {
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 14px;
        padding: 16px;
    }

    .tb-testimonial-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .tb-testimonial-av {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #C9A84C;
        color: #1E3A1E;
        font-size: 11px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .tb-testimonial-name {
        color: white;
        font-size: 12px;
        font-weight: 600;
    }

    .tb-testimonial-meta {
        color: #7A9A78;
        font-size: 10px;
    }

    .tb-testimonial-quote {
        color: #9DB89A;
        font-size: 12px;
        line-height: 1.6;
        font-style: italic;
    }

    .tb-footer-note {
        color: #4A6A48;
        font-size: 10px;
        margin-top: auto;
        padding-top: 20px;
    }
    /* ── Tablet Form Panel ── */
    /* Override form card for the inner panel layout */
    .tb-form-card {
        background: white;
        border: 1px solid #E2DDD6;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        margin-bottom: 16px;
    }

    .tb-form-card-header {
        background: #1E3A1E;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tb-form-card-header-label {
        color: #C9A84C;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 4px;
    }

    .tb-form-card-header h2 {
        font-family: Georgia, serif;
        color: white;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .tb-form-card-header p {
        color: #9DB89A;
        font-size: 12px;
        margin: 4px 0 0;
    }

    .tb-form-card-header-icon {
        width: 48px;
        height: 48px;
        background: #2D5A27;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .tb-form-card-header-icon i {
            color: #C9A84C;
            font-size: 16px;
        }

    .tb-form-body {
        padding: 24px;
    }
    /* Section headers inside form */
    .tb-section-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 16px;
    }

    .tb-section-num {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #1E3A1E;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .tb-section-num span {
            color: #C9A84C;
            font-size: 9px;
            font-weight: 700;
        }

        .tb-section-num.wa-num {
            background: #25D366;
        }

            .tb-section-num.wa-num i {
                color: white;
                font-size: 10px;
            }

        .tb-section-num.opt-num {
            background: #7A7268;
        }

            .tb-section-num.opt-num span {
                color: white;
            }

    .tb-section-title {
        color: #1E3A1E;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.07em;
    }

    .tb-section-divider {
        flex: 1;
        height: 1px;
        background: #E2DDD6;
    }

    .tb-opt-badge {
        background: #F0EBE0;
        color: #7A7268;
        font-size: 10px;
        padding: 1px 7px;
        border-radius: 99px;
        font-weight: 500;
    }

    .tb-section-block {
        margin-bottom: 24px;
    }
    /* WhatsApp info banner */
    .tb-wa-info {
        background: #F0FAF3;
        border: 1px solid rgba(37,211,102,0.18);
        border-radius: 10px;
        padding: 10px 12px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

        .tb-wa-info i {
            color: #25D366;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .tb-wa-info p {
            color: #1A4A24;
            font-size: 11px;
            line-height: 1.5;
            margin: 0;
        }
    /* WhatsApp input wrap */
    .tb-wa-wrap {
        border: 2px solid #C9A84C;
        border-radius: 10px;
        overflow: hidden;
        background: white;
        display: flex;
        align-items: stretch;
    }

    .tb-wa-code {
        background: #F4F1EC;
        border-right: 1px solid #E2DDD6;
        width: 90px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .tb-wa-code input {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: #1A1A1A;
            padding: 10px 4px;
        }

    .tb-wa-num-input {
        flex: 1;
        padding: 10px 12px;
        font-size: 13px;
        color: #1A1A1A;
        border: none;
        outline: none;
    }

    .tb-wa-icon {
        display: flex;
        align-items: center;
        padding-right: 12px;
    }

        .tb-wa-icon i {
            color: #25D366;
            font-size: 17px;
        }

    .helper-text {
        color: #7A7268;
        font-size: 11px;
        margin-top: 6px;
    }
    /* Privacy block */
    .tb-privacy {
        background: #F4F1EC;
        border-radius: 10px;
        padding: 10px 12px;
        margin-bottom: 16px;
        font-size: 11px;
        color: #5A5651;
        line-height: 1.5;
    }

        .tb-privacy a {
            color: #2D5A27;
            font-weight: 500;
        }
    /* Tablet submit button */
    .tb-submit-btn {
        width: 100%;
        background: #1E3A1E;
        color: #C9A84C;
        font-weight: 700;
        font-size: 15px;
        padding: 16px;
        border: none;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: background 0.2s;
    }

        .tb-submit-btn:hover {
            background: #162d16;
        }
    /* Already a contributor */
    .tb-signin-note {
        text-align: center;
        font-size: 12px;
        color: #5A5651;
        margin-top: 14px;
    }

        .tb-signin-note a {
            color: #2D5A27;
            font-weight: 600;
            text-decoration: none;
        }
    /* Recent contributions */
    .tb-recent-heading {
        font-family: Georgia, serif;
        color: #1E3A1E;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .tb-recent-sub {
        color: #5A5651;
        font-size: 12px;
        margin-bottom: 16px;
    }

    .tb-recent-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .tb-specimen-card {
        background: white;
        border: 1px solid #E2DDD6;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .tb-specimen-img {
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

        .tb-specimen-img i {
            font-size: 36px;
            opacity: 0.4;
        }

    .tb-specimen-size {
        position: absolute;
        top: 8px;
        right: 8px;
        background: #C9A84C;
        color: #1E3A1E;
        font-size: 9px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 99px;
    }

    .tb-specimen-body {
        padding: 8px 10px;
    }

    .tb-specimen-name {
        font-family: Georgia, serif;
        font-size: 11px;
        font-weight: 600;
        color: #1A1A1A;
        line-height: 1.3;
    }

    .tb-specimen-loc {
        font-size: 10px;
        color: #7A7268;
        margin-top: 2px;
    }
    /* Hide desktop form card & how section on tablet */
    .form-card {
        display: none !important;
    }

    .how-section {
        display: none !important;
    }
    /* Hide original desktop left col on tablet */
    .hero-left-desktop {
        display: none !important;
    }
}

/* ====================================================
           MOBILE (<768px)
        ==================================================== */
/* ====================================================
           MOBILE LAYOUT SECTIONS (default hidden)
        ==================================================== */
.mob-layout {
    display: none;
}

@media (max-width: 767px) {
    /* Hide desktop/tablet sections */
    .hero-section {
        display: none !important;
    }

    .how-section {
        display: none !important;
    }
    /* Show mobile layout */
    .mob-layout {
        display: block;
    }
    /* ── Mobile Hero ── */
    .mob-hero-bg {
        background: #1E3A1E;
        position: relative;
        overflow: hidden;
        padding: 24px 20px 28px;
    }

        .mob-hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 80% 10%, rgba(201,168,76,0.14) 0%, transparent 55%), radial-gradient(ellipse at 5% 90%, rgba(45,90,39,0.45) 0%, transparent 50%);
            pointer-events: none;
        }

    .mob-stat-chip {
        background: rgba(201,168,76,0.15);
        border: 1px solid rgba(201,168,76,0.3);
        border-radius: 99px;
        padding: 3px 10px;
        font-size: 11px;
        color: #C9A84C;
        font-weight: 600;
        white-space: nowrap;
    }
    /* ── Mobile Process Section ── */
    .mob-process-section {
        background: white;
        border-bottom: 1px solid #E2DDD6;
        padding: 20px;
    }

    .mob-step-circle {
        width: 32px;
        height: 32px;
        border-radius: 9999px;
        background: #1E3A1E;
        color: #C9A84C;
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .mob-step-circle.done {
            background: #C9A84C;
            color: #1E3A1E;
        }
    /* ── Mobile Example Section ── */
    .mob-example-section {
        padding: 16px;
        background: #F4F1EC;
    }

    .mob-example-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(30,58,30,0.08);
    }
    /* ── Mobile Form ── */
    .mob-form-main {
        padding: 0 16px 32px;
        background: #F4F1EC;
    }

    .mob-form-card {
        background: white;
        border-radius: 16px;
        border: 1px solid #E2DDD6;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        margin-bottom: 20px;
    }

    .mob-form-header {
        background: #1E3A1E;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mob-form-header-label {
        color: #C9A84C;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 2px;
    }

    .mob-form-header h2 {
        font-family: Georgia, serif;
        color: white;
        font-size: 15px;
        font-weight: 700;
        margin: 0;
    }

    .mob-form-header p {
        color: #9DB89A;
        font-size: 11px;
        margin: 3px 0 0;
    }

    .mob-form-header-icon {
        width: 40px;
        height: 40px;
        background: #2D5A27;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .mob-form-header-icon i {
            color: #C9A84C;
            font-size: 14px;
        }

    .mob-form-body {
        padding: 20px;
    }

    .mob-section-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
    }

    .mob-section-num {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #1E3A1E;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .mob-section-num span {
            color: #C9A84C;
            font-size: 9px;
            font-weight: 700;
        }

        .mob-section-num.wa-num {
            background: #25D366;
        }

            .mob-section-num.wa-num i {
                color: white;
                font-size: 10px;
            }

        .mob-section-num.opt-num {
            background: #7A7268;
        }

            .mob-section-num.opt-num span {
                color: white;
            }

    .mob-section-title {
        color: #1E3A1E;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.07em;
    }

    .mob-section-divider {
        flex: 1;
        height: 1px;
        background: #E2DDD6;
    }

    .mob-opt-badge {
        background: #F0EBE0;
        color: #7A7268;
        font-size: 10px;
        padding: 1px 7px;
        border-radius: 99px;
        font-weight: 500;
    }

    .mob-section-block {
        margin-bottom: 20px;
    }

    .mob-field-label {
        font-size: 12px;
        font-weight: 600;
        color: #1A1A1A;
        display: block;
        margin-bottom: 6px;
    }

    .mob-req {
        color: #C0392B;
    }

    .mob-field {
        width: 100%;
        background: #FAFAF7;
        border: 1px solid #E2DDD6;
        border-radius: 10px;
        padding: 12px 14px;
        font-size: 14px;
        color: #1A1A1A;
        outline: none;
        transition: border-color 0.15s, box-shadow 0.15s;
    }

        .mob-field::placeholder {
            color: #AAA49D;
        }

        .mob-field:focus {
            border-color: #2D5A27;
            box-shadow: 0 0 0 3px rgba(45,90,39,0.13);
        }

    .mob-field-icon-wrap {
        position: relative;
    }

        .mob-field-icon-wrap i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #AAA49D;
            font-size: 12px;
            pointer-events: none;
        }

        .mob-field-icon-wrap .mob-field {
            padding-left: 36px;
        }

    .mob-wa-info {
        background: #F0FAF3;
        border: 1px solid rgba(37,211,102,0.18);
        border-radius: 10px;
        padding: 10px 12px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

        .mob-wa-info i {
            color: #25D366;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .mob-wa-info p {
            color: #1A4A24;
            font-size: 11px;
            line-height: 1.5;
            margin: 0;
        }

    .mob-wa-wrap {
        border: 2px solid #C9A84C;
        border-radius: 10px;
        overflow: hidden;
        background: white;
        display: flex;
        align-items: stretch;
    }

    .mob-wa-code {
        background: #F4F1EC;
        border-right: 1px solid #E2DDD6;
        width: 90px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .mob-wa-code input {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: #1A1A1A;
            padding: 10px 4px;
        }

    .mob-wa-num-input {
        flex: 1;
        padding: 10px 12px;
        font-size: 13px;
        color: #1A1A1A;
        border: none;
        outline: none;
    }

    .mob-wa-icon {
        display: flex;
        align-items: center;
        padding-right: 12px;
    }

        .mob-wa-icon i {
            color: #25D366;
            font-size: 17px;
        }

    .mob-helper {
        color: #7A7268;
        font-size: 11px;
        margin-top: 6px;
    }

    .mob-privacy {
        background: #F4F1EC;
        border-radius: 10px;
        padding: 10px 12px;
        margin-bottom: 14px;
        font-size: 11px;
        color: #5A5651;
        line-height: 1.5;
    }

        .mob-privacy a {
            color: #2D5A27;
            font-weight: 500;
        }

    .mob-submit-btn {
        width: 100%;
        background: #1E3A1E;
        color: #C9A84C;
        font-weight: 700;
        font-size: 15px;
        padding: 16px;
        border: none;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: background 0.2s;
    }

        .mob-submit-btn:hover {
            background: #162d16;
        }

    .mob-signin-note {
        text-align: center;
        font-size: 12px;
        color: #5A5651;
        padding: 0 0 8px;
    }

        .mob-signin-note a {
            color: #2D5A27;
            font-weight: 600;
            text-decoration: none;
        }
}

