/* MzPokeRx — homepage.css
 *
 * Everything that is UNIQUE to the home page lives here: the body background
 * (star-field), the hero, trust bar, editorials, "how it works", product
 * grids, "why order from us", FAQ, trust seals and the CTA banner.
 *
 * This file carries the broad `*` reset and `body` rules. Because it is the
 * ONLY file with those page-wide rules, you simply DON'T load it on inner
 * pages — that's what keeps the rest of your site from being "impacted".
 * Inner pages load:  styles.css + css/header.css + css/footer.css
 * The home page loads all four.
 */

/* page-wide reset (home page only) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
    /* faint star-field behind the whole page */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 100%), radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.3) 0%, transparent 100%), radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.2) 0%, transparent 100%), radial-gradient(1px 1px at 40% 90%, rgba(255,255,255,0.3) 0%, transparent 100%), radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.2) 0%, transparent 100%), radial-gradient(2px 2px at 10% 60%, rgba(78,201,192,0.3) 0%, transparent 100%), radial-gradient(2px 2px at 70% 40%, rgba(123,94,167,0.4) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== HERO ===== */
.hero {
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 48px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    height: 420px;
    background: radial-gradient(ellipse, rgba(123,94,167,0.22) 0%, rgba(78,201,192,0.1) 50%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 22px;
    background: var(--teal-dim);
    padding: 6px 16px;
    border-radius: 99px;
    border: 1px solid rgba(78,201,192,0.3);
}

.hero-text h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    color: var(--white);
}

    .hero-text h1 .grad {
        background: linear-gradient(135deg, var(--purple-bright), var(--teal));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-text p {
    font-size: 16px;
    color: var(--muted);
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-offers-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    padding: 14px 34px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 30px rgba(123,94,167,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 50px rgba(123,94,167,0.6);
    }

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 34px;
    border-radius: 99px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
}

    .btn-secondary:hover {
        border-color: var(--purple-bright);
        background: var(--purple-dim);
    }
/* The two hero CTAs sit closer to their label, so give them a snugger pill
   (the bigger 14px/34px padding stays on the standalone "Call Now" button). */
.hero-btns .btn-primary,
.hero-btns .btn-secondary {
    padding: 13px 26px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    .hero-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
    }

    .hero-card.his::before {
        background: linear-gradient(90deg, var(--purple), var(--teal));
    }

    .hero-card.hers::before {
        background: linear-gradient(90deg, var(--teal), var(--purple));
    }

    .hero-card .card-icon {
        font-size: 44px;
        margin-bottom: 10px;
        display: block;
    }

    .hero-card .card-label {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 700;
        margin-bottom: 8px;
    }

    .hero-card h3 {
        font-family: 'Syne', sans-serif;
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .hero-card.his h3 {
        color: var(--teal);
    }

    .hero-card.hers h3 {
        color: var(--purple-bright);
    }

    .hero-card p {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .hero-card .card-btn {
        display: block;
        padding: 10px 18px;
        border-radius: 99px;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        color: #fff;
        transition: transform 0.2s;
    }

    .hero-card.his .card-btn {
        background: linear-gradient(135deg, var(--purple), var(--teal));
    }

    .hero-card.hers .card-btn {
        background: linear-gradient(135deg, var(--teal), var(--purple));
    }

    .hero-card .card-btn:hover {
        transform: scale(1.03);
    }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--navy-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

    .trust-item .ti {
        font-size: 20px;
    }

    .trust-item strong {
        color: var(--white);
        font-weight: 700;
    }

/* ===== SECTION SHELL ===== */
.section {
    padding: 92px 48px;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
}

    .section-title .grad {
        background: linear-gradient(135deg, var(--purple-bright), var(--teal));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== EDITORIAL (text + media rows) ===== */
.editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 48px;
    position: relative;
    z-index: 1;
}

    .editorial.reverse .editorial-media {
        order: 2;
    }

.editorial-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

    .editorial-media img,
    .editorial-media iframe {
        width: 100%;
        display: block;
        border: 0;
    }

    .editorial-media iframe {
        aspect-ratio: 16/9;
        border-radius: 18px;
    }

.editorial-copy h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--white);
}

    .editorial-copy h2 .grad {
        background: linear-gradient(135deg, var(--purple-bright), var(--teal));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.editorial-copy p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 14px;
    font-weight: 300;
}

.editorial-copy a.inline {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== HOW IT WORKS (steps) ===== */
.how {
    background: var(--navy-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 84px 48px;
    position: relative;
    z-index: 1;
}

.how-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.how-head {
    text-align: center;
    margin-bottom: 54px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

    .steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 14%;
        right: 14%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
    }

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(123,94,167,0.4);
}

.step h4 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== PRODUCT GRIDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}

    .products-grid.two {
        grid-template-columns: repeat(2, 1fr);
    }

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-4px);
        border-color: var(--purple-bright);
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--grad);
        opacity: 0;
        transition: opacity 0.2s;
    }

    .product-card:hover::before {
        opacity: 1;
    }

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 99px;
    font-weight: 700;
}

.badge-teal {
    background: var(--teal-dim);
    color: var(--teal);
    border: 1px solid rgba(78,201,192,0.3);
}

.badge-purple {
    background: var(--purple-dim);
    color: var(--purple-bright);
    border: 1px solid rgba(155,111,212,0.3);
}

.product-thumb {
    height: 150px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
}

    .product-thumb img {
        max-height: 130px;
        width: auto;
        object-fit: contain;
    }

.product-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.25;
}

.product-card p.desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
    flex-grow: 1;
}

.product-meta {
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.product-price {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    display: block;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--purple-bright), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .product-price .was {
        font-size: 13px;
        color: var(--muted);
        text-decoration: line-through;
        -webkit-text-fill-color: var(--muted);
        margin-left: 8px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 400;
    }

.product-cta {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    background: var(--grad);
    color: #fff;
    transition: opacity 0.2s, transform 0.2s;
}

    .product-cta:hover {
        opacity: 0.92;
        transform: scale(1.02);
    }

/* ===== WHY ORDER FROM US ===== */
.why {
    padding: 90px 48px;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.why-list {
    list-style: none;
    margin: 26px 0 30px;
}

    .why-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 14px;
        font-size: 14.5px;
        color: var(--white);
    }

        .why-list li .tick {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--teal-dim);
            color: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            border: 1px solid rgba(78,201,192,0.3);
        }

.why-loc {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--purple-bright);
    margin-bottom: 4px;
}

.why-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

    .why-call .phone {
        font-family: 'Syne', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--white);
        text-decoration: none;
    }

.agent-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 38px 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

    .agent-card::after {
        content: '';
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: var(--teal);
        opacity: 0.06;
    }

    .agent-card h3 {
        font-family: 'Syne', sans-serif;
        font-size: 26px;
        font-weight: 800;
        color: var(--teal);
        margin-bottom: 6px;
    }

    .agent-card .live {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 700;
        margin-bottom: 18px;
    }

    .agent-card .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--teal);
        box-shadow: 0 0 10px var(--teal);
    }

    .agent-card p {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 4px;
    }

    .agent-card .hl {
        color: var(--white);
        font-weight: 700;
        font-family: 'Syne', sans-serif;
        font-size: 17px;
        margin: 10px 0;
    }

/* ===== FAQ ===== */
.faq-wrap {
    background: var(--navy-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 84px 48px;
    position: relative;
    z-index: 1;
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq-head {
    text-align: center;
    margin-bottom: 44px;
}

details.faq {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 14px;
    background: var(--card);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

    details.faq summary {
        list-style: none;
        cursor: pointer;
        padding: 20px 24px;
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 15.5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

        details.faq summary::-webkit-details-marker {
            display: none;
        }

        details.faq summary .chev {
            color: var(--teal);
            transition: transform 0.2s;
            flex-shrink: 0;
            font-size: 18px;
        }

    details.faq[open] summary .chev {
        transform: rotate(45deg);
    }

    details.faq .faq-body {
        padding: 0 24px 22px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.8;
        font-weight: 300;
    }

/* ===== TRUST SEALS ===== */
.seals {
    padding: 60px 48px;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.seals-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

    .seals-track img {
        height: 56px;
        width: auto;
        opacity: 0.85;
        filter: grayscale(0.2);
        transition: opacity 0.2s;
    }

        .seals-track img:hover {
            opacity: 1;
        }

/* ===== CTA BANNER ===== */
.cta-banner {
    margin: 0 auto 84px;
    max-width: 1180px;
    background: linear-gradient(135deg, var(--purple) 0%, #4A3070 50%, var(--teal) 100%);
    border-radius: 30px;
    padding: 72px 56px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .cta-banner h2 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(28px, 4.5vw, 50px);
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
        letter-spacing: -1px;
    }

    .cta-banner p {
        font-size: 16px;
        color: rgba(255,255,255,0.78);
        max-width: 500px;
        margin: 0 auto 32px;
        line-height: 1.7;
        font-weight: 300;
    }

.btn-white {
    background: #fff;
    color: var(--purple);
    padding: 16px 44px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 48px rgba(0,0,0,0.4);
    }

/* ===== RESPONSIVE (home page only) ===== */
@media (max-width: 980px) {
    .hero {
        padding: 50px 22px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .trust-bar {
        gap: 22px;
        padding: 18px 22px;
    }

    .section {
        padding: 60px 22px;
    }

    .editorial {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 56px 22px;
    }

        .editorial.reverse .editorial-media {
            order: 0;
        }

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

        .steps::before {
            display: none;
        }

    .products-grid,
    .products-grid.two {
        grid-template-columns: 1fr;
    }

    .why {
        padding: 60px 22px;
    }

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

    .how,
    .faq-wrap {
        padding: 60px 22px;
    }

    .cta-banner {
        margin: 0 22px 56px;
        padding: 48px 28px;
    }
}

@media (max-width: 560px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
}
