/* Design tokens — Care+ landing (redesigned) */
:root {
    --color-bg: #f6f3ef;
    --color-surface: #fffcfa;
    --color-elevated: #ffffff;
    --color-ink: #1c1917;
    --color-muted: #57534e;
    --color-faint: #a8a29e;
    --color-line: #e7e5e4;
    --color-primary: #0c4a6e;
    --color-primary-soft: rgba(12, 74, 110, 0.08);
    --color-accent: #c2410c;
    --color-accent-hover: #9a3412;
    --color-warm: #fef3c7;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 4px 24px rgba(28, 25, 23, 0.06);
    --shadow-lift: 0 20px 50px -12px rgba(12, 74, 110, 0.15);
    --font-sans: "Outfit", system-ui, sans-serif;
    --font-display: "Fraunces", "Georgia", serif;
    --header-h: 4.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 10001;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: var(--color-elevated);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lift);
    clip: auto;
    overflow: visible;
    outline: 2px solid var(--color-accent);
}

body {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-bg);
    min-height: 100vh;
    font-size: 1.02rem;
}

/* Grain overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ——— Header ——— */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--color-elevated) 92%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--color-primary) 0%, #0369a1 100%);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft);
}

.brand-mark svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-faint);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-line);
    background: var(--color-surface);
    transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
}

@media (max-width: 480px) {
    .header-cta .btn-ghost {
        display: none;
    }
}

/* ——— Hero ——— */
.hero {
    position: relative;
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(12, 74, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(194, 65, 12, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, #faf8f5 0%, var(--color-bg) 100%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
        align-items: center;
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--color-warm);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    border: 1px solid color-mix(in srgb, var(--color-accent) 15%, transparent);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4.2vw, 3.15rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--color-ink);
    margin-bottom: 1.25rem;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 32rem;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 2.25rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: #fff;
    padding: 0.95rem 1.6rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--color-accent) 35%, transparent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--color-primary);
    background: var(--color-elevated);
    border: 1px solid var(--color-line);
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 26rem;
}

.stat {
    background: var(--color-elevated);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 1rem 0.9rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

.hero-side {
    position: relative;
}

.hero-side-card {
    background: var(--color-elevated);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lift);
    transform: rotate(-1.5deg);
}

.hero-side-card .icon-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px dashed var(--color-line);
    margin-bottom: 1rem;
}

.hero-side-card .icon-row .hi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-muted);
    font-size: 0.7rem;
    text-align: center;
    max-width: 4.5rem;
}

.hero-side-card .hi svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    opacity: 0.9;
}

.hero-side-note {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.5;
}

/* ——— Bento (benefits first) ——— */
.section-block {
    padding: 3.5rem 0;
}

.section-head {
    text-align: left;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-head {
        text-align: center;
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
    }
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--color-muted);
    font-size: 1rem;
}

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

@media (min-width: 640px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .bento {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }

    .bento > .bento-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .bento > .bento-item:nth-child(2) {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .bento > .bento-item:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
    }
}

.bento-item {
    background: var(--color-elevated);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.5rem 1.6rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bento-item:hover {
    border-color: color-mix(in srgb, var(--color-primary) 25%, var(--color-line));
    box-shadow: var(--shadow-soft);
}

.bento-item .bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    flex-shrink: 0;
    order: -1;
}

/* alternate: icon on bottom for one card */
.bento-item.bento-icon-bottom .bento-icon {
    order: 1;
    margin-top: auto;
    align-self: flex-end;
}

.bento-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-ink);
}

.bento-item p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ——— Product ——— */
.product-section {
    padding: 1rem 0 4rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, #eeeae4 100%);
    border-top: 1px solid var(--color-line);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 960px) {
    .product-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 3rem;
    }

    /* text first in DOM, gallery second — columns swap visually on large screens */
    .product-text-col {
        order: 1;
    }

    .product-gallery-col {
        order: 2;
    }
}

.product-text-col {
    position: relative;
    padding: 0.5rem 0;
}

/* Ribbon badge — top right of product column on desktop */
.product-ribbon {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--color-primary);
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    transform: skewX(-3deg);
}

.product-text-col h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 1.85rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-description {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}

.feature {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-line);
    border-right: 4px solid var(--color-primary);
    transition: background 0.2s;
}

.feature:hover {
    background: #fff;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-warm);
    border-radius: 10px;
    color: var(--color-accent);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature span:not(.feature-icon) {
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
    color: var(--color-ink);
}

.product-specs {
    background: var(--color-elevated);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.5rem;
    margin-bottom: 1.5rem;
}

.product-specs h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--color-ink);
}

.product-specs p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    line-height: 1.55;
}

.product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--color-faint);
    font-size: 1.1rem;
    font-weight: 600;
}

.price-new {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    background: var(--color-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-line);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

@media (min-width: 600px) {
    .carousel-slides {
        height: 480px;
    }
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeSlide 0.45s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: scale(1.01);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    display: block;
    background: linear-gradient(160deg, #f8f6f2 0%, #fffcfa 100%);
}

.carousel-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: color-mix(in srgb, var(--color-ink) 75%, transparent);
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.carousel-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--color-primary);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, background 0.2s;
    box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
    background: var(--color-warm);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0 0.25rem;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* ——— How it works (timeline) ——— */
.how-it-works {
    padding: 4rem 0;
    background: var(--color-elevated);
    border-top: 1px solid var(--color-line);
}

.comparison-wrap {
    display: grid;
    gap: 2rem;
}

@media (min-width: 800px) {
    .comparison-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        position: relative;
    }

    .comparison-wrap::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 2rem;
        bottom: 2rem;
        width: 2px;
        background: linear-gradient(180deg, var(--color-line), var(--color-primary), var(--color-line));
        transform: translateX(-50%);
        border-radius: 1px;
        opacity: 0.5;
    }
}

.comparison-item {
    position: relative;
    padding: 1.5rem 1.5rem 1.6rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line);
}

.comparison-item:nth-child(2) {
    background: var(--color-primary-soft);
    border-color: color-mix(in srgb, var(--color-primary) 20%, var(--color-line));
}

.comparison-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-ink);
}

.comparison-image {
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-line);
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.comparison-item p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

/* ——— Re-benefits strip ——— */
.benefits-strip {
    padding: 3.5rem 0;
    background: var(--color-ink);
    color: #e7e5e4;
}

.benefits-strip .section-title {
    color: #fafaf9;
}

.benefits-strip .section-eyebrow {
    color: #fdba74;
}

.benefits-strip .section-head {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: color-mix(in srgb, #fff 6%, transparent);
    border: 1px solid color-mix(in srgb, #fff 12%, transparent);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: background 0.2s, transform 0.2s;
}

.benefit-card:hover {
    background: color-mix(in srgb, #fff 10%, transparent);
    transform: translateY(-2px);
}

/* Icons alternating: left / top-center / right via nth-child */
.benefit-card:nth-child(3n+1) .benefit-icon-wrap {
    align-self: flex-start;
}

.benefit-card:nth-child(3n+2) .benefit-icon-wrap {
    align-self: center;
}

.benefit-card:nth-child(3n) .benefit-icon-wrap {
    align-self: flex-end;
}

.benefit-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--color-primary) 40%, #1c1917);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    color: #7dd3fc;
}

.benefit-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fafaf9;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: inherit;
}

.benefit-card:nth-child(3n+2) h3,
.benefit-card:nth-child(3n+2) p {
    text-align: center;
    align-self: center;
}

.benefit-card:nth-child(3n) h3,
.benefit-card:nth-child(3n) p {
    text-align: right;
    align-self: flex-end;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a8a29e;
    width: 100%;
}

/* ——— Guarantee ——— */
.guarantee {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #0e7490 55%, #155e75 100%);
    color: #ecfeff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.guarantee .container {
    position: relative;
    z-index: 1;
}

.guarantee .section-title {
    color: #fff;
}

.guarantee p {
    max-width: 44rem;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.95;
}

/* ——— FAQ ——— */
.faq {
    padding: 4rem 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: none;
    border-left: 4px solid var(--color-primary);
    background: var(--color-elevated);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.25rem 1.4rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ——— Contact ——— */
.contact-section {
    padding: 3.5rem 0 4.5rem;
    background: var(--color-elevated);
    border-top: 1px solid var(--color-line);
}

.contact-section .section-head {
    text-align: center;
}

.contact-section > .container > p {
    text-align: center;
    color: var(--color-muted);
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.contact-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

@media (min-width: 500px) {
    .contact-panels {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    text-align: left;
}

.contact-panel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-panel-icon svg {
    width: 22px;
    height: 22px;
}

.contact-panel a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    word-break: break-word;
}

.contact-panel a:hover {
    text-decoration: underline;
}

.contact-panel .label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-muted);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* ——— Footer ——— */
.footer {
    background: #141210;
    color: #d6d3d1;
    padding: 3rem 0 1.5rem;
}

.footer-legal h3 {
    font-family: var(--font-display);
    color: #fafaf9;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.legal-info p,
.contact-info-footer p {
    color: #a8a29e;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-info strong,
.contact-info-footer strong {
    color: #e7e5e4;
}

.health-notice {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.4rem;
    margin: 1.5rem 0;
}

.health-notice h4 {
    color: #fef3c7;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.health-notice p {
    color: #a8a29e;
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-info-footer a {
    color: #fdba74;
    text-decoration: none;
}

.contact-info-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer-links {
        justify-content: flex-start;
    }
}

.footer-links a {
    color: #a8a29e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fafaf9;
}

.footer-bottom > p {
    color: #78716c;
    font-size: 0.85rem;
}

/* ——— Legal pages ——— */
.legal-page {
    padding: 3rem 0 4rem;
    min-height: 50vh;
    background: var(--color-bg);
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--color-ink);
    font-weight: 600;
}

.legal-page section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-line);
}

.legal-page section:last-of-type {
    border-bottom: none;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--color-ink);
}

.legal-page p,
.legal-page li {
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-page a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.legal-page a:hover {
    color: var(--color-accent);
}

.withdrawal-form {
    background: var(--color-elevated);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.6rem;
    margin: 1.5rem 0;
}

/* ——— Nav mobile ——— */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header-inner {
        min-height: 3.75rem;
    }

    .feature {
        flex-direction: column-reverse;
        border-right: none;
        border-left: 4px solid var(--color-primary);
    }

    .benefit-card:nth-child(n) h3,
    .benefit-card:nth-child(n) p,
    .benefit-card:nth-child(n) .benefit-icon-wrap {
        text-align: left;
        align-self: flex-start;
    }

    .comparison-wrap::before {
        display: none;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.product-image img,
.comparison-image img,
.advisor-image img {
    background-color: #f0ebe4;
    min-height: 120px;
    display: block;
}

/* Legacy class used in legal: keep .logo for backwards compat with subpages */
.header .logo a,
.logo {
    text-decoration: none;
    color: var(--color-ink);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
}

.header .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
}
