:root {
    --navy: #0d1b2e;
    --navy-mid: #132338;
    --navy-lt: #1e3555;
    --blue-rule: #2d5a8e;
    --blue-acc: #1a73e8;
    --amber: #e8a020;
    --white: #ffffff;
    --off-white: #f0f4f8;
    --muted: #8aa0bc;
    --text-body: #374151;
    --text-muted: #4b5563;
}

body.micro-landing-page {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: #fff;
    margin: 0;
}

.micro-landing-page h1,
.micro-landing-page h2,
.micro-landing-page h3,
.micro-landing-page h4,
.micro-landing-page h5,
.micro-landing-page h6 {
    font-family: 'Outfit', sans-serif;
}

/* Light sections: never inherit white text from hero/Tailwind */
.micro-landing-page .ml-section-light,
.micro-landing-page .ml-section-light p,
.micro-landing-page .ml-section-light h2,
.micro-landing-page .ml-section-light h3,
.micro-landing-page .ml-section-light li {
    color: var(--navy);
}

.micro-landing-page .ml-section-light .text-muted,
.micro-landing-page .text-gray-600 {
    color: var(--text-muted) !important;
}

.micro-landing-page .text-gray-700 {
    color: var(--text-body) !important;
}

/* Dark bands */
.micro-landing-page .ml-section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
}

.micro-landing-page .ml-section-dark h2,
.micro-landing-page .ml-section-dark h3,
.micro-landing-page .ml-section-dark p {
    color: inherit;
}

.micro-landing-page .ml-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .micro-landing-page .ml-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.micro-landing-page .ml-section-head {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .micro-landing-page .ml-section-head {
        margin-bottom: 2rem;
    }
}

.micro-landing-page .offers-row {
    display: grid;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .micro-landing-page .offers-row {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .micro-landing-page .offer-panel {
        max-width: none;
        margin: 0;
    }

    .micro-landing-page .referral-card-new {
        max-width: none;
        margin: 0;
        height: 100%;
    }
}

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

        .fade-up {
            animation: fadeUp 0.5s both;
        }

        .fade-up-delay-1 { animation-delay: 0.05s; }
        .fade-up-delay-2 { animation-delay: 0.1s; }
        .fade-up-delay-3 { animation-delay: 0.15s; }
        .fade-up-delay-4 { animation-delay: 0.2s; }
        .fade-up-delay-5 { animation-delay: 0.25s; }
        .fade-up-delay-6 { animation-delay: 0.3s; }

        .hero-bg {
            background: #0d1b2e;
            background: var(--navy);
            background-image:
                radial-gradient(circle at 25% 25%, rgba(42, 90, 142, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(232, 160, 32, 0.2) 0%, transparent 50%),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
        }

        .trust-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 9999px;
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .cta-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }

        .cta-primary {
            background: var(--amber);
            color: var(--navy);
        }

        .cta-primary:hover {
            background: #d89419;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(232, 160, 32, 0.3);
        }

        .cta-secondary {
            background: var(--navy-mid);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .cta-secondary:hover {
            background: var(--navy-lt);
            transform: translateY(-2px);
        }

        .metric-card {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .benefit-card {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: var(--amber);
        }

        .review-card {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            min-width: 300px;
        }

        .reviews-container {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 1rem;
            -webkit-overflow-scrolling: touch;
        }

        .review-card {
            scroll-snap-align: start;
        }

        .reviews-container::-webkit-scrollbar {
            height: 8px;
        }

        .reviews-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .reviews-container::-webkit-scrollbar-thumb {
            background: var(--amber);
            border-radius: 10px;
        }

        /* Services Grid */
        .svc-card {
            background: white;
            border-radius: 14px;
            padding: 18px 12px 14px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(13,27,46,.12);
            border: 1.5px solid transparent;
            transition: all 0.3s;
        }

        .svc-card:hover {
            border-color: var(--blue-acc);
            box-shadow: 0 0 0 3px rgba(26,115,232,.18), 0 4px 20px rgba(13,27,46,.12);
            transform: translateY(-2px);
        }

        .svc-icon-box {
            width: 48px;
            height: 48px;
            background: var(--navy);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 10px;
        }

        .svc-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 12px;
            color: var(--navy);
            line-height: 1.3;
        }

        /* Offers Panel */
        .offer-panel {
            background: var(--navy);
            border-radius: 14px;
            padding: 24px 20px;
            box-shadow: 0 12px 40px rgba(13,27,46,.22);
            position: relative;
            overflow: hidden;
            max-width: 480px;
            margin: 0 auto;
        }

        .offer-glow {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45,90,142,.4) 0%, transparent 70%);
            pointer-events: none;
        }

        .offer-rule {
            width: 40px;
            height: 2px;
            background: var(--blue-rule);
            border-radius: 2px;
            margin-bottom: 16px;
        }

        .offer-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 18px;
            color: white;
            margin-bottom: 4px;
        }

        .offer-sub-text {
            font-size: 12.5px;
            color: var(--muted);
            margin-bottom: 18px;
            line-height: 1.5;
        }

        .offer-card {
            background: rgba(45,90,142,.25);
            border: 1px solid rgba(45,90,142,.4);
            border-radius: 10px;
            padding: 14px 12px;
            text-align: center;
        }

        .offer-big {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 22px;
            color: var(--amber);
            line-height: 1;
            margin-bottom: 4px;
        }

        .offer-desc {
            font-size: 11px;
            color: rgba(255,255,255,.7);
            line-height: 1.4;
        }

        .offer-tc {
            font-size: 10px;
            color: var(--muted);
            text-align: center;
        }

        /* Referral Card */
        .referral-card-new {
            background: #fff5f5;
            border: 1px solid rgba(220,38,38,.25);
            border-radius: 14px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 12px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .referral-card-new .referral-sub {
            color: var(--text-muted);
            font-size: 0.875rem;
            line-height: 1.45;
        }

        .referral-icon {
            font-size: 32px;
            flex-shrink: 0;
        }

        .referral-big {
            color: var(--amber);
            font-weight: 700;
            font-size: 16px;
        }

        /* Red Stripe */
        .red-stripe {
            background: #dc2626;
            color: white;
            text-align: center;
            padding: 14px 20px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        /* CTA Button Shine Animation */
        .cta-primary::after,
        .cta-secondary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
            transition: left 0.45s ease;
        }

        .cta-primary:hover::after,
        .cta-secondary:hover::after {
            left: 140%;
        }

        /* Hero Glow */
        .hero-glow-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 50% at 80% 20%, rgba(45,90,142,.35) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 10% 80%, rgba(26,115,232,.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .micro-landing-page img {
            max-width: 100%;
        }

        .peomiz-logo-footer {
            height: 48px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        .ml-breadcrumb {
            font-size: 0.8rem;
            opacity: 0.85;
            margin-bottom: 1rem;
        }

        .ml-breadcrumb a {
            color: inherit;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .qr-section {
            background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
        }

        .qr-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
            max-width: 520px;
            margin: 0 auto;
        }

        @media (max-width: 480px) {
            .qr-grid {
                grid-template-columns: 1fr;
                max-width: 280px;
            }
        }

        .qr-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.25rem 1rem 1rem;
            text-align: center;
            box-shadow: 0 12px 40px rgba(13, 27, 46, 0.12);
            border: 1px solid rgba(13, 27, 46, 0.06);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .qr-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 48px rgba(13, 27, 46, 0.16);
        }

        .qr-card-label {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .qr-frame {
            aspect-ratio: 1 / 1;
            width: 100%;
            max-width: 200px;
            margin: 0 auto 0.75rem;
            padding: 10px;
            background: #fff;
            border-radius: 14px;
            border: 2px solid rgba(13, 27, 46, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .qr-frame img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
        }

        .qr-store-link {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--blue-acc);
            text-decoration: none;
        }

        .qr-store-link:hover {
            text-decoration: underline;
        }

        .faq-item {
            background: #fff;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            border: 1px solid #e5e7eb;
            margin-bottom: 0.75rem;
        }

        .faq-item h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin: 0 0 0.5rem;
        }

        .faq-item p {
            margin: 0;
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .sticky-mobile-cta {
            display: none;
        }

        @media (max-width: 768px) {
            .sticky-mobile-cta {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 60;
                padding: 0.75rem 1rem;
                gap: 0.5rem;
                background: rgba(13, 27, 46, 0.96);
                backdrop-filter: blur(8px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .sticky-mobile-cta a {
                flex: 1;
                text-align: center;
                padding: 0.65rem 0.5rem;
                border-radius: 8px;
                font-weight: 700;
                font-size: 0.8rem;
                text-decoration: none;
            }

            body.micro-landing-page {
                padding-bottom: 72px;
            }
        }
