
:root {
    --map-pink: #ec0075;
    --map-pink-dark: #bb005c;
    --map-purple: #2a082d;
    --map-ink: #241c24;
    --map-muted: #6f6570;
    --map-soft: #fff2f8;
    --map-line: #eadfe6;
    --map-white: #ffffff;
    --map-shadow: 0 20px 60px rgba(59, 8, 44, .14);
}

body.map-landing-active .site-content,
body.map-landing-active .content-area,
body.map-landing-active .site-main,
body.map-landing-active .inside-article {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

body.map-landing-active .entry-header,
body.map-landing-active .entry-title,
body.map-landing-active .comments-area {
    display: none !important;
}

.map-page,
.map-page * {
    box-sizing: border-box;
}

.map-page {
    color: var(--map-ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.72;
    font-size: 18px;
    overflow: clip;
}

.map-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.map-container {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

.map-hero {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 75% 30%, rgba(255, 0, 130, .35), transparent 34%),
        linear-gradient(135deg, #17051d 0%, #4d083f 52%, #d00069 100%);
    padding: 78px 0 72px;
    isolation: isolate;
}

.map-hero__overlay {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent);
    z-index: -1;
}

.map-hero__grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 54px;
}

.map-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #ffe3f1;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.map-hero h1 {
    color: #fff;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin: 24px 0 22px;
}

.map-lead {
    max-width: 670px;
    margin: 0;
    color: #f8e8f2;
    font-size: 21px;
    line-height: 1.65;
}

.map-hero__actions,
.map-final-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.map-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none !important;
    font-weight: 900;
    line-height: 1.2;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.map-button:hover,
.map-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(236,0,117,.25);
}

.map-button--primary {
    color: #fff !important;
    background: linear-gradient(135deg, #ff168e, #d80069);
}

.map-button--ghost {
    color: #fff !important;
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.08);
}

.map-button--light {
    color: var(--map-pink-dark) !important;
    background: #fff;
}

.map-button--outline {
    color: var(--map-pink-dark) !important;
    border-color: var(--map-pink);
    background: #fff;
}

.map-button--small {
    min-height: 44px;
    padding: 9px 16px;
    border-radius: 11px;
    color: #fff !important;
    background: var(--map-pink);
    font-size: 14px;
}

.map-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 20px;
    margin-top: 22px;
    color: #f7dce9;
    font-size: 14px;
    font-weight: 700;
}

.map-hero__media img {
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 30px;
    box-shadow: 0 40px 90px rgba(0,0,0,.36);
}

.map-mobile-bar {
    display: none;
}

.map-main {
    padding: 70px 0 90px;
    background:
        linear-gradient(180deg, #fff 0%, #fff 75%, #fff8fb 100%);
}

.map-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.map-toc {
    position: sticky;
    top: 28px;
}

.map-toc__box {
    padding: 22px;
    border: 1px solid var(--map-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(46,13,36,.07);
}

.map-toc strong {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.map-toc a {
    display: block;
    padding: 7px 0;
    color: #625361;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
}

.map-toc a:hover,
.map-toc a.is-active {
    color: var(--map-pink);
}

.map-article {
    min-width: 0;
}

.map-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 36px;
    padding: 18px 20px;
    border: 1px solid var(--map-line);
    border-radius: 18px;
    background: #fff;
}

.map-author__icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--map-purple), var(--map-pink));
    font-size: 14px;
    font-weight: 900;
}

.map-author strong,
.map-author span {
    display: block;
}

.map-author span {
    color: var(--map-muted);
    font-size: 14px;
}

.map-section {
    scroll-margin-top: 26px;
    margin-bottom: 52px;
}

.map-section h2,
.map-cta-box h2,
.map-final-cta h2,
.map-resources h2 {
    color: var(--map-ink);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.14;
    letter-spacing: -.035em;
    margin: 0 0 22px;
}

.map-section h3 {
    color: var(--map-ink);
    font-size: 20px;
    line-height: 1.25;
}

.map-section p,
.map-resources p {
    margin: 0 0 20px;
    color: #514750;
}

.map-section a,
.map-resources a {
    color: var(--map-pink-dark);
    font-weight: 800;
}

.map-intro > p:first-child {
    font-size: 22px;
    color: #332a32;
}

.map-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.map-benefits article {
    position: relative;
    padding: 26px;
    border: 1px solid var(--map-line);
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #fff8fb);
    box-shadow: 0 14px 40px rgba(49, 13, 38, .06);
}

.map-benefits article > span {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--map-purple), var(--map-pink));
    font-size: 13px;
    font-weight: 900;
}

.map-benefits h3 {
    margin: 18px 0 9px;
}

.map-benefits p {
    margin: 0;
    font-size: 16px;
    line-height: 1.58;
}

.map-steps {
    counter-reset: map-step;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.map-steps li {
    position: relative;
    min-height: 52px;
    padding: 0 0 24px 68px;
    color: #514750;
}

.map-steps li::before {
    counter-increment: map-step;
    content: counter(map-step);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: #fff;
    background: var(--map-pink);
    font-weight: 900;
}

.map-figure {
    margin: 52px 0;
}

.map-figure img {
    width: 100%;
    border-radius: 26px;
    box-shadow: var(--map-shadow);
}

.map-figure figcaption {
    padding: 12px 8px 0;
    color: var(--map-muted);
    font-size: 14px;
    text-align: center;
}

.map-cta-box {
    margin: 55px 0;
    padding: 42px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.14), transparent 27%),
        linear-gradient(135deg, #25072b, #8f005b 65%, #ec0075);
    box-shadow: var(--map-shadow);
}

.map-cta-box h2,
.map-cta-box p {
    color: #fff;
}

.map-cta-box__tag {
    display: inline-block;
    margin-bottom: 15px;
    color: #ffcbe4;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.map-conversion-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    margin: 55px 0;
    padding: 28px 32px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(120deg, #d9006b, #f3248c);
}

.map-conversion-strip span,
.map-conversion-strip strong {
    display: block;
}

.map-conversion-strip span {
    opacity: .82;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.map-conversion-strip strong {
    font-size: 22px;
}

.map-offer {
    padding: 35px;
    border: 1px solid #f4bdd8;
    border-radius: 24px;
    background: var(--map-soft);
}

.map-faq details {
    margin: 14px 0;
    border: 1px solid var(--map-line);
    border-radius: 17px;
    background: #fff;
    overflow: hidden;
}

.map-faq summary {
    position: relative;
    cursor: pointer;
    padding: 20px 52px 20px 20px;
    color: var(--map-ink);
    font-weight: 900;
    list-style: none;
}

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

.map-faq summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--map-pink);
    font-size: 30px;
    font-weight: 500;
}

.map-faq details[open] summary::after {
    content: "−";
}

.map-faq details p {
    padding: 0 20px 20px;
    margin: 0;
}

.map-resources {
    margin: 58px 0;
    padding: 32px;
    border: 1px solid var(--map-line);
    border-radius: 24px;
    background: #fff;
}

.map-final-cta {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    align-items: center;
    gap: 36px;
    margin: 68px 0 40px;
    padding: 38px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, #19051f, #73004e);
    box-shadow: var(--map-shadow);
}

.map-final-cta img {
    border-radius: 24px;
}

.map-final-cta h2,
.map-final-cta p {
    color: #fff;
}

.map-final-cta .map-eyebrow {
    margin-bottom: 18px;
}

.map-disclaimer {
    padding: 24px;
    border-left: 5px solid var(--map-pink);
    border-radius: 10px;
    background: #f8f5f7;
    color: #625661;
    font-size: 14px;
}

.map-disclaimer p {
    margin: 7px 0 0;
}

.map-footer {
    padding: 30px 0;
    color: #d8c7d3;
    background: #18051e;
    font-size: 14px;
}

.map-footer .map-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.map-footer a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 980px) {
    .map-hero__grid,
    .map-layout,
    .map-final-cta {
        grid-template-columns: 1fr;
    }

    .map-hero__content {
        text-align: center;
    }

    .map-eyebrow,
    .map-hero__actions,
    .map-trust {
        margin-inline: auto;
        justify-content: center;
    }

    .map-lead {
        margin-inline: auto;
    }

    .map-hero__media {
        max-width: 700px;
        margin-inline: auto;
    }

    .map-toc {
        position: static;
    }

    .map-toc__box {
        display: flex;
        flex-wrap: wrap;
        gap: 7px 15px;
    }

    .map-toc strong {
        width: 100%;
    }

    .map-toc a {
        padding: 4px 0;
    }

    .map-final-cta img {
        width: min(430px, 100%);
        margin-inline: auto;
    }
}

@media (max-width: 720px) {
    .map-page {
        font-size: 17px;
    }

    .map-hero {
        padding: 58px 0 46px;
    }

    .map-hero h1 {
        font-size: 42px;
    }

    .map-lead {
        font-size: 18px;
    }

    .map-hero__actions .map-button {
        width: 100%;
    }

    .map-mobile-bar {
        position: sticky;
        z-index: 50;
        top: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        color: #fff;
        background: rgba(31, 5, 35, .96);
        backdrop-filter: blur(12px);
        font-size: 12px;
        font-weight: 800;
    }

    .map-main {
        padding: 42px 0 70px;
    }

    .map-layout {
        gap: 32px;
    }

    .map-benefits {
        grid-template-columns: 1fr;
    }

    .map-benefits article,
    .map-cta-box,
    .map-offer,
    .map-resources,
    .map-final-cta {
        padding: 25px;
    }

    .map-conversion-strip {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .map-conversion-strip .map-button {
        width: 100%;
    }

    .map-final-cta__buttons .map-button {
        width: 100%;
    }

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

@media (prefers-reduced-motion: reduce) {
    .map-page *,
    .map-page *::before,
    .map-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
