/* Price-range index: lightweight, page-scoped discovery experience. */
.pri-page {
    --pri-ink: #0f172a;
    --pri-muted: #526176;
    --pri-line: #dce5ef;
    --pri-soft: #f3f7fb;
    --pri-blue: #175cd3;
    --pri-blue-dark: #0f3f9b;
    color: var(--pri-ink);
    margin: 0 auto 56px;
    max-width: 1160px;
}


.pri-page a {
    overflow-wrap: anywhere;
}

.pri-breadcrumb {
    color: #64748b;
    font-size: .82rem;
    margin: 16px 0 18px;
}

.pri-breadcrumb ol {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pri-breadcrumb li {
    align-items: center;
    display: flex;
    gap: 6px;
}

.pri-breadcrumb li:not(:last-child)::after {
    color: #9aa8ba;
    content: "/";
}

.pri-breadcrumb a {
    color: #475569;
    text-decoration: none;
}

.pri-breadcrumb a:hover {
    color: var(--pri-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pri-hero {
    background:
        radial-gradient(circle at 88% 4%, rgba(79, 148, 255, .28), transparent 34%),
        linear-gradient(135deg, #071831 0%, #102b55 58%, #174889 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(15, 35, 68, .18);
    color: #fff;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
    overflow: hidden;
    padding: clamp(30px, 5vw, 64px);
    position: relative;
}

.pri-hero::after {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    content: "";
    height: 240px;
    pointer-events: none;
    position: absolute;
    right: -95px;
    top: -120px;
    width: 240px;
}

.pri-hero-copy,
.pri-snapshot {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.pri-eyebrow,
.pri-kicker {
    color: #8bb9ff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.pri-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.65rem);
    letter-spacing: -.04em;
    line-height: 1.03;
    margin: 0;
    max-width: 780px;
}

.pri-lede {
    color: #d6e5fb;
    font-size: clamp(1rem, 1.8vw, 1.16rem);
    line-height: 1.65;
    margin: 20px 0 0;
    max-width: 690px;
}

.pri-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.pri-button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 11px;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 750;
    justify-content: center;
    min-height: 46px;
    padding: 10px 17px;
    text-align: center;
    text-decoration: none;
}

.pri-button:hover {
    text-decoration: none;
}

.pri-button-primary {
    background: #fff;
    color: #103c79;
}

.pri-button-primary:hover {
    background: #e9f2ff;
    color: #092a5a;
}

.pri-button-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}

.pri-button-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

.pri-snapshot {
    align-self: center;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 20px;
    padding: 22px;
}

.pri-snapshot-label {
    color: #dbeafe;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.pri-snapshot-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pri-snapshot-grid div {
    background: rgba(2, 12, 31, .24);
    border-radius: 13px;
    min-width: 0;
    padding: 14px;
}

.pri-snapshot-grid strong,
.pri-snapshot-grid span {
    display: block;
}

.pri-snapshot-grid strong {
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: -.03em;
    line-height: 1.1;
}

.pri-snapshot-grid span {
    color: #c7daf5;
    font-size: .75rem;
    line-height: 1.35;
    margin-top: 5px;
}

.pri-snapshot-note {
    color: #cfdef2;
    font-size: .78rem;
    line-height: 1.55;
    margin: 16px 0 0;
}

.pri-bands-section,
.pri-guidance,
.pri-explore {
    scroll-margin-top: 24px;
}

.pri-bands-section {
    margin-top: clamp(48px, 7vw, 78px);
}

.pri-section-heading {
    align-items: end;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
    margin-bottom: 26px;
}

.pri-section-heading h2,
.pri-guidance h2,
.pri-explore h2 {
    color: var(--pri-ink);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    letter-spacing: -.035em;
    line-height: 1.1;
    margin: 0;
}

.pri-section-heading > p,
.pri-explore > div > p:last-child {
    color: var(--pri-muted);
    font-size: .94rem;
    line-height: 1.65;
    margin: 0;
}

.pri-kicker {
    color: var(--pri-blue);
}

.pri-band-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.pri-band-grid > li {
    display: flex;
    min-width: 0;
}

.pri-band-card {
    --pri-band: #175cd3;
    --pri-band-soft: #eaf2ff;
    background: #fff;
    border: 1px solid var(--pri-line);
    border-radius: 19px;
    box-shadow: 0 6px 24px rgba(36, 58, 86, .07);
    color: var(--pri-ink);
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    padding: 22px;
    position: relative;
    text-decoration: none;
}

.pri-band-card::before {
    background: var(--pri-band);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.pri-band-card-budget {
    --pri-band: #0b5ed7;
    --pri-band-soft: #e8f7f1;
}

.pri-band-card-family-friendly {
    --pri-band: #175cd3;
    --pri-band-soft: #eaf2ff;
}

.pri-band-card-premium {
    --pri-band: #6d3cc3;
    --pri-band-soft: #f2ebff;
}

.pri-band-card-luxury {
    --pri-band: #a24c0b;
    --pri-band-soft: #fff1e5;
}

.pri-band-card:hover {
    border-color: var(--pri-band);
    box-shadow: 0 12px 32px rgba(36, 58, 86, .12);
    color: var(--pri-ink);
    text-decoration: none;
}

.pri-band-topline {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 25px;
}

.pri-band-number {
    color: #8593a6;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.pri-band-count {
    background: var(--pri-band-soft);
    border-radius: 999px;
    color: var(--pri-band);
    font-size: .72rem;
    font-weight: 800;
    padding: 5px 9px;
    white-space: nowrap;
}

.pri-band-card h3 {
    color: var(--pri-ink);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: -.025em;
    line-height: 1.15;
    margin: 0;
}

.pri-band-range {
    color: var(--pri-muted);
    font-size: .84rem;
    line-height: 1.45;
    margin: 8px 0 22px;
    min-height: 2.45em;
}

.pri-band-price {
    border-bottom: 1px solid #e9eef4;
    border-top: 1px solid #e9eef4;
    margin-top: auto;
    padding: 17px 0;
}

.pri-band-price span,
.pri-band-price strong {
    display: block;
}

.pri-band-price span {
    color: #68788d;
    font-size: .7rem;
    line-height: 1.35;
}

.pri-band-price strong {
    color: var(--pri-ink);
    font-size: 1.23rem;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-top: 4px;
}

.pri-band-cta {
    color: var(--pri-band);
    font-size: .83rem;
    font-weight: 800;
    margin-top: 18px;
}

.pri-price-note {
    background: #f6f9fc;
    border: 1px solid #e1e9f2;
    border-left: 4px solid #89a9d4;
    border-radius: 10px;
    color: #53647a;
    font-size: .78rem;
    line-height: 1.6;
    margin: 22px 0 0;
    padding: 12px 15px;
}

.pri-price-note strong {
    color: #263b56;
}

.pri-empty {
    background: var(--pri-soft);
    border: 1px solid var(--pri-line);
    border-radius: 18px;
    padding: 28px;
}

.pri-empty h3 {
    margin: 0;
}

.pri-empty p {
    color: var(--pri-muted);
    margin: 8px 0 18px;
}

.pri-empty .pri-button-secondary {
    border-color: var(--pri-blue);
    color: var(--pri-blue);
}

.pri-empty .pri-button-secondary:hover {
    background: var(--pri-blue);
    color: #fff;
}

.pri-guidance {
    background: linear-gradient(145deg, #f4f8fc, #eef5fb);
    border: 1px solid #dce6f0;
    border-radius: 24px;
    margin-top: clamp(48px, 7vw, 78px);
    padding: clamp(25px, 4vw, 42px);
}

.pri-section-heading-compact {
    display: block;
    margin-bottom: 24px;
}

.pri-guidance-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pri-guidance-grid article {
    background: rgba(255, 255, 255, .82);
    border: 1px solid #dce5ee;
    border-radius: 16px;
    min-width: 0;
    padding: 20px;
}

.pri-step {
    align-items: center;
    background: #dfeeff;
    border-radius: 50%;
    color: var(--pri-blue-dark);
    display: inline-flex;
    font-size: .8rem;
    font-weight: 850;
    height: 30px;
    justify-content: center;
    margin-bottom: 14px;
    width: 30px;
}

.pri-guidance-grid h3 {
    color: var(--pri-ink);
    font-size: 1rem;
    margin: 0;
}

.pri-guidance-grid p {
    color: var(--pri-muted);
    font-size: .84rem;
    line-height: 1.6;
    margin: 8px 0 0;
}

.pri-explore {
    align-items: start;
    border-top: 1px solid var(--pri-line);
    display: grid;
    gap: clamp(24px, 6vw, 70px);
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    margin-top: clamp(48px, 7vw, 78px);
    padding-top: 38px;
}

.pri-explore-links {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pri-explore-links a {
    background: #fff;
    border: 1px solid var(--pri-line);
    border-radius: 13px;
    color: var(--pri-ink);
    min-width: 0;
    padding: 15px;
    text-decoration: none;
}

.pri-explore-links a:hover {
    border-color: #82a9df;
    box-shadow: 0 6px 18px rgba(36, 58, 86, .08);
    color: var(--pri-blue-dark);
    text-decoration: none;
}

.pri-explore-links span,
.pri-explore-links small {
    display: block;
}

.pri-explore-links span {
    font-size: .88rem;
    font-weight: 800;
}

.pri-explore-links small {
    color: #66778b;
    font-size: .72rem;
    line-height: 1.45;
    margin-top: 3px;
}

.pri-page a:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .pri-hero {
        grid-template-columns: minmax(0, 1fr) minmax(250px, .58fr);
    }

    .pri-band-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pri-hero,
    .pri-section-heading,
    .pri-explore {
        grid-template-columns: 1fr;
    }

    .pri-hero {
        gap: 26px;
    }

    .pri-section-heading {
        align-items: start;
        gap: 12px;
    }

    .pri-guidance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .pri-page {
        margin-bottom: 38px;
    }

    .pri-breadcrumb {
        margin-top: 10px;
    }

    .pri-hero {
        border-radius: 20px;
        padding: 26px 20px;
    }

    .pri-hero h1 {
        font-size: clamp(1.9rem, 10vw, 2.55rem);
    }

    .pri-actions,
    .pri-button {
        width: 100%;
    }

    .pri-snapshot {
        padding: 17px;
    }

    .pri-band-grid,
    .pri-explore-links {
        grid-template-columns: 1fr;
    }

    .pri-band-card {
        padding: 20px;
    }

    .pri-band-range {
        min-height: 0;
    }

    .pri-guidance {
        border-radius: 18px;
        padding: 22px 18px;
    }
}

@media (max-width: 350px) {
    .pri-snapshot-grid {
        grid-template-columns: 1fr;
    }

    .pri-band-topline {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

@media print {
    .pri-actions,
    .pri-explore {
        display: none;
    }

    .pri-hero {
        background: #fff;
        border-color: #94a3b8;
        box-shadow: none;
        color: #000;
    }

    .pri-hero h1,
    .pri-eyebrow,
    .pri-lede,
    .pri-snapshot-label,
    .pri-snapshot-grid strong,
    .pri-snapshot-grid span,
    .pri-snapshot-note {
        color: #000;
    }

    .pri-band-card {
        box-shadow: none;
    }
}


/* Compact Hagalu editorial masthead without catalogue-capacity counters. */
.pri-hero {
    display: block;
    overflow: visible;
    padding: 28px 0 24px;
    border: 0;
    border-bottom: 1px solid var(--pri-line);
    border-radius: 0;
    background: transparent;
    color: var(--pri-ink);
    box-shadow: none;
}
.pri-hero::after { display: none; content: none; }
.pri-eyebrow { color: var(--pri-blue); }
.pri-hero h1 { color: var(--pri-ink); font-size: clamp(2rem, 5vw, 3rem); }
.pri-lede { color: var(--pri-muted); }
.pri-snapshot,
.pri-band-count { display: none; }
.pri-button-primary { border-color: var(--pri-blue); background: var(--pri-blue); color: #fff; }
.pri-button-primary:hover { border-color: var(--pri-blue-dark); background: var(--pri-blue-dark); color: #fff; }
.pri-button-secondary { border-color: #b9c9df; color: var(--pri-blue); }
.pri-button-secondary:hover { border-color: var(--pri-blue); background: #eff6ff; color: var(--pri-blue-dark); }
@media (max-width: 640px) {
    .pri-hero { padding: 20px 0; }
    .pri-actions { margin-top: 20px; }
}

