    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --brand-blue: #124265;
        --brand-coral: #E54C38;
        --brand-light: #FF746C;
        --gold: #C8952A;
        --gold-light: #E8B84B;
        --cream: #FFF7F5;
        --ink: #1A1A1A;
        --muted: #666;
        --border: #E8E0D5;
        --success: #25D366;
    }

    body {
        font-family: 'Poppins', sans-serif;
        color: var(--ink);
        background: #fff;
        line-height: 1.6;
    }

    .vastu-report-button {
        display: inline-block;
        background-color: var(--brand-coral);
        color: #fff;
        padding: 14px 36px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 0.02em;
    }

    /* ─── STICKY NAV ─── */
    .top-bar {
        background: var(--brand-blue);
        padding: 10px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .top-bar-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .top-bar-logo img {
        height: 36px;
        width: auto;
    }

    .top-bar-logo span {
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        color: #fff;
        font-weight: 400;
        letter-spacing: 0.03em;
    }

    .top-bar-cta {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .top-bar-phone {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
    }

    .btn-wa-small {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--success);
        color: #fff;
        padding: 7px 14px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: opacity 0.2s;
    }

    .btn-wa-small:hover {
        opacity: 0.88;
    }

    .btn-wa-lg {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--success);
        color: #fff;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    }

    .btn-wa-lg:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
        color: #fff;
    }

    /* ─── HERO ─── */
    .hero {
        background: linear-gradient(135deg, #fff7f5 0%, #fde8e6 60%, #fff0e0 100%);
        padding: 64px 24px 56px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 76, 56, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero-badge {
        display: inline-block;
        background: var(--brand-coral);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 5px 16px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(32px, 6vw, 54px);
        font-weight: 400;
        color: var(--brand-blue);
        line-height: 1.15;
        max-width: 700px;
        margin: 0 auto 16px;
    }

    .hero h1 em {
        font-style: italic;
        color: var(--brand-coral);
    }

    .hero-sub {
        font-size: 16px;
        color: var(--muted);
        max-width: 560px;
        margin: 0 auto 32px;
        line-height: 1.7;
    }

    .hero-price-block {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        background: #fff;
        border: 2px solid var(--brand-coral);
        border-radius: 12px;
        padding: 14px 28px;
        margin-bottom: 28px;
    }

    .price-label {
        font-size: 13px;
        color: var(--muted);
    }

    .price-main {
        font-family: 'Cormorant Garamond', serif;
        font-size: 44px;
        font-weight: 600;
        color: var(--brand-blue);
        line-height: 1;
    }

    .price-del {
        font-size: 20px;
        color: #bbb;
        text-decoration: line-through;
    }

    .hero-delivery {
        font-size: 13px;
        color: var(--muted);
        margin-top: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .hero-delivery i {
        color: var(--brand-coral);
    }

    /* ─── HERO LAYOUT ─── */
    .hero-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        max-width: 960px;
        margin: 0 auto;
    }

    .hero-content {
        flex: 0 0 80%;
        max-width: 80%;
        text-align: center;
    }

    .hero-img-wrap {
        flex: 0 0 20%;
        max-width: 20%;
        text-align: center;
    }

    .hero-img-wrap img {
        width: 100%;
        max-width: 190px;
        border-radius: 14px;
        display: block;
        margin: 0 auto;
        box-shadow: 0 8px 28px rgba(18, 66, 101, 0.15);
    }

    .hero-img-caption {
        margin-top: 10px;
        font-size: 12px;
        color: var(--muted);
        line-height: 1.5;
    }

    .hero-img-caption strong {
        display: block;
        color: var(--brand-blue);
        font-weight: 600;
        font-size: 13px;
    }

    @media (max-width: 640px) {
        .hero-inner {
            flex-direction: column-reverse;
            gap: 20px;
        }

        .hero-content,
        .hero-img-wrap {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .hero-img-wrap img {
            max-width: 120px;
        }
    }

    /* ─── PROBLEM CARDS ─── */
    .problem-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
        margin-top: 28px;
    }

    .problem-card {
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 14px;
        padding: 22px 20px;
        display: flex;
        gap: 14px;
        align-items: flex-start;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .problem-card:hover {
        border-color: var(--brand-coral);
        box-shadow: 0 6px 20px rgba(229, 76, 56, 0.1);
    }

    .problem-icon {
        font-size: 28px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .problem-card h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--brand-blue);
        margin-bottom: 5px;
    }

    .problem-card p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6;
    }

    .problem-cta-row {
        margin-top: 36px;
        text-align: center;
    }

    .problem-cta-row p {
        font-size: 16px;
        font-weight: 500;
        color: var(--ink);
        margin-bottom: 16px;
    }


    /* ─── TRUST STRIP ─── */
    .trust-strip {
        background: var(--brand-blue);
        padding: 16px 24px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 28px;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
    }

    .trust-item i {
        color: var(--gold-light);
        font-size: 16px;
    }

    /* ─── WHAT YOU GET ─── */
    .section {
        padding: 64px 24px;
        max-width: 900px;
        margin: 0 auto;
    }

    .section-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--brand-coral);
        margin-bottom: 12px;
    }

    .section-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(26px, 4vw, 40px);
        font-weight: 400;
        color: var(--brand-blue);
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .section-sub {
        color: var(--muted);
        font-size: 15px;
        max-width: 600px;
        margin-bottom: 40px;
    }

    .what-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .what-card {
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px 22px;
        transition: box-shadow 0.2s, transform 0.2s;
    }

    .what-card:hover {
        box-shadow: 0 8px 28px rgba(229, 76, 56, 0.1);
        transform: translateY(-3px);
    }

    .what-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: linear-gradient(135deg, #fff7f5, #fde8e6);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--brand-coral);
        margin-bottom: 14px;
    }

    .what-card h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--brand-blue);
        margin-bottom: 6px;
    }

    .what-card p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.65;
    }

    /* ─── STEPS ─── */
    .steps-section {
        background: var(--cream);
        padding: 64px 24px;
    }

    .steps-inner {
        max-width: 900px;
        margin: 0 auto;
    }

    .steps-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 36px;
        position: relative;
    }

    .steps-list::before {
        content: '';
        position: absolute;
        left: 23px;
        top: 24px;
        bottom: 24px;
        width: 2px;
        background: linear-gradient(to bottom, var(--brand-coral), var(--gold));
        z-index: 0;
    }

    .step-item {
        display: flex;
        gap: 24px;
        align-items: flex-start;
        padding: 20px 0;
        position: relative;
        z-index: 1;
    }

    .step-num {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--brand-coral);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 16px;
        flex-shrink: 0;
        border: 3px solid var(--cream);
    }

    .step-content h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--brand-blue);
        margin-bottom: 4px;
    }

    .step-content p {
        font-size: 14px;
        color: var(--muted);
    }

    /* ─── TESTIMONIALS ─── */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
        margin-top: 36px;
    }

    .t-card {
        background: var(--cream);
        border-radius: 12px;
        padding: 24px 22px;
        border-left: 4px solid var(--brand-coral);
    }

    .t-stars {
        color: #F5A623;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .t-text {
        font-size: 14px;
        color: #444;
        line-height: 1.7;
        font-style: italic;
        margin-bottom: 16px;
    }

    .t-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--brand-blue);
    }

    .t-loc {
        font-size: 12px;
        color: var(--muted);
    }

    /* ─── ACHARYA STRIP ─── */
    .acharya-strip {
        background: var(--brand-blue);
        padding: 48px 24px;
        text-align: center;
        color: #fff;
    }

    .acharya-strip h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 32px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .acharya-strip h2 em {
        font-style: italic;
        color: var(--gold-light);
    }

    .acharya-strip p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.72);
        max-width: 560px;
        margin: 0 auto 24px;
        line-height: 1.75;
    }

    .acharya-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
    }

    .a-badge {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.85);
        padding: 7px 18px;
        border-radius: 20px;
        font-size: 12px;
        letter-spacing: 0.05em;
    }

    /* ─── ACHARYA STRIP LAYOUT ─── */
    .acharya-strip-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 36px;
        max-width: 780px;
        margin: 0 auto;
    }

    .acharya-strip-photo {
        flex-shrink: 0;
    }

    .acharya-strip-photo a {
        display: block;
    }

    .acharya-strip-photo img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        object-position: top center;
        border: 3px solid var(--gold-light);
        display: block;
        transition: opacity 0.2s;
    }

    .acharya-strip-photo img:hover {
        opacity: 0.88;
    }

    .acharya-strip-text {
        flex: 1;
        text-align: left;
    }

    .acharya-strip-text h2 {
        text-align: left;
    }

    .acharya-strip-text p {
        text-align: left;
        margin: 0 0 20px;
    }

    .acharya-strip-link {
        display: inline-block;
        color: var(--gold-light);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        margin-top: 16px;
        border-bottom: 1px solid rgba(232, 184, 75, 0.4);
        padding-bottom: 2px;
        transition: border-color 0.2s;
    }

    .acharya-strip-link:hover {
        border-color: var(--gold-light);
    }

    @media (max-width: 600px) {
        .acharya-strip-inner {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .acharya-strip-text {
            text-align: center;
        }

        .acharya-strip-text h2,
        .acharya-strip-text p {
            text-align: center;
        }
    }

    /* ─── FORM SECTION ─── */
    .form-section {
        padding: 72px 24px;
        background: #fff;
    }

    .form-inner {
        max-width: 680px;
        margin: 0 auto;
    }

    .form-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 40px 36px;
        box-shadow: 0 16px 56px rgba(18, 66, 101, 0.08);
    }

    @media (max-width: 600px) {
        .form-card {
            padding: 28px 20px;
        }
    }

    .form-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .form-header h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 30px;
        font-weight: 400;
        color: var(--brand-blue);
        margin-bottom: 6px;
    }

    .form-header p {
        font-size: 14px;
        color: var(--muted);
    }

    .form-group {
        margin-bottom: 18px;
    }

    label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: var(--brand-blue);
        margin-bottom: 6px;
    }

    .required {
        color: var(--brand-coral);
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="number"],
    select,
    textarea {
        width: 100%;
        padding: 11px 14px;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: var(--ink);
        background: #fff;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
        appearance: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--brand-coral);
        box-shadow: 0 0 0 3px rgba(229, 76, 56, 0.1);
    }

    input::placeholder,
    textarea::placeholder {
        color: #bbb;
    }

    .input-hint {
        font-size: 11px;
        color: var(--muted);
        margin-top: 4px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    @media (max-width: 520px) {
        .form-row {
            grid-template-columns: 1fr;
        }
    }

    /* Compass degree visual */
    .degree-input-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .degree-input-wrap input {
        flex: 1;
    }

    .compass-mini {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    /* File upload */
    .file-drop {
        border: 2px dashed var(--border);
        border-radius: 10px;
        padding: 28px 20px;
        text-align: center;
        cursor: pointer;
        transition: border-color 0.2s, background 0.2s;
        position: relative;
    }

    .file-drop:hover,
    .file-drop.drag-over {
        border-color: var(--brand-coral);
        background: rgba(229, 76, 56, 0.03);
    }

    .file-drop input[type="file"] {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
        border: none;
        box-shadow: none;
    }

    .file-drop i {
        font-size: 28px;
        color: var(--brand-coral);
        margin-bottom: 8px;
        display: block;
    }

    .file-drop-text {
        font-size: 14px;
        color: var(--muted);
    }

    .file-drop-hint {
        font-size: 11px;
        color: #bbb;
        margin-top: 4px;
    }

    .file-name {
        font-size: 13px;
        color: var(--brand-blue);
        font-weight: 500;
        margin-top: 8px;
    }

    /* UPI Payment box */
    .upi-box {
        background: linear-gradient(135deg, #fff7f5, #fde8e6);
        border: 1.5px solid rgba(229, 76, 56, 0.25);
        border-radius: 12px;
        padding: 24px 20px;
        text-align: center;
        margin: 24px 0;
    }

    .upi-box h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--brand-blue);
        margin-bottom: 4px;
    }

    .upi-box p {
        font-size: 12px;
        color: var(--muted);
        margin-bottom: 16px;
    }

    .upi-qr-placeholder {
        width: 160px;
        height: 160px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 8px;
        margin: 0 auto 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }

    .upi-qr-placeholder i {
        font-size: 52px;
        color: #ccc;
    }

    .upi-qr-placeholder span {
        font-size: 10px;
        color: #aaa;
        letter-spacing: 0.05em;
    }

    .upi-id {
        font-family: 'Courier New', monospace;
        font-size: 15px;
        font-weight: 600;
        color: var(--brand-blue);
        background: #fff;
        display: inline-block;
        padding: 6px 16px;
        border-radius: 6px;
        border: 1px solid var(--border);
        letter-spacing: 0.05em;
        margin-bottom: 10px;
    }

    .upi-amount {
        font-size: 22px;
        font-weight: 700;
        color: var(--brand-coral);
    }

    /* UPI copy button */
    .upi-id-row {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
    }

    .upi-copy-btn {
        background: none;
        border: 1.5px solid var(--brand-coral);
        color: var(--brand-coral);
        border-radius: 6px;
        padding: 4px 9px;
        cursor: pointer;
        font-size: 14px;
        line-height: 1;
        transition: background 0.2s, color 0.2s;
    }

    .upi-copy-btn:hover {
        background: var(--brand-coral);
        color: #fff;
    }

    /* Mobile UPI deep link */
    .upi-mobile-pay {
        display: none;
        margin-bottom: 14px;
    }

    .btn-upi-app {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--brand-blue);
        color: #fff;
        padding: 13px 28px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity 0.2s;
    }

    .btn-upi-app:hover {
        opacity: 0.88;
    }

    .upi-app-hint {
        font-size: 11px;
        color: var(--muted);
        margin: 6px 0 10px;
    }

    .upi-show-qr-toggle {
        background: none;
        border: none;
        color: var(--brand-coral);
        font-size: 12px;
        cursor: pointer;
        padding: 0;
        text-decoration: underline;
    }

    @media (max-width: 640px) {
        .upi-mobile-pay {
            display: block;
        }

        .upi-qr-placeholder {
            display: none;
        }

        .upi-qr-placeholder.visible {
            display: flex;
            margin-top: 12px;
        }
    }

    /* WhatsApp order option */
    .wa-order-divider {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 20px 0 16px;
        color: var(--muted);
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .wa-order-divider::before,
    .wa-order-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .wa-order-box {
        text-align: center;
    }

    .wa-order-desc {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 12px;
    }

    .btn-wa-order {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #25D366;
        color: #fff;
        border: none;
        padding: 12px 28px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: opacity 0.2s;
    }

    .btn-wa-order:hover {
        opacity: 0.88;
    }

    .wa-order-hint {
        font-size: 11px;
        color: #bbb;
        margin-top: 8px;
    }

    .upi-amount small {
        font-size: 12px;
        color: var(--muted);
        font-weight: 400;
        display: block;
        margin-top: 2px;
    }

    /* Transaction ID field that appears after confirming payment */
    .txn-field {
        display: none;
    }

    .txn-field.visible {
        display: block;
    }

    .checkbox-row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: var(--muted);
    }

    .checkbox-row input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex-shrink: 0;
        accent-color: var(--brand-coral);
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .btn-submit {
        width: 100%;
        padding: 16px;
        background: var(--brand-coral);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s, transform 0.1s;
        margin-top: 8px;
        letter-spacing: 0.02em;
    }

    .btn-submit:hover {
        background: #c93d2a;
    }

    .btn-submit:active {
        transform: scale(0.98);
    }

    .btn-submit:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .form-note {
        text-align: center;
        font-size: 12px;
        color: var(--muted);
        margin-top: 16px;
        line-height: 1.6;
    }

    /* ─── SUCCESS STATE ─── */
    .success-state {
        display: none;
        text-align: center;
        padding: 32px 20px;
    }

    .success-state.visible {
        display: block;
    }

    .success-icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: #e8f5e9;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        color: #4CAF50;
        margin: 0 auto 20px;
    }

    .success-state h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        color: var(--brand-blue);
        margin-bottom: 10px;
    }

    .success-state p {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .btn-wa-big {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--success);
        color: #fff;
        padding: 14px 28px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity 0.2s;
    }

    .btn-wa-big:hover {
        opacity: 0.88;
    }

    /* ─── FLOATING WA — circle on desktop ─── */
    .wa-float {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 200;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--success);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transition: transform 0.2s;
    }

    .wa-float:hover {
        transform: scale(1.08);
    }

    @media (max-width: 768px) {
        .wa-float {
            width: auto;
            height: auto;
            border-radius: 60px;
            bottom: 16px;
            right: 12px;
            left: 12px;
            background: #fff;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
            padding: 10px 10px 10px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0;
            font-size: inherit;
            color: inherit;
        }

        .wa-float:hover {
            transform: none;
        }

        .wa-pill-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .wa-pill-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .wa-pill-avatar-fallback {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            flex-shrink: 0;
            background: linear-gradient(135deg, #124265, #1a6090);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            font-family: 'Poppins', sans-serif;
        }

        .wa-pill-info {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .wa-pill-handle {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.2;
        }

        .wa-pill-phone {
            font-size: 12px;
            color: #888;
            line-height: 1.2;
        }

        .wa-pill-btn {
            background: var(--success);
            color: #fff;
            border-radius: 50px;
            padding: 10px 18px;
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            font-family: 'Poppins', sans-serif;
            flex-shrink: 0;
        }

        .wa-pill-btn i {
            font-size: 18px;
        }

        .wa-float>.bi-whatsapp {
            display: none;
        }
    }

    @media (min-width: 769px) {

        .wa-pill-left,
        .wa-pill-btn {
            display: none;
        }
    }

    /* ─── FAQ ─── */
    .faq-section {
        background: var(--cream);
        padding: 64px 24px;
    }

    .faq-inner {
        max-width: 700px;
        margin: 0 auto;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
    }

    .faq-q {
        font-size: 15px;
        font-weight: 500;
        color: var(--brand-blue);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .faq-q i {
        font-size: 14px;
        color: var(--brand-coral);
        transition: transform 0.2s;
        flex-shrink: 0;
    }

    .faq-q.open i {
        transform: rotate(45deg);
    }

    .faq-a {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.75;
        padding-top: 12px;
        display: none;
    }

    .faq-a.open {
        display: block;
    }

    /* ─── FOOTER ─── */
    footer {
        background: var(--brand-blue);
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
        padding: 28px 24px;
        font-size: 13px;
        line-height: 1.8;
    }

    footer a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
    }

    /* ─── SPINNER ─── */
    .spinner {
        display: none;
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin 0.7s linear infinite;
        margin: 0 auto;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* ─── URGENCY BAR ─── */
    .urgency-bar {
        background: #1a0a04;
        padding: 10px 20px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .urgency-bar-text {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: 0.02em;
    }

    .urgency-slots {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .slot-dots {
        display: flex;
        gap: 5px;
    }

    .slot-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #3a1a0a;
        border: 1px solid rgba(200, 149, 42, 0.3);
    }

    .slot-dot.filled {
        background: var(--gold);
        border-color: var(--gold);
    }

    .slot-dot.pulse {
        background: var(--gold);
        border-color: var(--gold);
        animation: dotpulse 1.5s ease-in-out infinite;
    }

    @keyframes dotpulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.6;
            transform: scale(0.85);
        }
    }

    .urgency-tag {
        background: var(--brand-coral);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 10px;
    }

    .urgency-timer {
        font-size: 13px;
        color: var(--gold-light);
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    /* ─── WHAT'S COVERED / NOT COVERED ─── */
    .coverage-section {
        padding: 64px 24px;
        background: #fff;
    }

    .coverage-inner {
        max-width: 900px;
        margin: 0 auto;
    }

    .coverage-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 36px;
    }

    @media (max-width: 640px) {
        .coverage-grid {
            grid-template-columns: 1fr;
        }
    }

    .coverage-box {
        border-radius: 14px;
        padding: 28px 26px;
    }

    .coverage-box.included {
        background: #f0faf4;
        border: 1.5px solid rgba(74, 160, 100, 0.3);
    }

    .coverage-box.excluded {
        background: #fff8f5;
        border: 1.5px solid rgba(229, 76, 56, 0.2);
    }

    .coverage-box-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .coverage-box-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }

    .coverage-box.included .coverage-box-icon {
        background: rgba(74, 160, 100, 0.15);
        color: #2e7d4f;
    }

    .coverage-box.excluded .coverage-box-icon {
        background: rgba(229, 76, 56, 0.12);
        color: var(--brand-coral);
    }

    .coverage-box-title {
        font-size: 15px;
        font-weight: 600;
    }

    .coverage-box.included .coverage-box-title {
        color: #2e7d4f;
    }

    .coverage-box.excluded .coverage-box-title {
        color: var(--brand-coral);
    }

    .coverage-box-price {
        font-size: 12px;
        color: var(--muted);
        margin-top: 1px;
    }

    .coverage-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 9px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 14px;
    }

    .coverage-item:last-child {
        border-bottom: none;
    }

    .coverage-item-icon {
        font-size: 14px;
        margin-top: 1px;
        flex-shrink: 0;
    }

    .coverage-box.included .coverage-item-icon {
        color: #2e7d4f;
    }

    .coverage-box.excluded .coverage-item-icon {
        color: #bbb;
    }

    .coverage-item-text {
        color: #444;
        line-height: 1.5;
    }

    .coverage-item-text strong {
        color: var(--brand-blue);
        font-weight: 600;
        display: block;
        font-size: 13px;
    }

    .coverage-item-text span {
        font-size: 12px;
        color: var(--muted);
    }

    .upsell-nudge {
        margin-top: 16px;
        padding: 14px 16px;
        background: rgba(18, 66, 101, 0.06);
        border-radius: 8px;
        font-size: 13px;
        color: var(--brand-blue);
        line-height: 1.6;
    }

    .upsell-nudge a {
        color: var(--brand-coral);
        font-weight: 600;
        text-decoration: none;
    }

    /* ─── SAMPLE REPORT SECTION ─── */
    .sample-section {
        background: #0d1b2a;
        padding: 64px 24px;
    }

    .sample-inner {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .sample-section .section-tag {
        color: var(--gold-light);
    }

    .sample-section .section-title {
        color: #fff;
    }

    .sample-section .section-title em {
        color: var(--gold-light);
        font-style: italic;
    }

    .sample-section .section-sub {
        color: rgba(255, 255, 255, 0.55);
        margin: 0 auto 36px;
    }

    .report-preview-strip {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: rgba(200, 149, 42, 0.3) transparent;
        justify-content: flex-start;
        cursor: grab;
    }

    .report-preview-strip:active {
        cursor: grabbing;
    }

    .report-page-thumb {
        flex-shrink: 0;
        width: 180px;
        border-radius: 8px;
        overflow: hidden;
        border: 2px solid rgba(200, 149, 42, 0.2);
        scroll-snap-align: start;
        transition: border-color 0.2s, transform 0.2s;
        cursor: pointer;
        background: #1a2a3a;
    }

    .report-page-thumb:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
    }

    .report-page-thumb.active {
        border-color: var(--gold);
    }

    .thumb-inner {
        width: 100%;
        aspect-ratio: 210/297;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 0.05em;
        background: #1a1209;
        position: relative;
        overflow: hidden;
    }

    /* page content previews */
    .thumb-cover {
        background: #1A1209;
    }

    .thumb-cover-title {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        text-align: center;
        font-family: 'Cormorant Garamond', serif;
        font-size: 13px;
        color: #F5F0E8;
        letter-spacing: 0.05em;
    }

    .thumb-cover-sub {
        position: absolute;
        bottom: 18px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 7px;
        color: rgba(200, 149, 42, 0.7);
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .thumb-gold-line {
        position: absolute;
        left: 20px;
        right: 20px;
        height: 1px;
        background: rgba(200, 149, 42, 0.4);
    }

    .thumb-pg-num {
        position: absolute;
        top: 8px;
        right: 10px;
        font-size: 8px;
        color: rgba(200, 149, 42, 0.5);
        font-family: 'Cormorant Garamond', serif;
    }

    .thumb-label {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 7px;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .sample-actions {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 28px;
        flex-wrap: wrap;
    }

    .btn-preview {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gold);
        color: #1a0a04;
        padding: 13px 28px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity 0.2s;
        border: none;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .btn-preview:hover {
        opacity: 0.88;
    }

    .btn-preview-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: rgba(255, 255, 255, 0.8);
        padding: 13px 28px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.2s;
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .btn-preview-outline:hover {
        background: rgba(255, 255, 255, 0.07);
    }

    /* Modal lightbox */
    .report-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.88);
        z-index: 999;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    .report-modal-overlay.open {
        display: flex;
    }

    .report-modal {
        background: #1A1209;
        border-radius: 12px;
        width: 100%;
        max-width: 540px;
        max-height: 92vh;
        overflow-y: auto;
        border: 1px solid rgba(200, 149, 42, 0.2);
        position: relative;
    }

    .modal-close {
        position: absolute;
        top: 12px;
        right: 14px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .modal-page {
        display: none;
        padding: 40px 36px;
        color: #F5F0E8;
    }

    @media (max-width: 480px) {
        .modal-page {
            padding: 28px 20px;
        }
    }

    .modal-page.active {
        display: block;
    }

    .modal-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px;
        border-top: 1px solid rgba(200, 149, 42, 0.15);
        position: sticky;
        bottom: 0;
        background: #1A1209;
    }

    .modal-nav-btn {
        background: rgba(200, 149, 42, 0.15);
        border: 1px solid rgba(200, 149, 42, 0.3);
        color: var(--gold-light);
        padding: 8px 18px;
        border-radius: 6px;
        font-size: 13px;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
        transition: background 0.2s;
    }

    .modal-nav-btn:hover {
        background: rgba(200, 149, 42, 0.25);
    }

    .modal-nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .modal-page-indicator {
        font-size: 12px;
        color: rgba(200, 149, 42, 0.6);
        letter-spacing: 0.05em;
    }

    /* ─── ERROR MSG ─── */
    .error-msg {
        background: #fff0f0;
        border: 1px solid rgba(229, 76, 56, 0.3);
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 13px;
        color: var(--brand-coral);
        margin-top: 16px;
        display: none;
    }

    .error-msg.visible {
        display: block;
    }

    /* ─── DIVIDER ─── */
    .section-divider {
        height: 1px;
        background: var(--border);
        max-width: 860px;
        margin: 0 auto;
    }