/* App theme — Bootstrap + clean retail styling */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --app-vh: 100dvh;
    --app-vt: 0px;
    color-scheme: light;
    --bs-primary: #e8177a;
    --bs-primary-rgb: 232, 23, 122;
    --bs-secondary: #6b21a8;
    --bs-secondary-rgb: 107, 33, 168;
    --bs-body-font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    --bs-body-color: #1f1630;
    --bs-body-bg: #faf8fc;
    --bs-border-color: #e7e0ef;
    --bs-link-color: #6b21a8;
    --bs-link-hover-color: #e8177a;
    --cl-accent-soft: #fce7f3;
    --cl-purple-soft: #f3e8ff;
    --cl-pastel-pink: #fff0f7;
    --cl-pastel-lavender: #f5f0ff;
    --cl-pastel-mint: #eefbf4;
    --cl-pastel-peach: #fff7ed;
    --cl-shine-border: rgba(255, 255, 255, 0.85);
    --cl-shadow-soft: 0 4px 20px rgba(107, 33, 168, 0.07);
    --cl-shadow-lift: 0 12px 36px rgba(107, 33, 168, 0.12);
    --cl-shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html {
    color-scheme: light;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bs-body-bg);
}

main {
    flex: 1;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--bs-border-color);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--bs-body-color) !important;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    margin-right: 0.5rem;
    border-radius: 0.4rem;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    color: #fff;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: -0.04em;
}

.region-picker-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bs-body-color);
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 2rem;
    box-shadow: none;
}

.region-picker-toggle:hover,
.region-picker-toggle:focus,
.region-picker-toggle.show {
    color: var(--bs-secondary);
    background: var(--cl-purple-soft);
    border-color: #d8b4fe;
}

.region-picker-toggle::after {
    margin-left: 0.15rem;
    font-size: 0.65rem;
}

.region-picker-globe {
    color: var(--bs-secondary);
}

.region-picker-menu {
    min-width: 9rem;
    padding: 0.35rem;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 8px 24px rgba(31, 22, 48, 0.1);
}

.region-picker-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.65rem;
    border-radius: 0.4rem;
    font-size: 0.875rem;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
}

.region-picker-item-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    font-weight: 800;
    color: var(--bs-secondary);
}

.region-picker-item-name {
    color: #6b6478;
    font-weight: 500;
}

.region-picker-item.active,
.region-picker-item:active {
    background: var(--cl-purple-soft);
}

.region-picker-item.active .region-picker-item-code {
    color: var(--bs-primary);
}

/* ── Shine cards & pastels ── */

.shine-card {
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shine-card-lift:hover:not(.is-disabled) {
    transform: translateY(-3px);
    border-color: #e9d5ff;
    box-shadow: var(--cl-shadow-lift), var(--cl-shadow-inset);
}

.shine-panel {
    background: linear-gradient(165deg, #fff 0%, var(--cl-pastel-lavender) 100%);
    border-color: #ebe4f5;
}

.shine-inset {
    border: 1px solid #ebe4f5;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--cl-shadow-inset), 0 2px 8px rgba(31, 22, 48, 0.04);
}

.shine-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    box-shadow: var(--cl-shadow-inset), 0 2px 6px rgba(31, 22, 48, 0.05);
}

.shine-pill-pink {
    color: var(--bs-primary);
    background: var(--cl-pastel-pink);
    border-color: #fbcfe8;
}

.shine-pill-lavender {
    color: var(--bs-secondary);
    background: var(--cl-pastel-lavender);
    border-color: #ddd6fe;
}

.shine-pill-mint {
    color: #047857;
    background: var(--cl-pastel-mint);
    border-color: #a7f3d0;
}

.shine-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.6rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--cl-shadow-inset), 0 2px 6px rgba(31, 22, 48, 0.06);
}

.shine-badge-popular {
    color: var(--bs-primary);
    background: var(--cl-pastel-pink);
    border: 1px solid #fbcfe8;
}

.shine-badge-soon {
    color: #6b7280;
    background: #f4f4f5;
    border: 1px solid #e5e7eb;
}

.shine-btn-ghost {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--cl-shadow-inset), 0 2px 8px rgba(31, 22, 48, 0.05);
}

.shine-btn-ghost:hover {
    background: var(--cl-purple-soft);
    border-color: #ddd6fe;
}

/* ── Hero ── */

.hero-section {
    padding: 3.5rem 0 2.5rem;
    background: #fff;
    border-bottom: 1px solid var(--bs-border-color);
}

.home-hero {
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(243, 232, 255, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(252, 231, 243, 0.45) 0%, transparent 50%),
        #fff;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-section h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 22ch;
}

.hero-accent-line {
    display: inline-block;
}

.hero-accent {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-section .lead {
    color: #5c5470;
    font-size: 1.05rem;
    max-width: 38rem;
    line-height: 1.6;
}

.hero-fine-print {
    opacity: 0.85;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #fff 0%, var(--cl-pastel-lavender) 45%, var(--cl-pastel-pink) 100%);
    border-color: #e9d5ff;
}

.shine-card-hero {
    box-shadow:
        var(--cl-shadow-lift),
        var(--cl-shadow-inset),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.hero-visual-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 23, 122, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-rate-ring {
    position: relative;
    width: 8.5rem;
    height: 8.5rem;
    margin: 0 auto;
}

.hero-rate-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(107, 33, 168, 0.15));
}

.hero-rate-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-rate-value {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bs-secondary);
    line-height: 1.1;
}

.hero-rate-caption {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8b7fa0;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
}

.mini-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    box-shadow: var(--cl-shadow-inset);
}

.mini-stat-icon-pink {
    background: var(--cl-pastel-pink);
    color: var(--bs-primary);
    border: 1px solid #fbcfe8;
}

.mini-stat-icon-lavender {
    background: var(--cl-pastel-lavender);
    color: var(--bs-secondary);
    border: 1px solid #ddd6fe;
}

.mini-stat-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5c5470;
    line-height: 1.25;
}

.home-body {
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(243, 232, 255, 0.35) 0%, transparent 60%),
        var(--bs-body-bg);
}

.section-head {
    padding-bottom: 0.25rem;
}

/* ── Category cards ── */

.category-card {
    border-radius: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card.is-disabled {
    opacity: 0.58;
}

.category-icon,
.shine-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--cl-pastel-pink), #fff);
    color: var(--bs-primary);
    border: 1px solid #fbcfe8;
    box-shadow: var(--cl-shadow-inset), 0 4px 12px rgba(232, 23, 122, 0.1);
}

.category-icon-symbol {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
}

.category-icon.is-muted {
    background: #f4f4f5;
    color: #9ca3af;
}

.rate-display {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    color: var(--bs-primary);
}

.card-product-recommended,
.card-product-sponsored {
    border-color: #f9a8d4 !important;
    background: #fffafb;
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset) !important;
}

/* ── Product cards ── */

.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card {
    border-color: #ebe4f5;
    background: #fff;
    min-height: 7.5rem;
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    height: 100%;
}

.product-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-card-badge {
    flex-shrink: 0;
}

.product-card-badge--exclusive {
    flex-shrink: 0;
    background-color: #fdf2f8;
    border: 1px solid #f9a8d4;
    color: #be185d;
}

.product-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
    color: #5c5470;
}

.product-card-meta li {
    white-space: nowrap;
}

.product-card-rate-block {
    flex-shrink: 0;
}

.product-card-rate-label {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.product-card-action {
    margin-top: auto;
}

.product-card-action .btn {
    min-width: 8.5rem;
}

.product-list-rows .product-card-inner {
    flex-direction: row;
    align-items: center;
    gap: 1rem 1.5rem;
}

.product-list-rows .product-card-info {
    flex: 1 1 auto;
    min-width: 0;
}

.product-list-rows .product-card-meta {
    margin-top: 0.65rem;
}

.product-list-rows .product-card-rate-block {
    text-align: center;
    min-width: 6.5rem;
}

.product-list-rows .product-card-action {
    margin-top: 0;
    flex-shrink: 0;
}

.product-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .product-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .product-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-list-grid .product-card {
    height: 100%;
}

.product-list-grid .product-card-inner {
    min-height: 16rem;
}

.product-list-grid .product-card-info {
    flex: 1 1 auto;
}

.product-list-grid .product-card-meta {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.4rem;
}

.product-list-grid .product-card-meta li {
    white-space: normal;
    width: 100%;
    line-height: 1.35;
}

.product-list-grid .product-card-rate-block {
    text-align: left;
    padding-top: 0.75rem;
    border-top: 1px solid #ebe4f5;
}

.product-list-grid .product-card-action .btn {
    width: 100%;
}

.product-layout-toggle .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.55rem;
    line-height: 1;
}

.product-layout-toggle-icon {
    display: block;
}

.product-layout-toggle .btn.active {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
}

@media (max-width: 767.98px) {
    .product-list-rows .product-card-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .product-list-rows .product-card-rate-block {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 0.65rem;
        min-width: 0;
    }

    .product-list-rows .product-card-action .btn {
        width: 100%;
    }
}

.page-intro {
    background: #fff;
    border-bottom: 1px solid var(--bs-border-color);
}

.btn-check:checked + .btn-outline-primary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
}

.choice-btn-group .btn {
    text-align: left;
    border-color: var(--bs-border-color);
}

.choice-btn-group .btn small {
    display: block;
    font-weight: 500;
    color: #6b6478;
}

.btn-check:checked + .btn-outline-primary small {
    color: rgba(255, 255, 255, 0.88);
}

/* ── Compare questionnaire ── */

.compare-hero {
    padding: 2.5rem 0 1.75rem;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(243, 232, 255, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(252, 231, 243, 0.45) 0%, transparent 50%),
        #fff;
    border-bottom: 1px solid var(--bs-border-color);
}

.compare-back {
    color: var(--bs-secondary);
}

.compare-back:hover {
    color: var(--bs-primary);
}

.compare-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.compare-hero-title {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 18ch;
}

.compare-hero-lead {
    color: #5c5470;
    max-width: 38rem;
    line-height: 1.6;
}

.compare-body {
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(243, 232, 255, 0.35) 0%, transparent 60%),
        var(--bs-body-bg);
}

.compare-form-shell {
    max-width: 100%;
}

.compare-form-head {
    padding: 0 0.15rem;
}

.compare-steps {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.compare-step-card {
    padding: 1.35rem 1.25rem;
    border-color: #ebe4f5;
    background: linear-gradient(165deg, #fff 0%, rgba(250, 245, 255, 0.65) 100%);
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
}

@media (min-width: 768px) {
    .compare-step-card {
        padding: 1.65rem 1.75rem;
    }

    .compare-steps {
        gap: 1.5rem;
    }
}

.compare-form-card {
    border-color: #ebe4f5;
}

.compare-step-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.compare-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(232, 23, 122, 0.22), var(--cl-shadow-inset);
}

.compare-region-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.72);
}

.compare-region-box .region-picker {
    margin-left: auto;
}

.shine-choice-card,
.compare-choice {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    margin: 0;
    border: 1px solid #ebe4f5;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--cl-shadow-inset), 0 2px 8px rgba(31, 22, 48, 0.04);
    text-align: left;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.shine-choice-card:hover,
.compare-choice:hover {
    transform: translateY(-1px);
    border-color: #ddd6fe;
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
}

.btn-check:checked + .shine-choice-card,
.btn-check:checked + .compare-choice {
    border-color: #f9a8d4;
    background: linear-gradient(160deg, #fff 0%, var(--cl-pastel-pink) 100%);
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
}

.compare-choice-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bs-body-color);
    line-height: 1.25;
}

.compare-choice-desc {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b6478;
    line-height: 1.35;
}

.compare-term-row {
    flex-wrap: nowrap;
}

.compare-term-row .compare-term-col {
    flex: 1 1 0;
    min-width: 0;
}

.compare-term-row .compare-choice {
    padding: 0.85rem 0.65rem;
}

.compare-term-row .compare-choice-title {
    font-size: 0.88rem;
}

.compare-term-row .compare-choice-desc {
    font-size: 0.68rem;
}

@media (max-width: 575.98px) {
    .compare-term-row {
        --bs-gutter-x: 0.45rem;
    }

    .compare-term-row .compare-choice {
        padding: 0.75rem 0.45rem;
    }

    .compare-term-row .compare-choice-title {
        font-size: 0.8rem;
    }

    .compare-term-row .compare-choice-desc {
        display: none;
    }
}

.btn-check:checked + .shine-choice-card .compare-choice-title,
.btn-check:checked + .compare-choice .compare-choice-title {
    color: var(--bs-secondary);
}

.btn-check:checked + .shine-choice-card .compare-choice-desc,
.btn-check:checked + .compare-choice .compare-choice-desc {
    color: #5c5470;
}

.compare-submit {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
}

.compare-submit-wrap {
    margin-top: 1.5rem;
    padding: 1.35rem 1.25rem;
    text-align: center;
    border-color: #ebe4f5;
    background: linear-gradient(165deg, #fff 0%, var(--cl-pastel-lavender) 100%);
}

@media (min-width: 768px) {
    .compare-submit-wrap {
        padding: 1.65rem 1.75rem;
    }
}

.compare-body.pb-5 {
    padding-bottom: 2rem !important;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: #c11566;
    --bs-btn-hover-border-color: #c11566;
}

.site-footer {
    background: #fff;
    border-top: 1px solid var(--bs-border-color);
}

.footer-brand {
    display: inline-flex;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #5c5470;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--bs-primary);
    text-decoration: underline;
}

.footer-links li + li {
    margin-top: 0.45rem;
}

.footer-divider {
    border-color: var(--bs-border-color);
    opacity: 1;
}

.footer-cookie a {
    font-weight: 600;
}

/* ── Cookie banner ── */

body.cookie-banner-open {
    padding-bottom: 6.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 1080;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    max-width: 36rem;
    margin: 0 auto;
    padding: 1rem 1.1rem;
    border-color: #ddd6fe;
    background: linear-gradient(155deg, #fff 0%, var(--cl-pastel-lavender) 55%, var(--cl-pastel-pink) 100%);
    box-shadow:
        var(--cl-shadow-lift),
        var(--cl-shadow-inset),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

@media (min-width: 576px) {
    .cookie-banner {
        left: auto;
        right: 1.5rem;
        margin: 0;
    }
}

.cookie-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 0.65rem;
    background: #fff;
    color: var(--bs-secondary);
    border: 1px solid #ddd6fe;
    box-shadow: var(--cl-shadow-inset), 0 4px 10px rgba(107, 33, 168, 0.1);
}

.cookie-banner-body {
    flex: 1;
    min-width: 0;
}

.cookie-banner-title {
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.cookie-banner-text a {
    font-weight: 600;
    color: var(--bs-secondary);
}

.cookie-banner-text a:hover {
    color: var(--bs-primary);
}

.cookie-banner-accept {
    flex-shrink: 0;
    align-self: center;
    white-space: nowrap;
}

/* ── Modal scroll lock (mobile / iOS) ── */

html.modal-scroll-lock {
    overflow: hidden;
    height: var(--app-vh, 100dvh);
}

body.modal-scroll-lock,
body.region-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    padding-right: 0 !important;
}

body.region-modal-open .cookie-banner {
    display: none;
}

.modal {
    overscroll-behavior: contain;
    touch-action: pan-y;
}

body.modal-scroll-lock .modal.show {
    touch-action: pan-y;
}

/* Chrome mobile: toolbar collapse changes visual viewport — use --app-vh from JS */
@media (max-width: 575.98px) {
    .modal-backdrop {
        top: var(--app-vt, 0px) !important;
        width: 100% !important;
        height: var(--app-vh, 100dvh) !important;
    }

    .modal {
        top: var(--app-vt, 0px) !important;
        height: var(--app-vh, 100dvh) !important;
        padding: 0 !important;
    }

    .modal-dialog.modal-fullscreen-sm-down,
    .modal-dialog-centered.modal-fullscreen-sm-down {
        display: flex !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: none !important;
        height: var(--app-vh, 100dvh) !important;
        min-height: var(--app-vh, 100dvh) !important;
        max-height: var(--app-vh, 100dvh) !important;
        margin: 0 !important;
    }

    .modal-dialog.modal-fullscreen-sm-down .modal-content {
        height: var(--app-vh, 100dvh) !important;
        min-height: var(--app-vh, 100dvh) !important;
        max-height: var(--app-vh, 100dvh) !important;
        border-radius: 0;
    }

    .modal-dialog.modal-fullscreen-sm-down .modal-body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

.region-modal .modal-dialog {
    max-width: 42rem;
}

.region-modal-card {
    position: relative;
    overflow: hidden;
    border-color: #ddd6fe;
    background: linear-gradient(155deg, #fff 0%, var(--cl-pastel-lavender) 45%, var(--cl-pastel-pink) 100%);
    box-shadow:
        var(--cl-shadow-lift),
        var(--cl-shadow-inset),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.region-modal-glow {
    position: absolute;
    top: -35%;
    right: -25%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 23, 122, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.region-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.region-modal-lead {
    max-width: 34rem;
    line-height: 1.55;
}

.region-modal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    box-shadow: 0 6px 16px rgba(232, 23, 122, 0.22), var(--cl-shadow-inset);
}

.region-modal-badge-code {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
}

.region-modal-picker {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (max-width: 575.98px) {
    .region-modal-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.region-modal-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid #ebe4f5;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--cl-shadow-inset), 0 2px 8px rgba(31, 22, 48, 0.04);
    text-align: left;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.region-modal-option:hover {
    transform: translateY(-1px);
    border-color: #ddd6fe;
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
}

.region-modal-option.is-active {
    border-color: #f9a8d4;
    background: linear-gradient(160deg, #fff 0%, var(--cl-pastel-pink) 100%);
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
}

.region-modal-option-code {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bs-secondary);
}

.region-modal-option.is-active .region-modal-option-code {
    color: var(--bs-primary);
}

.region-modal-option-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #5c5470;
    line-height: 1.25;
}

.region-modal-actions .region-modal-confirm {
    font-weight: 700;
    letter-spacing: -0.01em;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.region-modal-actions .region-modal-browse {
    background: rgba(255, 255, 255, 0.72);
    border-color: #ebe4f5;
    font-weight: 600;
    box-shadow: var(--cl-shadow-inset);
}

.region-modal-actions .region-modal-browse:hover {
    background: var(--cl-purple-soft);
    border-color: #ddd6fe;
    color: var(--bs-secondary);
}

.region-modal .modal-backdrop.show {
    opacity: 0.35;
    backdrop-filter: blur(2px);
}

.legal-prose h2:first-child {
    margin-top: 0 !important;
}

.legal-prose p:last-child {
    margin-bottom: 0;
}

.legal-page {
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(243, 232, 255, 0.35) 0%, transparent 60%),
        var(--bs-body-bg);
}

.legal-page-head {
    padding: 0 0.15rem;
}

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.legal-section-card {
    padding: 1.35rem 1.25rem;
    border-color: #ebe4f5;
    background: linear-gradient(165deg, #fff 0%, rgba(250, 245, 255, 0.65) 100%);
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
}

.legal-section-card .legal-prose p:last-child,
.legal-section-card p:last-child {
    margin-bottom: 0;
}

.legal-list {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.legal-list li {
    margin-bottom: 0.65rem;
    line-height: 1.55;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.legal-page-note {
    margin-top: 1.25rem;
    padding: 0 0.15rem;
}

@media (min-width: 768px) {
    .legal-section-card {
        padding: 1.65rem 1.75rem;
    }

    .legal-sections {
        gap: 1.5rem;
    }
}

/* ── Product detail ── */

.product-hero {
    background:
        radial-gradient(ellipse 70% 60% at 100% 0%, rgba(243, 232, 255, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(252, 231, 243, 0.4) 0%, transparent 55%),
        #fff;
}

.product-hero-back {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7c6e90;
    text-decoration: none;
    transition: color 0.15s;
}

.product-hero-back:hover {
    color: var(--bs-primary);
}

.product-hero-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.product-hero-trust-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b21a8;
    margin-top: 0.1rem;
}

.product-hero-rate {
    font-size: clamp(2.6rem, 8vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-detail-rate-block {
    padding-top: 1rem;
    border-top: 1px solid #ebe4f5;
    text-align: center;
}



.product-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 110% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at -10% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.product-detail-hero-back {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.15s;
}

.product-detail-hero-back:hover {
    color: #ffffff;
}

.product-detail-page {
    background: var(--bs-body-bg);
}

.product-detail-body {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* Identity card — first card on product detail */
.product-detail-identity-card {
    overflow: hidden;
    border-color: #e7e0ef;
    padding: 0;
}

.product-detail-identity-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem 1.1rem;
    background: linear-gradient(135deg, #6b21a8, #e8177a);
}

.product-detail-identity-provider {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.2rem;
    line-height: 1.2;
}

.product-detail-identity-name {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.product-detail-hero-badge {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
}

.product-detail-hero-badge--exclusive {
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.55);
}

.product-detail-identity-rate {
    padding: 1.5rem 1.35rem 1.35rem;
    text-align: center;
    background: #f9f5ff;
}

.product-detail-identity-rate-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #9b8cac;
    margin: 0.3rem 0 0;
}

.product-detail-head {
    padding: 0 0.15rem;
}

.product-detail-rate-card {
    text-align: center;
}

.product-detail-rate {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
    font-weight: 900;
    color: #6b21a8;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.product-detail-sections {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-detail-card {
    padding: 1.35rem 1.25rem;
    border-color: #ebe4f5;
    background: linear-gradient(165deg, #fff 0%, rgba(250, 245, 255, 0.65) 100%);
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
}

.product-detail-specs {
    display: grid;
    gap: 0.85rem;
}

.product-detail-spec {
    display: grid;
    grid-template-columns: minmax(7rem, 9rem) 1fr;
    gap: 0.75rem 1rem;
    align-items: baseline;
}

.product-detail-spec dt {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #5c5470;
}

.product-detail-spec dd {
    margin: 0;
    color: #2d2640;
}

.product-detail-notes {
    line-height: 1.6;
    white-space: pre-line;
}

.product-detail-notes-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-detail-notes-item {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--cl-text-muted, #5a5068);
    line-height: 1.5;
}

.product-detail-notes-item::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c084fc;
    margin-top: 0.45em;
}

.product-detail-cta-card {
    text-align: center;
}

.product-detail-cta-card .btn {
    min-width: 12rem;
}

.product-detail-disclaimer {
    padding: 0 0.15rem;
    line-height: 1.55;
}

@media (min-width: 768px) {
    .product-detail-card {
        padding: 1.65rem 1.75rem;
    }

    .product-detail-sections {
        gap: 1.5rem;
    }
}

/* ── Product request modal ── */

.product-request-modal .modal-dialog {
    max-width: 40rem;
}

.product-request-modal .modal-content {
    max-height: min(92dvh, 42rem);
}

.product-request-modal .modal-body {
    overscroll-behavior: contain;
}

.product-request-modal-card {
    border-color: #ebe4f5;
    background: linear-gradient(165deg, #fff 0%, rgba(250, 245, 255, 0.9) 100%);
    box-shadow: var(--cl-shadow-soft), var(--cl-shadow-inset);
    padding: 16px;
}

.product-request-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.95);
    color: #059669;
}

.product-request-pick-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
}

.product-request-pick-row--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-request-pick-row--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-request-pick-item {
    position: relative;
    display: flex;
    min-width: 0;
}

.product-request-pick {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0.45rem 0.2rem;
    border: 1px solid #ebe4f5;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.625rem, 2.5vw, 0.8125rem);
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--bs-body-color);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.product-request-pick-text--mobile {
    display: none;
}

@media (min-width: 576px) {
    .product-request-modal .modal-dialog {
        max-width: 40rem;
    }

    .product-request-pick-row {
        gap: 0.5rem;
    }

    .product-request-pick {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        overflow: visible;
        text-overflow: unset;
    }

    .product-request-pick--timing .product-request-pick-text--mobile {
        display: none;
    }

    .product-request-pick--timing .product-request-pick-text--full {
        display: inline;
    }
}

@media (max-width: 575.98px) {
    .product-request-pick--timing .product-request-pick-text--full {
        display: none;
    }

    .product-request-pick--timing .product-request-pick-text--mobile {
        display: inline;
    }
}

.product-request-pick:hover {
    border-color: #ddd6fe;
}

.btn-check:checked + .product-request-pick {
    border-color: #f9a8d4;
    background: linear-gradient(160deg, #fff 0%, var(--cl-pastel-pink) 100%);
    box-shadow: var(--cl-shadow-inset);
    color: var(--bs-secondary);
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-secondary);
}

.home-prose-list {
    padding-left: 1.15rem;
    color: #5c5470;
}

.home-prose-list li {
    margin-bottom: 0.65rem;
    line-height: 1.55;
}

.home-prose-list li:last-child {
    margin-bottom: 0;
}

.benefit-card {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    border-radius: 0.45rem;
    background: var(--cl-pastel-lavender);
    color: var(--bs-secondary);
    border: 1px solid #ddd6fe;
    box-shadow: var(--cl-shadow-inset);
}

.protection-card {
    border-color: #ddd6fe;
    background: linear-gradient(155deg, #fff 0%, var(--cl-pastel-lavender) 40%, var(--cl-purple-soft) 100%);
}

.shine-card-shield {
    box-shadow:
        var(--cl-shadow-lift),
        var(--cl-shadow-inset),
        0 0 40px rgba(107, 33, 168, 0.06);
}

.protection-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    background: linear-gradient(145deg, #fff, var(--cl-pastel-lavender));
    color: var(--bs-secondary);
    border: 1px solid #ddd6fe;
    box-shadow: var(--cl-shadow-inset), 0 6px 16px rgba(107, 33, 168, 0.12);
}

.shine-note {
    padding: 0.75rem 0.85rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(221, 214, 254, 0.8);
}

.home-step {
    height: 100%;
}

.shine-step-pink {
    background: linear-gradient(160deg, #fff 70%, var(--cl-pastel-pink) 100%);
    border-color: #fce7f3;
}

.shine-step-lavender {
    background: linear-gradient(160deg, #fff 70%, var(--cl-pastel-lavender) 100%);
    border-color: #ede9fe;
}

.shine-step-mint {
    background: linear-gradient(160deg, #fff 70%, var(--cl-pastel-mint) 100%);
    border-color: #d1fae5;
}

.home-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(232, 23, 122, 0.25), var(--cl-shadow-inset);
}

.home-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.85);
    color: var(--bs-secondary);
    border: 1px solid #ebe4f5;
    box-shadow: var(--cl-shadow-inset);
}

.featured-wrap {
    border-color: #fbcfe8;
    background: linear-gradient(165deg, #fff 0%, var(--cl-pastel-pink) 100%);
}

/* ===========================================
   Product page variants (B, C, D)
   =========================================== */

/* Admin preview bar */
.pdv-preview-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0d0d1a;
    color: #ffffff;
    padding: 0.45rem 1.25rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pdv-preview-bar-label {
    background: linear-gradient(90deg, #7c3aed, #db2777);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.pdv-preview-bar a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}
.pdv-preview-bar a:hover { color: #fff; }
.pdv-preview-bar-switches { margin-left: auto; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pdv-preview-bar-switch {
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
}
.pdv-preview-bar-switch.is-active,
.pdv-preview-bar-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.pdv-preview-body-offset { padding-top: 38px; }

/* ---- Variant B: Rate-Led ---- */
.pdv-rate-hero {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0533 50%, #2d0a5c 100%);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.pdv-rate-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 60%, rgba(107, 33, 168, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 40%, rgba(232, 23, 122, 0.3) 0%, transparent 55%);
}
.pdv-rate-hero-inner { position: relative; z-index: 1; }
.pdv-rate-hero-back {
    display: inline-block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 1.5rem;
}
.pdv-rate-hero-back:hover { color: rgba(255, 255, 255, 0.85); }
.pdv-rate-hero-provider { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.pdv-rate-number {
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #e879f9 0%, #f0abfc 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}
.pdv-rate-aer { font-size: 1rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem; }
.pdv-rate-product-name { font-size: 1.35rem; font-weight: 700; color: #ffffff; margin-bottom: 0.25rem; }
.pdv-rate-product-sub { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.pdv-rate-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.pdv-rate-badge {
    font-size: 0.78rem;
    padding: 0.28rem 0.8rem;
    border-radius: 50rem;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2);
}
.pdv-rate-badge--rec { background: rgba(107,33,168,0.45); border-color: rgba(168,85,247,0.5); }
.pdv-rate-badge--excl { background: rgba(232,23,122,0.35); border-color: rgba(244,114,182,0.5); }
.pdv-rate-cta-btn {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #fff !important;
    border: none;
    padding: 0.9rem 2.25rem;
    border-radius: 0.55rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(124,58,237,0.45);
}
.pdv-rate-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.pdv-rate-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.pdv-rate-trust-item { font-size: 0.8rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.4rem; }
.pdv-rate-right-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(8px);
}
.pdv-rate-right-stat { margin-bottom: 1.25rem; }
.pdv-rate-right-stat-value { font-size: 1.65rem; font-weight: 800; color: #ffffff; line-height: 1; }
.pdv-rate-right-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }
.pdv-rate-right-divider { border-color: rgba(255,255,255,0.08); margin: 1.25rem 0; }
.pdv-benefit-grid { padding: 0; }
.pdv-benefit-grid .row { margin-bottom: 0; }
.pdv-benefit-card {
    background: #fff;
    border: 1px solid #e7e0ef;
    border-radius: 0.85rem;
    padding: 1.35rem;
    height: 100%;
}
.pdv-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(107,33,168,0.1), rgba(232,23,122,0.07));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    color: #7c3aed;
}

/* ---- Variant C: CTA-First ---- */
.pdv-cta-first { padding: 2.5rem 0 1rem; }
.pdv-cta-rate-panel {
    background: linear-gradient(135deg, #6b21a8, #e8177a);
    border-radius: 1rem 1rem 0 0;
    padding: 1.75rem 1.75rem 1.5rem;
    color: #fff;
}
.pdv-cta-rate-val {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.03em;
}
.pdv-cta-rate-aer { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.pdv-cta-provider { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.15rem; }
.pdv-cta-product-name { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.pdv-cta-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.pdv-cta-badge {
    font-size: 0.75rem;
    padding: 0.22rem 0.65rem;
    border-radius: 50rem;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
}
.pdv-inline-form-panel {
    background: #fff;
    border: 1.5px solid #e7e0ef;
    border-top: none;
    border-radius: 0 0 1rem 1rem;
    padding: 1.75rem;
}
.pdv-urgency-strip {
    background: linear-gradient(90deg, rgba(232,23,122,0.07), rgba(107,33,168,0.07));
    border-left: 3px solid #e8177a;
    padding: 0.6rem 0.9rem;
    border-radius: 0 0.4rem 0.4rem 0;
    font-size: 0.82rem;
    color: #5a4a6a;
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.pdv-trust-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.pdv-trust-badge {
    font-size: 0.75rem;
    padding: 0.22rem 0.65rem;
    border-radius: 50rem;
    background: #f3f0f8;
    color: #6b21a8;
    border: 1px solid #e7e0ef;
}

/* ---- Variant D: Calculator ---- */
.pdv-calc-hero {
    background: linear-gradient(135deg, #0f0f1f 0%, #1a0533 60%, #0f172a 100%);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.pdv-calc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(107,33,168,0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, rgba(59,130,246,0.25) 0%, transparent 50%);
}
.pdv-calc-inner { position: relative; z-index: 1; }
.pdv-calc-eyebrow { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.pdv-calc-heading {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}
.pdv-calc-subheading { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 2rem; }
.pdv-calc-input-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 0.75rem;
    padding: 0.2rem 0.25rem 0.2rem 1rem;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(6px);
    max-width: 360px;
}
@media (max-width: 991.98px) {
    .pdv-calc-inner .col-lg-6 { text-align: center; }
    .pdv-calc-input-row { margin-left: auto; margin-right: auto; }
    .pdv-calc-trust-strip { justify-content: center; }
}
.pdv-calc-sym { font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.45); flex-shrink: 0; }
.pdv-calc-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    width: 100%;
    outline: none;
    padding: 0.55rem 0.5rem;
}
.pdv-calc-input::placeholder { color: rgba(255,255,255,0.2); }
.pdv-calc-input::-webkit-inner-spin-button,
.pdv-calc-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pdv-calc-input[type=number] { -moz-appearance: textfield; appearance: textfield; }
.pdv-calc-result-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.pdv-calc-result-amount {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    background: linear-gradient(135deg, #a78bfa 0%, #f0abfc 60%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}
.pdv-calc-result-breakdown { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; line-height: 1.5; }
.pdv-calc-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #fff !important;
    border: none;
    padding: 0.9rem 2.25rem;
    border-radius: 0.55rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
    box-shadow: 0 4px 20px rgba(124,58,237,0.45);
}
.pdv-calc-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.pdv-calc-fine { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 1rem; }
.pdv-calc-preview-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1.75rem;
    backdrop-filter: blur(8px);
}
.pdv-calc-preview-title { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.pdv-calc-preview-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pdv-calc-preview-row:last-child { border-bottom: none; }
.pdv-calc-preview-key { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.pdv-calc-preview-val { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); }

