/* Chooselie — Bootstrap + clean retail theme */

@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: #f6eefc;
    --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: transparent;
    position: relative;
}

/* ── Animated cloud background (inspo: soft pink / lavender sky) ── */

.cl-cloud-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: #faf8fc;
    pointer-events: none;
}

.cl-cloud-sky {
    position: absolute;
    inset: -10%;
    background:
        linear-gradient(155deg, #fff8fc 0%, #faf5ff 35%, #fff5fa 65%, #f6f0ff 100%);
    background-size: 240% 240%;
    animation: cl-cloud-sky 7.5s ease-in-out infinite;
}

.cl-cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(88px) saturate(1.35);
    will-change: transform;
    opacity: 0.85;
}

/* Pink cloud mass — upper sky (inspo: peach-pink highlights top-left) */
.cl-cloud--1 {
    width: 75vw;
    height: 52vh;
    top: -18%;
    left: -12%;
    border-radius: 58% 42% 48% 52% / 52% 48% 55% 45%;
    background:
        radial-gradient(ellipse 80% 70% at 40% 45%, rgba(255, 180, 210, 0.55) 0%, rgba(251, 113, 186, 0.28) 38%, rgba(255, 240, 248, 0.08) 62%, transparent 78%);
    animation: cl-cloud-drift-1 9.5s ease-in-out infinite;
}

/* Violet cloud — left / centre depth (inspo: deep purple plumes) */
.cl-cloud--2 {
    width: 68vw;
    height: 58vh;
    top: 18%;
    left: -20%;
    border-radius: 45% 55% 52% 48% / 48% 52% 46% 54%;
    background:
        radial-gradient(ellipse 75% 80% at 55% 50%, rgba(167, 85, 247, 0.42) 0%, rgba(124, 58, 237, 0.22) 42%, rgba(237, 233, 254, 0.06) 68%, transparent 82%);
    animation: cl-cloud-drift-2 11.5s ease-in-out infinite;
    animation-delay: -2.5s;
}

/* Magenta cloud — centre glow (inspo: bright magenta heart) */
.cl-cloud--3 {
    width: 62vw;
    height: 48vh;
    top: 8%;
    left: 28%;
    border-radius: 52% 48% 44% 56% / 55% 45% 50% 50%;
    background:
        radial-gradient(ellipse 70% 65% at 50% 48%, rgba(236, 72, 153, 0.38) 0%, rgba(244, 114, 182, 0.2) 45%, rgba(255, 245, 250, 0.05) 70%, transparent 85%);
    animation: cl-cloud-drift-3 8.5s ease-in-out infinite;
    animation-delay: -4.5s;
}

/* Lavender billow — right sky (inspo: pink-magenta right side) */
.cl-cloud--4 {
    width: 70vw;
    height: 50vh;
    top: 22%;
    right: -22%;
    border-radius: 48% 52% 58% 42% / 50% 55% 45% 50%;
    background:
        radial-gradient(ellipse 78% 72% at 60% 42%, rgba(217, 70, 239, 0.36) 0%, rgba(192, 132, 252, 0.2) 40%, rgba(253, 244, 255, 0.06) 65%, transparent 80%);
    animation: cl-cloud-drift-4 10.5s ease-in-out infinite;
    animation-delay: -1.5s;
}

/* Soft white-pink highlight — luminous centre (inspo: bright core) */
.cl-cloud--5 {
    width: 55vw;
    height: 42vh;
    top: 35%;
    left: 22%;
    border-radius: 50% 50% 46% 54% / 54% 46% 52% 48%;
    background:
        radial-gradient(ellipse 85% 75% at 48% 50%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 228, 241, 0.35) 35%, rgba(245, 208, 254, 0.12) 58%, transparent 75%);
    animation: cl-cloud-drift-5 12s ease-in-out infinite;
    animation-delay: -6.5s;
    filter: blur(72px) saturate(1.2);
    opacity: 0.9;
}

/* Lower purple cloud — ground haze (inspo: indigo-violet lower edge) */
.cl-cloud--6 {
    width: 80vw;
    height: 45vh;
    bottom: -22%;
    left: 10%;
    border-radius: 54% 46% 50% 50% / 45% 55% 48% 52%;
    background:
        radial-gradient(ellipse 80% 70% at 45% 55%, rgba(107, 33, 168, 0.32) 0%, rgba(147, 51, 234, 0.16) 45%, rgba(243, 232, 255, 0.05) 70%, transparent 85%);
    animation: cl-cloud-drift-6 10.5s ease-in-out infinite;
    animation-delay: -3.5s;
}

@keyframes cl-cloud-sky {
    0%, 100% { transform: translate(0, 0); background-position: 0% 40%; }
    50% { transform: translate(0, 0); background-position: 100% 60%; }
}

@keyframes cl-cloud-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(8vw, 5vh) scale(1.06); }
    66% { transform: translate(4vw, 10vh) scale(0.97); }
}

@keyframes cl-cloud-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(12vw, -4vh) scale(1.08); }
    70% { transform: translate(6vw, 6vh) scale(1.02); }
}

@keyframes cl-cloud-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-6vw, 7vh) scale(1.05); }
    55% { transform: translate(5vw, 3vh) scale(0.96); }
    80% { transform: translate(-3vw, 9vh) scale(1.04); }
}

@keyframes cl-cloud-drift-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    35% { transform: translate(-10vw, 5vh) scale(1.07); }
    65% { transform: translate(-5vw, -6vh) scale(0.98); }
}

@keyframes cl-cloud-drift-5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(7vw, -5vh) scale(1.1); }
}

@keyframes cl-cloud-drift-6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(-8vw, -7vh) scale(1.06); }
    60% { transform: translate(6vw, -4vh) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
    .cl-cloud-sky,
    .cl-cloud {
        animation: none;
    }
}

main {
    flex: 1;
    background: transparent;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(231, 224, 239, 0.85);
}

.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.85rem;
}

.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-pill-rate {
    color: var(--bs-secondary);
    background: linear-gradient(135deg, var(--cl-pastel-pink) 0%, var(--cl-pastel-lavender) 100%);
    border-color: #e9d5ff;
}

.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: transparent;
    border-bottom: 1px solid rgba(231, 224, 239, 0.65);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem);
    min-height: clamp(22rem, 52vh, 32rem);
    border-bottom: none;
}

.home-hero-media {
    position: absolute;
    inset: 0;
}

.home-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: saturate(1.28) contrast(1.12);
}

.home-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(12 2 28 / 57%) 0%, rgb(26 5 51 / 58%) 32%, rgba(45, 8, 82, 0.55) 52%, rgba(107, 33, 168, 0.28) 72%, rgba(190, 24, 93, 0.12) 100%);
}

.home-hero-content {
    position: relative;
    z-index: 1;
}

.home-hero-btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.home-hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.65);
    color: #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-section.home-hero h1 {
    color: #fff;
    max-width: 16ch;
}

.hero-section.home-hero .lead {
    color: #fff;
    max-width: 38rem;
}

.hero-section.home-hero .hero-fine-print {
    color: rgba(255, 255, 255, 0.75);
}

.hero-section.home-hero .hero-accent {
    background: linear-gradient(135deg, #fbcfe8, #e9d5ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.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: transparent;
}

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

.section-head .section-label,
.section-head h2,
.section-head h3 {
    margin-left: auto;
    margin-right: auto;
}

/* ── Category cards ── */

.category-card {
    border-radius: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    padding: 1.75rem 1.35rem 1.5rem !important;
}

.category-card-text {
    max-width: 32ch;
    line-height: 1.55;
}

.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: transparent;
    border-bottom: 1px solid rgba(231, 224, 239, 0.65);
}

.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: transparent;
    border-bottom: 1px solid rgba(231, 224, 239, 0.65);
}

.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: transparent;
}

.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.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.region-modal .modal-dialog {
    max-width: 42rem;
    height: auto;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575.98px) {
    .region-modal.modal,
    .region-modal.modal.show {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: var(--app-vh, 100dvh) !important;
        top: var(--app-vt, 0px) !important;
        padding: 1.25rem !important;
        overflow: hidden !important;
    }

    .region-modal .modal-dialog {
        display: flex !important;
        align-items: center !important;
        width: calc(100% - 2.5rem);
        max-width: 22rem;
        margin: 0 auto !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: calc(var(--app-vh, 100dvh) - 2.5rem) !important;
    }

    .region-modal .modal-content {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        max-height: calc(var(--app-vh, 100dvh) - 2.5rem) !important;
        border-radius: 1rem;
        overflow-y: auto;
    }

    .region-modal .modal-body {
        padding: 1.25rem !important;
    }

    .region-modal-header {
        gap: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .region-modal-header .h4 {
        font-size: 1.15rem;
    }

    .region-modal-picker {
        margin-bottom: 1rem !important;
    }

    .region-modal-actions .region-modal-confirm {
        font-size: 1rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

.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: transparent;
}

.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 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.35rem 1.5rem;
    height: 100%;
}

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

.home-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    line-height: 1.3;
    max-width: 16ch;
}

.home-step-text {
    font-size: 0.925rem;
    color: #5c5470;
    line-height: 1.55;
    margin-bottom: 0;
    max-width: 26ch;
}

.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;
}

.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); }

/* ---- Variant F: Claim (Sales) ---- */
.pdv-claim-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #050510 0%, #1a0533 45%, #12082a 100%);
    padding: 2.5rem 0 3.5rem;
}
.pdv-claim-hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 20% 40%, rgba(124, 58, 237, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 85% 25%, rgba(219, 39, 119, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 50% 100%, rgba(251, 191, 36, 0.12) 0%, transparent 50%);
}
.pdv-claim-inner { position: relative; z-index: 1; }
.pdv-claim-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.65rem;
}
.pdv-claim-eyebrow--hot {
    color: #fbbf24;
    animation: pdv-claim-pulse-text 2.5s ease-in-out infinite;
}
@keyframes pdv-claim-pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}
.pdv-claim-provider {
    font-size: clamp(1.15rem, 3.5vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}
.pdv-claim-rate {
    font-size: clamp(2.5rem, 8vw, 4.25rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 0%, #e9d5ff 45%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.15rem;
}
.pdv-claim-rate-unit {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.pdv-claim-product-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.85rem;
}
.pdv-claim-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.45rem;
}
.pdv-claim-term {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.28rem 0.65rem;
    border-radius: 50rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.55);
}
.pdv-claim-term--active {
    background: rgba(124, 58, 237, 0.35);
    border-color: rgba(167, 139, 250, 0.55);
    color: #fff;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
}
.pdv-claim-terms-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.85rem;
}
.pdv-claim-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.15rem;
}
.pdv-claim-facts li {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
}
.pdv-claim-facts li::before {
    content: '·';
    margin-right: 0.35rem;
    color: rgba(251, 191, 36, 0.7);
}
.pdv-claim-facts li:first-child::before { content: none; margin: 0; }
.pdv-claim-boosters-heading {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 0.55rem;
    text-align: center;
}
.pdv-claim-boosters-heading--compound {
    margin-top: 1.1rem;
    color: rgba(251, 191, 36, 0.75);
}
.pdv-claim-hook {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
    text-align: center;
}
.pdv-claim-hook-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.35rem;
    line-height: 1.4;
}
.pdv-claim-hook-lead strong {
    color: #fbbf24;
    font-weight: 800;
}
.pdv-claim-hook-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: 1.55;
}
.pdv-claim-hook-sub strong { color: rgba(255, 255, 255, 0.9); }
.pdv-claim-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}
.pdv-claim-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
}
.pdv-claim-badge--hot {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(234, 88, 12, 0.2));
    border-color: rgba(251, 191, 36, 0.45);
    color: #fde68a;
}
.pdv-claim-badge--pink {
    background: rgba(219, 39, 119, 0.25);
    border-color: rgba(244, 114, 182, 0.45);
}
.pdv-claim-badge--limited {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.28), rgba(220, 38, 38, 0.22));
    border-color: rgba(251, 146, 60, 0.5);
    color: #fed7aa;
}
@media (max-width: 991.98px) {
    .pdv-claim-hero-copy {
        text-align: center;
    }

    .pdv-claim-hero .pdv-rate-hero-back {
        display: block;
        text-align: center;
    }

    .pdv-claim-badges,
    .pdv-claim-terms,
    .pdv-claim-facts {
        justify-content: center;
    }
}
.pdv-claim-booster {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.85rem 0.65rem;
    text-align: center;
    height: 100%;
}
.pdv-claim-booster--accent {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.35), rgba(219, 39, 119, 0.2));
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.25);
}
.pdv-claim-booster-value {
    display: block;
    width: 100%;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    text-align: center;
}
.pdv-claim-booster-label {
    display: block;
    width: 100%;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.2rem;
    text-align: center;
}
.pdv-claim-form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 1.1rem;
    padding: 1.5rem 1.5rem 1.35rem;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.pdv-claim-form-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e0a3c;
    margin-bottom: 0.25rem;
    line-height: 1.25;
}
.pdv-claim-form-sub {
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 0;
}
.pdv-claim-form-head { margin-bottom: 1rem; }
.pdv-claim-form .form-label {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #374151;
}
.pdv-claim-form .form-control,
.pdv-claim-form .form-select {
    font-size: 0.875rem;
    padding: 0.42rem 0.65rem;
    min-height: calc(1.5em + 0.84rem + 2px);
}
.pdv-claim-urgency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #9d174d;
    background: linear-gradient(90deg, rgba(219, 39, 119, 0.08), rgba(124, 58, 237, 0.06));
    border-left: 3px solid #db2777;
    padding: 0.55rem 0.85rem;
    border-radius: 0 0.45rem 0.45rem 0;
    margin-bottom: 1.15rem;
}
.pdv-claim-urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #db2777;
    flex-shrink: 0;
    animation: pdv-claim-blink 1.4s ease-in-out infinite;
}
@keyframes pdv-claim-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}
.pdv-claim-submit {
    display: block;
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #fff !important;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.6rem;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
    transition: transform 0.12s, box-shadow 0.12s, opacity 0.12s;
    animation: pdv-claim-cta-glow 3s ease-in-out infinite;
}
.pdv-claim-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.55);
    opacity: 0.95;
}
@keyframes pdv-claim-cta-glow {
    0%, 100% { box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45); }
    50% { box-shadow: 0 8px 36px rgba(219, 39, 119, 0.5); }
}
.pdv-claim-apply-link {
    display: block;
    text-align: center;
    margin-top: 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
}
.pdv-claim-apply-link:hover { color: #6b21a8; text-decoration: underline; }
.pdv-claim-success-icon { color: #7c3aed; }
.pdv-claim-body {
    background: transparent;
    padding: 2.5rem 0 0;
}
@media (max-width: 991.98px) {
    .pdv-claim-body {
        padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    }
}
.pdv-claim-disclaimer {
    padding-bottom: 1.25rem;
}
body.cookie-banner-open:has(.pdv-claim-sticky) {
    padding-bottom: 0;
}
.pdv-claim-section-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b7fa0;
    margin-bottom: 1rem;
}
.pdv-claim-booster-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 1.35rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid #e7e0ef;
    background: #fff;
    box-shadow: var(--cl-shadow-soft);
    transition: transform 0.15s, box-shadow 0.15s;
}
.pdv-claim-booster-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(107, 33, 168, 0.12);
}
.pdv-claim-booster-card--money { border-top: 3px solid #7c3aed; }
.pdv-claim-booster-card--shield { border-top: 3px solid #10b981; }
.pdv-claim-booster-card--clock { border-top: 3px solid #f59e0b; }
.pdv-claim-booster-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
    line-height: 1;
}
.pdv-claim-math-strip {
    padding: 1.5rem 1.25rem;
    border: 1px solid #e7e0ef;
    background: linear-gradient(165deg, #fff 0%, rgba(250, 245, 255, 0.8) 100%);
}
.pdv-claim-math-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem 0.5rem;
    text-align: center;
}
.pdv-claim-math-cell {
    min-width: 0;
}
.pdv-claim-math-value {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    color: #1e0a3c;
    margin-bottom: 0.15rem;
    line-height: 1.1;
}
.pdv-claim-math-value--hot {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pdv-claim-math-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9b8cac;
    margin-bottom: 0;
}
.pdv-claim-math-arrow {
    font-size: 1.5rem;
    color: #c4b5fd;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
}
@media (max-width: 767.98px) {
    .pdv-claim-math-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .pdv-claim-math-arrow {
        display: none;
    }
}
.pdv-claim-math-cta {
    display: inline-block;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff !important;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 0.55rem;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}
.pdv-claim-math-cta:hover { opacity: 0.92; transform: translateY(-1px); }
.pdv-claim-limited-offer {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c2410c;
    margin-bottom: 0.65rem;
}
.pdv-claim-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(15, 10, 30, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.pdv-claim-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}
.pdv-claim-sticky-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.pdv-claim-sticky-provider {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pdv-claim-sticky-btn {
    flex-shrink: 0;
    font-weight: 800;
    font-size: 0.88rem;
    color: #fff !important;
    text-decoration: none;
    padding: 0.65rem 1.15rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    white-space: nowrap;
}
body.cookie-banner-open .pdv-claim-sticky {
    bottom: var(--cookie-banner-height, 0px);
}
@media (min-width: 992px) {
    .pdv-claim-hero { padding: 3.5rem 0 4rem; }
    .pdv-claim-sticky { display: none !important; }
}

