/* Cvreoz — «Arctic Botanical Lab» theme (full redesign) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Literata:ital,opsz,wght@0,7..72,500;0,7..72,600;0,7..72,700;1,7..72,400&display=swap');

:root {
    --bg: #f0f4f8;
    --bg-deep: #0c1222;
    --surface: #ffffff;
    --surface-muted: #e8eef6;
    --ink: #0f172a;
    --ink-muted: #475569;
    --ink-soft: #64748b;
    --line: #cbd5e1;
    --accent: #0891b2;
    --accent-strong: #0e7490;
    --accent-soft: rgba(8, 145, 178, 0.12);
    --mint: #5eead4;
    --warn-bg: #fffbeb;
    --warn-border: #fde68a;
    --warn-text: #92400e;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --font-sans: "Outfit", system-ui, sans-serif;
    --font-serif: "Literata", Georgia, serif;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --max: 1180px;
    --header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    font-optical-sizing: auto;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 28px);
}

/* —— Disclosure (compliance / transparency) —— */
.site-disclosure {
    background: linear-gradient(90deg, var(--bg-deep) 0%, #152238 100%);
    color: #e2e8f0;
    font-size: 0.8125rem;
    padding: 0.55rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.site-disclosure__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 1rem;
}

.site-disclosure strong {
    color: var(--mint);
    font-weight: 600;
}

.site-disclosure a {
    color: #7dd3fc;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-disclosure a:hover {
    color: #bae6fd;
}

/* —— Header —— */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

.logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-strong);
}

.header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: flex-end;
}

.header-nav a {
    color: var(--ink-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.header-nav a:hover {
    color: var(--accent-strong);
    background: var(--accent-soft);
    border-color: rgba(8, 145, 178, 0.25);
}

.header-cta {
    display: none;
}

@media (min-width: 900px) {
    .header-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.55rem 1.15rem;
        font-size: 0.875rem;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
        border-radius: 999px;
        text-decoration: none;
        margin-left: 0.5rem;
        box-shadow: 0 2px 12px rgba(8, 145, 178, 0.35);
    }

    .header-cta:hover {
        filter: brightness(1.06);
    }
}

/* —— Hero —— */
.hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
    background: var(--bg-deep);
    color: #f1f5f9;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(8, 145, 178, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 80%, rgba(94, 234, 212, 0.12) 0%, transparent 50%),
        linear-gradient(165deg, #0c1222 0%, #111827 45%, #0f172a 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1rem;
}

.hero-kicker span {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), transparent);
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 34rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.75rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-stat {
    text-align: left;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: #fff;
}

.hero-stat span {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.35;
}

.hero-visual {
    position: relative;
}

.hero-visual-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--shadow-lg);
    background: rgba(15, 23, 42, 0.5);
}

.hero-visual-frame img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hero-visual-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-size: 0.8125rem;
    color: #e2e8f0;
    line-height: 1.45;
}

.hero-visual-badge strong {
    color: var(--mint);
}

/* —— Trust strip —— */
.trust-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 1.15rem 0;
}

.trust-strip__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.trust-strip__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

/* —— Sections generic —— */
.section-header {
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
    max-width: 720px;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.65rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

.section-intro-text {
    margin-top: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* —— Product —— */
.product-section {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface-muted) 100%);
}

.product-section .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.carousel-container {
    position: relative;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: min(520px, 70vw);
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface-muted);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 999px;
    z-index: 10;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
    background: var(--accent-soft);
    border-color: rgba(8, 145, 178, 0.35);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 0;
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 28px;
    border-radius: 999px;
    border: none;
    background: var(--line);
    transition: background 0.2s;
}

.dot.active,
.dot:hover {
    background: var(--accent);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    color: #ecfdf5;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.product-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.95rem);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.product-comfort-info {
    background: var(--surface);
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    margin-bottom: 1.5rem;
}

.product-comfort-info h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 0.65rem;
}

.product-comfort-info p {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.product-comfort-info p:last-child {
    margin-bottom: 0;
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
    margin-bottom: 0.65rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    transition: box-shadow 0.2s;
}

.feature:hover {
    box-shadow: var(--shadow);
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-xs);
    border: 1px solid rgba(8, 145, 178, 0.2);
}

.feature-icon {
    font-size: 1.25rem;
}

.feature-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.5;
}

.product-features {
    margin-bottom: 1.5rem;
}

/* —— Buttons —— */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 16px rgba(8, 145, 178, 0.35);
    transition: filter 0.2s, transform 0.15s;
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-strong);
    background: transparent;
    border: 2px solid rgba(148, 163, 184, 0.5);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

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

.cta-section {
    text-align: center;
    margin-top: 2.25rem;
}

.btn-cta {
    width: auto;
    min-width: 280px;
    max-width: 400px;
    margin: 0 auto;
}

/* —— Benefits —— */
.benefits-section {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: var(--surface);
}

.benefits-zigzag {
    display: grid;
    gap: 1.25rem;
}

.benefit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1.65rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    align-items: start;
}

.benefit-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.benefit-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.65;
}

.benefit-icon-large {
    font-size: 2rem;
    line-height: 1;
}

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

/* —— Application —— */
.how-it-works {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: var(--surface-muted);
    border-top: 1px solid var(--line);
}

.timeline {
    display: grid;
    gap: 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.step-item {
    background: var(--surface);
    padding: 1.65rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    position: relative;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg-deep);
    color: #fff;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.92rem;
    color: var(--ink-muted);
}

.usage-note {
    margin-top: 1.75rem;
    padding: 1.2rem 1.4rem;
    background: var(--warn-bg);
    border: 1px solid var(--warn-border);
    border-radius: var(--radius-sm);
}

.usage-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--warn-text);
    line-height: 1.7;
}

/* —— Ingredients —— */
.ingredients-section {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: var(--surface);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.15rem;
}

.ingredient-item {
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ingredient-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ingredient-image {
    height: 180px;
    overflow: hidden;
    background: var(--surface-muted);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-item h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    padding: 1rem 1.15rem 0.35rem;
}

.ingredient-item p {
    padding: 0 1.15rem 1.15rem;
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.ingredient-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(8, 145, 178, 0.25);
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.65;
}

.ingredient-note strong {
    color: var(--ink);
}

/* —— Comparison —— */
.comparison-section {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
    background: var(--bg-deep);
    color: #e2e8f0;
}

.comparison-section .section-eyebrow {
    color: var(--mint);
}

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

.comparison-section .section-subtitle {
    color: #94a3b8;
}

.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.15rem;
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.comparison-table thead th {
    background: rgba(15, 23, 42, 0.8);
    font-family: var(--font-serif);
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #cbd5e1;
}

.check-cell {
    color: var(--mint);
    font-weight: 700;
}

/* —— Why choose —— */
.why-choose-section {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 50%, var(--bg) 100%);
}

.why-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.85rem;
}

.why-choose-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(8, 145, 178, 0.15);
    box-shadow: var(--shadow);
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 0.15rem;
}

.why-choose-item span:last-child {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* —— Guarantee —— */
.guarantee {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: var(--surface-muted);
    border-top: 1px solid var(--line);
}

.guarantee-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.15rem;
}

.guarantee-item {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 0.65rem;
}

.guarantee-item h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.guarantee-item p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

/* —— FAQ —— */
.faq {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: var(--surface);
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 0.65rem;
    background: var(--bg);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.1rem 1.25rem;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.02rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.faq-item summary::after {
    content: "+";
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
}

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

.faq-item .faq-body {
    padding: 0 1.25rem 1.15rem;
}

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

/* —— Contact —— */
.contact-section {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, var(--surface-muted) 0%, var(--bg) 100%);
    border-top: 1px solid var(--line);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    max-width: 720px;
    margin: 2rem auto 0;
}

.contact-card {
    background: var(--surface);
    padding: 1.65rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    text-align: center;
}

.contact-icon {
    font-size: 1.75rem;
    margin-bottom: 0.65rem;
}

.contact-card strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.contact-card a {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: none;
}

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

.contact-card span {
    font-size: 0.875rem;
    color: var(--ink-muted);
}

.contact-legal-note {
    max-width: 560px;
    margin: 1.75rem auto 0;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    text-align: center;
    line-height: 1.55;
}

/* —— Footer —— */
.footer {
    background: var(--bg-deep);
    color: #cbd5e1;
    padding: 0;
    border-top: 4px solid var(--accent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem 2.5rem;
    padding-top: 2.75rem;
    padding-bottom: 1.25rem;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.85rem;
    letter-spacing: 0.04em;
}

.legal-info p {
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.legal-info strong {
    color: #e2e8f0;
}

.health-notice {
    background: rgba(15, 23, 42, 0.6);
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.health-notice h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.55rem;
}

.health-notice p {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #94a3b8;
}

.contact-info-footer {
    background: rgba(15, 23, 42, 0.6);
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-info-footer p {
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.contact-info-footer a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

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

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding: 1.15rem 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
}

.footer-links a:hover {
    color: var(--mint);
}

.footer-bottom > p {
    font-size: 0.8rem;
    color: #64748b;
}

/* —— Legal pages —— */
.legal-shell {
    padding: 2rem 0 3.5rem;
    min-height: 60vh;
    background: var(--bg);
}

.legal-shell__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 960px) {
    .legal-shell__grid {
        grid-template-columns: 240px 1fr;
        align-items: start;
    }
}

.legal-nav {
    position: sticky;
    top: calc(var(--header-h) + 12px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.legal-nav h2 {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
}

.legal-nav a {
    display: block;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-strong);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.legal-nav a:last-child {
    border-bottom: none;
}

.legal-nav a:hover {
    color: var(--ink);
}

.legal-page-main {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: var(--shadow);
}

.legal-page-main h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    margin-bottom: 1.5rem;
    color: var(--ink);
}

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

.legal-page-main section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-page-main h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

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

.legal-page-main p {
    margin-bottom: 0.75rem;
    color: var(--ink-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.legal-page-main ul {
    margin: 0 0 0.85rem 1.25rem;
}

.legal-page-main ul li {
    margin-bottom: 0.35rem;
    color: var(--ink-muted);
}

.legal-page-main a {
    color: var(--accent-strong);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.withdrawal-form {
    background: var(--bg);
    padding: 1.35rem;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--line);
    margin-top: 0.75rem;
}

/* —— Responsive —— */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stat {
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .carousel-slides {
        height: min(360px, 85vw);
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .header-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .comparison-table {
        font-size: 0.82rem;
    }
}
