/* ==========================================================================
   Долг Ноль — Dark Emerald Marketing Theme
   dolg-zero.ru | bankruptcy-bold niche
   ========================================================================== */

/* ── CSS Custom Properties ──────────────────────────────────────────── */
:root {
    --dz-bg: #0F172A;
    --dz-bg-card: #1E293B;
    --dz-bg-card-hover: #334155;
    --dz-text: #F8FAFC;
    --dz-text-secondary: #94A3B8;
    --dz-accent: #10B981;
    --dz-accent-hover: #059669;
    --dz-accent-glow: rgba(16, 185, 129, 0.2);
    --dz-gradient: linear-gradient(135deg, #10B981, #06B6D4);
    --dz-danger: #EF4444;
    --dz-glass: rgba(30, 41, 59, 0.6);
    --dz-glass-border: rgba(148, 163, 184, 0.1);
    --dz-radius: 16px;
    --dz-radius-sm: 12px;
    --dz-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base Reset for Dark Theme ──────────────────────────────────────── */
body.theme-dark-emerald {
    background: linear-gradient(180deg, #0F172A 0%, #0A1628 30%, #0E1F3D 60%, #0C1222 100%);
    background-attachment: fixed;
    color: var(--dz-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;

    /* Override theme.css variables for dark theme */
    --primary: #10B981;
    --primary-dark: #059669;
    --primary-bg: rgba(16, 185, 129, 0.08);
    --primary-blue: #10B981;
    --primary-border: rgba(16, 185, 129, 0.15);
    --bg-card: #1E293B;
    --bg-body: #0F172A;
    --text-dark: #F8FAFC;
    --text-muted: #94A3B8;
    --logo-dark: #1E293B;

    /* Borders */
    --sculpt-border: rgba(148, 163, 184, 0.1);
    --border-subtle: rgba(148, 163, 184, 0.1);
    --border-faint: rgba(148, 163, 184, 0.06);

    /* Shadows */
    --sculpt-shadow: none;
    --sculpt-inner: none;
    --sculpt-input: none;
    --shadow-primary-sm: 0 4px 16px rgba(16, 185, 129, 0.15);
    --shadow-primary-md: 0 8px 24px rgba(16, 185, 129, 0.2);
    --shadow-hover: 0 12px 32px rgba(16, 185, 129, 0.12);
    --focus-ring: 0 0 0 3px rgba(16, 185, 129, 0.2);

    /* Status colors */
    --success-bg: rgba(16, 185, 129, 0.1);
    --warning-bg: rgba(245, 158, 11, 0.1);
    --error-bg: rgba(239, 68, 68, 0.1);
    --error-border: rgba(239, 68, 68, 0.2);
    --error-dark: #FCA5A5;
    --error-text: #FCA5A5;
    --error-icon-bg: rgba(239, 68, 68, 0.15);
    --success-dark: #6EE7B7;
    --warning-dark: #FCD34D;

    /* State layers */
    --state-hover: rgba(16, 185, 129, 0.08);
    --state-pressed: rgba(16, 185, 129, 0.12);
}

/* Top accent strip */
body.theme-dark-emerald::before,
body.theme-light-emerald::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dz-gradient);
    z-index: 10001;
}

/* Progress bar */
.dz-progress-bar {
    position: fixed;
    top: 3px;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--dz-accent);
    z-index: 10000;
    transition: width 0.1s linear;
    opacity: 0.7;
}

body.theme-dark-emerald header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dz-glass-border);
    margin-top: 3px;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
body.theme-dark-emerald header.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(16, 185, 129, 0.1);
}

/* Logo styling */
body.theme-dark-emerald .logo-wrapper svg,
body.theme-light-emerald .logo-wrapper svg {
    height: 36px;
    width: auto;
}
body.theme-dark-emerald .logo-wrapper svg {
    color: var(--dz-text);
}
body.theme-light-emerald .logo-wrapper svg {
    color: var(--dz-text);
}

/* Nav styling */
body.theme-dark-emerald header .nav-desktop,
body.theme-light-emerald header .nav-desktop {
    gap: 8px;
}
body.theme-dark-emerald header .nav-desktop a,
body.theme-light-emerald header .nav-desktop a {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
}
body.theme-dark-emerald header .nav-desktop a:hover {
    background: rgba(16, 185, 129, 0.08);
}
body.theme-light-emerald header .nav-desktop a:hover {
    background: rgba(5, 150, 105, 0.06);
}

body.theme-dark-emerald header a,
body.theme-dark-emerald header .nav-desktop a {
    color: var(--dz-text-secondary);
}
body.theme-dark-emerald header .nav-desktop a {
    position: relative;
}
body.theme-dark-emerald header .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dz-accent);
    transition: width 0.3s ease;
}
body.theme-dark-emerald header .nav-desktop a:hover::after,
body.theme-dark-emerald header .nav-desktop a.active::after {
    width: 100%;
}
body.theme-dark-emerald header a:hover,
body.theme-dark-emerald header .nav-desktop a:hover,
body.theme-dark-emerald header .nav-desktop a.active {
    color: var(--dz-accent);
}

body.theme-dark-emerald aside {
    background: rgba(15, 23, 42, 0.95);
    border-right: 1px solid var(--dz-glass-border);
}
body.theme-dark-emerald aside .side-group h4 {
    color: var(--dz-text-secondary);
}
body.theme-dark-emerald aside .side-link {
    color: var(--dz-text-secondary);
}
body.theme-dark-emerald aside .side-link:hover,
body.theme-dark-emerald aside .side-link.active {
    color: var(--dz-accent);
    background: rgba(16, 185, 129, 0.08);
}

body.theme-dark-emerald main {
    background: var(--dz-bg);
}

body.theme-dark-emerald footer {
    color: var(--dz-text-secondary);
    border-top: 1px solid var(--dz-glass-border);
}
body.theme-dark-emerald footer a {
    color: var(--dz-text-secondary);
}
body.theme-dark-emerald footer a:hover {
    color: var(--dz-accent);
}
body.theme-dark-emerald footer h5 {
    color: var(--dz-text);
}

/* ── Hero Section ───────────────────────────────────────────────────── */
.dz-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 48px 0 40px;
    overflow: hidden;
}

.dz-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: dz-breathe-1 12s ease-in-out infinite;
}

.dz-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: dz-breathe-2 15s ease-in-out infinite;
}

@keyframes dz-breathe-1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(5%, 3%) scale(1.08); opacity: 0.7; }
}
@keyframes dz-breathe-2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(-4%, -2%) scale(1.1); opacity: 0.6; }
}

.dz-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.dz-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dz-text);
    margin-bottom: 24px;
}

.dz-hero h1 em {
    font-style: normal;
    background: var(--dz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dz-hero-sub {
    font-size: 20px;
    color: var(--dz-text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.dz-hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.dz-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dz-accent);
    font-size: 15px;
    font-weight: 600;
}
.dz-hero-feature span {
    color: var(--dz-text-secondary);
}

.dz-hero-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

.dz-hero-counter-num {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--dz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dz-hero-counter-label {
    font-size: 16px;
    color: var(--dz-text-secondary);
}

/* ── Page Header (subpages) ──────────────────────────────────────── */
.dz-page-header {
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--dz-glass-border);
    margin-bottom: 32px;
}
.dz-page-header h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--dz-text);
}
.dz-page-header-sub {
    font-size: 16px;
    color: var(--dz-text-secondary);
    line-height: 1.6;
    max-width: 700px;
}

.dz-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--dz-gradient);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--dz-transition);
    box-shadow: 0 4px 24px var(--dz-accent-glow);
}

.dz-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
}

.dz-btn-cta {
    animation: dz-cta-pulse 3s ease-in-out infinite;
}
.dz-btn-cta:hover {
    animation: none;
}

@keyframes dz-cta-pulse {
    0%, 70%, 100% { box-shadow: 0 4px 24px var(--dz-accent-glow); }
    85% { box-shadow: 0 4px 40px rgba(16, 185, 129, 0.4); }
}

/* ── Scroll Reveal (generic) ────────────────────────────────────────── */
.dz-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.dz-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Section Divider ────────────────────────────────────────────────── */
.dz-section + .dz-section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15) 30%, rgba(16, 185, 129, 0.15) 70%, transparent);
    margin-bottom: 60px;
}

/* ── Section Title ──────────────────────────────────────────────────── */
.dz-section {
    padding: 60px 0;
}

/* Alternating section accent backgrounds */
.dz-section:nth-child(odd) {
    background: rgba(16, 185, 129, 0.02);
    border-radius: 24px;
    margin: 0 -24px;
    padding: 60px 24px;
}

.dz-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dz-text);
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.dz-section-title em {
    font-style: normal;
    color: var(--dz-accent);
}

/* ── Fear-Busters Grid ──────────────────────────────────────────────── */
.dz-fears-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dz-fear-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--dz-radius);
    padding: 32px 28px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--dz-transition);
    position: relative;
    overflow: hidden;
}
.dz-fear-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dz-gradient);
}

.dz-fear-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.dz-fear-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    background: var(--dz-bg-card);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.dz-fear-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--dz-text);
    margin-bottom: 12px;
}

.dz-fear-answer {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: var(--dz-accent);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dz-fear-detail {
    font-size: 14px;
    color: var(--dz-text-secondary);
    line-height: 1.6;
}

/* ── Stats Section ──────────────────────────────────────────────────── */
.dz-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dz-stat-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--dz-radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.dz-stat-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--dz-gradient);
    border-radius: 2px;
    opacity: 0.6;
}
.dz-stat-card.revealed,
.dz-category-card.revealed,
.dz-story-card.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.dz-stat-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.dz-stat-value {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    background: var(--dz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.dz-stat-label {
    font-size: 14px;
    color: var(--dz-text-secondary);
    font-weight: 500;
}

/* ── Timeline (Steps) ───────────────────────────────────────────────── */
.dz-timeline {
    position: relative;
    padding-left: 40px;
}

.dz-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--dz-accent), rgba(16, 185, 129, 0.1));
}

.dz-timeline-step {
    position: relative;
    padding-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--dz-transition);
}

.dz-timeline-step.revealed {
    opacity: 1;
    transform: translateY(0);
}

.dz-timeline-step:last-child {
    padding-bottom: 0;
}

.dz-timeline-dot {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 28px;
    height: 28px;
    background: var(--dz-bg);
    border: 3px solid var(--dz-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--dz-accent);
    z-index: 1;
}

.dz-timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dz-text);
    margin-bottom: 8px;
}

.dz-timeline-text {
    font-size: 15px;
    color: var(--dz-text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* ── Category Cards ─────────────────────────────────────────────────── */
.dz-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dz-category-card {
    background: var(--dz-bg-card);
    border: 1px solid var(--dz-glass-border);
    border-radius: var(--dz-radius);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: var(--dz-transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dz-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 8px 32px var(--dz-accent-glow);
}

.dz-category-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dz-accent);
}

.dz-category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dz-text);
}

.dz-category-desc {
    font-size: 14px;
    color: var(--dz-text-secondary);
    line-height: 1.5;
}

.dz-category-arrow {
    color: var(--dz-accent);
    font-size: 20px;
    margin-top: auto;
    transition: var(--dz-transition);
}

.dz-category-card:hover .dz-category-arrow {
    transform: translateX(4px);
}

/* ── Stories (Testimonials) ─────────────────────────────────────────── */
.dz-stories {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
}

.dz-stories::-webkit-scrollbar {
    height: 6px;
}
.dz-stories::-webkit-scrollbar-track {
    background: var(--dz-bg-card);
    border-radius: 3px;
}
.dz-stories::-webkit-scrollbar-thumb {
    background: var(--dz-accent);
    border-radius: 3px;
}

.dz-story-card {
    min-width: 340px;
    max-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--dz-bg-card);
    border: 1px solid var(--dz-glass-border);
    border-left: 4px solid transparent;
    border-radius: var(--dz-radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.dz-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--dz-gradient);
}

.dz-story-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--dz-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.dz-story-quote::before {
    content: '\201C';
    font-size: 48px;
    line-height: 0;
    vertical-align: -16px;
    color: var(--dz-accent);
    opacity: 0.5;
    margin-right: 4px;
}

.dz-story-amount {
    font-size: 20px;
    font-weight: 800;
    background: var(--dz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.dz-story-name {
    font-size: 14px;
    color: var(--dz-text-secondary);
}

/* ── FAQ Accordion (Dark) ───────────────────────────────────────────── */
.dz-faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dz-faq-item {
    background: var(--dz-bg-card);
    border: 1px solid var(--dz-glass-border);
    border-radius: var(--dz-radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}

.dz-faq-item.open {
    border-color: rgba(16, 185, 129, 0.2);
}

.dz-faq-q {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dz-text);
    transition: color 0.2s;
}

.dz-faq-q:hover {
    color: var(--dz-accent);
}

.dz-faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dz-accent);
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s;
}

.dz-faq-item.open .dz-faq-toggle {
    transform: rotate(45deg);
}

.dz-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.dz-faq-item.open .dz-faq-a {
    max-height: 500px;
}

.dz-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--dz-text-secondary);
    line-height: 1.7;
}

/* ── CTA Section ────────────────────────────────────────────────────── */
.dz-cta-section {
    background: var(--dz-gradient);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 0 80px rgba(16, 185, 129, 0.12);
}

.dz-cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.dz-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.dz-btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #fff;
    color: var(--dz-bg);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--dz-transition);
}

.dz-btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ── Intro / Content Cards (Dark) ───────────────────────────────────── */
.dz-content-card {
    background: var(--dz-bg-card);
    border: 1px solid var(--dz-glass-border);
    border-radius: var(--dz-radius);
    padding: 32px;
    margin-bottom: 24px;
}

.dz-content-card p {
    color: var(--dz-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.dz-content-card p:last-child {
    margin-bottom: 0;
}

.dz-content-card--accent {
    border-left: 4px solid var(--dz-accent);
}

/* ── Disclaimer (Dark) ──────────────────────────────────────────────── */
body.theme-dark-emerald .disclaimer {
    color: var(--dz-text-secondary);
    opacity: 0.6;
}

/* ── Cookie banner override ─────────────────────────────────────────── */
body.theme-dark-emerald #cookie-banner {
    background: var(--dz-bg-card) !important;
    border-top: 1px solid var(--dz-glass-border);
}

/* ── Override w-* components for dark theme ──────────────────────────── */
body.theme-dark-emerald .w-card {
    background: var(--dz-bg-card);
    border-color: var(--dz-glass-border);
    box-shadow: none;
}

body.theme-dark-emerald .t-h1,
body.theme-dark-emerald .t-h2,
body.theme-dark-emerald .t-h3,
body.theme-dark-emerald .w-step-title,
body.theme-dark-emerald .w-expert-name {
    color: var(--dz-text);
}

body.theme-dark-emerald .t-body,
body.theme-dark-emerald .t-small,
body.theme-dark-emerald .w-step-text,
body.theme-dark-emerald .w-faq-a,
body.theme-dark-emerald .w-expert-text {
    color: var(--dz-text-secondary);
}

body.theme-dark-emerald .w-stat-item {
    background: var(--dz-bg-card);
    box-shadow: none;
    border: 1px solid var(--dz-glass-border);
}

body.theme-dark-emerald .w-stat-value {
    color: var(--dz-accent);
}

body.theme-dark-emerald .w-stat-label {
    color: var(--dz-text-secondary);
}

body.theme-dark-emerald .w-step {
    background: var(--dz-bg-card);
    border-color: var(--dz-glass-border);
    box-shadow: none;
}

body.theme-dark-emerald .w-step-num {
    background: var(--dz-accent);
    box-shadow: 0 4px 16px var(--dz-accent-glow);
}

body.theme-dark-emerald .w-alert {
    background: var(--dz-bg-card);
    border-color: var(--dz-glass-border);
}

body.theme-dark-emerald .w-faq-item {
    background: var(--dz-bg-card);
    border-color: var(--dz-glass-border);
    box-shadow: none;
}

body.theme-dark-emerald .w-faq-q {
    color: var(--dz-text);
}

body.theme-dark-emerald .w-faq-q:hover {
    color: var(--dz-accent);
}

body.theme-dark-emerald .w-expert {
    background: var(--dz-bg-card);
    border-color: var(--dz-glass-border);
}

body.theme-dark-emerald .w-expert-text {
    border-color: var(--dz-accent);
    background: rgba(16, 185, 129, 0.05);
}

/* ── Dark Theme Hardcoded Overrides ─────────────────────────────────── */

/* Expert block */
body.theme-dark-emerald .expert-block,
body.theme-dark-emerald .w-expert {
    background: linear-gradient(145deg, var(--dz-bg-card), var(--dz-bg));
    border-color: var(--dz-glass-border);
}

body.theme-dark-emerald .expert-text,
body.theme-dark-emerald .w-expert-text {
    border-color: var(--dz-accent);
    background: rgba(16, 185, 129, 0.05);
    color: var(--dz-text);
}

/* FAQ open state */
body.theme-dark-emerald .faq-item[open],
body.theme-dark-emerald .w-faq-item[open] {
    border-color: rgba(16, 185, 129, 0.2);
}

/* Side link active */
body.theme-dark-emerald .side-link.active {
    background: var(--dz-accent);
    box-shadow: 0 8px 16px var(--dz-accent-glow);
}

/* City intro */
body.theme-dark-emerald .city-intro {
    background: rgba(16, 185, 129, 0.06);
    border-left-color: var(--dz-accent);
    color: var(--dz-text-secondary);
}

/* Blog category badges */
body.theme-dark-emerald .blog-category--risks { background: rgba(239, 68, 68, 0.15); color: #FCA5A5; }
body.theme-dark-emerald .blog-category--rights { background: rgba(245, 158, 11, 0.15); color: #FCD34D; }
body.theme-dark-emerald .blog-category--guide { background: rgba(16, 185, 129, 0.15); color: #6EE7B7; }
body.theme-dark-emerald .blog-category--news { background: rgba(16, 185, 129, 0.1); color: #6EE7B7; }
body.theme-dark-emerald .blog-category--general { background: rgba(148, 163, 184, 0.1); color: #94A3B8; }

/* Article boxes */
body.theme-dark-emerald .article-body .highlight-box {
    background: rgba(16, 185, 129, 0.08);
    border-left-color: var(--dz-accent);
    color: var(--dz-text);
}
body.theme-dark-emerald .article-body .warning-box {
    background: rgba(239, 68, 68, 0.08);
    border-left-color: #EF4444;
    color: var(--dz-text);
}
body.theme-dark-emerald .article-body .tip-box {
    background: rgba(16, 185, 129, 0.08);
    border-left-color: #10B981;
    color: var(--dz-text);
}

/* Article body text */
body.theme-dark-emerald .article-body p,
body.theme-dark-emerald .article-body ul,
body.theme-dark-emerald .article-body ol,
body.theme-dark-emerald .article-body li,
body.theme-dark-emerald .article-body h2,
body.theme-dark-emerald .article-body h3 {
    color: var(--dz-text);
}
body.theme-dark-emerald .article-body a {
    color: var(--dz-accent);
}

/* Static page */
body.theme-dark-emerald .static-page {
    background: var(--dz-bg-card);
    border-color: var(--dz-glass-border);
}
body.theme-dark-emerald .static-content {
    color: var(--dz-text-secondary);
}
body.theme-dark-emerald .static-content h2,
body.theme-dark-emerald .static-content h3,
body.theme-dark-emerald .static-content strong {
    color: var(--dz-text);
}

/* Cookie banner buttons */
body.theme-dark-emerald .cookie-btn {
    background: var(--dz-accent);
}
body.theme-dark-emerald .cookie-btn:hover {
    background: var(--dz-accent-hover);
}
body.theme-dark-emerald .cookie-btn-reject {
    border-color: var(--dz-glass-border);
    color: var(--dz-text-secondary);
}

/* ── SVG Icons ─────────────────────────────────────────────────────── */
.dz-fear-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dz-accent);
    margin-bottom: 16px;
}
.dz-fear-icon svg {
    width: 32px;
    height: 32px;
}

.dz-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--dz-accent);
    opacity: 0.6;
}
.dz-stat-icon svg {
    width: 48px;
    height: 48px;
}

.dz-story-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dz-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.dz-hero-illustration {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    opacity: 0.25;
    color: var(--dz-accent);
    pointer-events: none;
    z-index: 0;
}

/* ── Theme Toggle Button ──────────────────────────────────────────── */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dz-text-secondary, #94A3B8);
    display: none;
    align-items: center;
    transition: color 0.2s;
}
.theme-toggle:hover {
    color: var(--dz-accent, #10B981);
}
body.theme-dark-emerald .theme-toggle,
body.theme-light-emerald .theme-toggle {
    display: flex;
}
body.theme-dark-emerald .theme-icon-moon { display: none; }
body.theme-light-emerald .theme-icon-sun { display: none; }

/* ── Light Theme ──────────────────────────────────────────────────── */
body.theme-light-emerald {
    background: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;

    --dz-bg: #F8FAFC;
    --dz-bg-card: #FFFFFF;
    --dz-bg-card-hover: #F1F5F9;
    --dz-text: #0F172A;
    --dz-text-secondary: #475569;
    --dz-accent: #059669;
    --dz-accent-hover: #047857;
    --dz-accent-glow: rgba(5, 150, 105, 0.15);
    --dz-gradient: linear-gradient(135deg, #059669, #0891B2);
    --dz-danger: #EF4444;
    --dz-glass: rgba(255, 255, 255, 0.8);
    --dz-glass-border: rgba(15, 23, 42, 0.08);

    --primary: #059669;
    --primary-dark: #047857;
    --primary-bg: rgba(5, 150, 105, 0.08);
    --primary-blue: #059669;
    --primary-border: rgba(5, 150, 105, 0.15);
    --bg-card: #FFFFFF;
    --bg-body: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --logo-dark: #0F172A;

    --sculpt-border: rgba(15, 23, 42, 0.08);
    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-faint: rgba(15, 23, 42, 0.04);

    --sculpt-shadow: 0 1px 3px rgba(0,0,0,0.08);
    --sculpt-inner: inset 0 1px 0 rgba(255,255,255,0.6);
    --sculpt-input: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-primary-sm: 0 4px 16px rgba(16, 185, 129, 0.1);
    --shadow-primary-md: 0 8px 24px rgba(16, 185, 129, 0.15);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
    --focus-ring: 0 0 0 3px rgba(16, 185, 129, 0.2);

    --success-bg: rgba(16, 185, 129, 0.08);
    --warning-bg: rgba(245, 158, 11, 0.08);
    --error-bg: rgba(239, 68, 68, 0.06);
    --error-border: rgba(239, 68, 68, 0.2);
    --error-dark: #DC2626;
    --error-text: #DC2626;
    --error-icon-bg: rgba(239, 68, 68, 0.1);
    --success-dark: #059669;
    --warning-dark: #D97706;

    --state-hover: rgba(16, 185, 129, 0.06);
    --state-pressed: rgba(16, 185, 129, 0.1);
}

/* Light: Header */
body.theme-light-emerald header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    margin-top: 3px;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
body.theme-light-emerald header.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(5, 150, 105, 0.1);
}
body.theme-light-emerald header a,
body.theme-light-emerald header .nav-desktop a {
    color: #475569;
}
body.theme-light-emerald header .nav-desktop a {
    position: relative;
}
body.theme-light-emerald header .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    transition: width 0.3s ease;
}
body.theme-light-emerald header .nav-desktop a:hover::after,
body.theme-light-emerald header .nav-desktop a.active::after {
    width: 100%;
}
body.theme-light-emerald header a:hover,
body.theme-light-emerald header .nav-desktop a:hover,
body.theme-light-emerald header .nav-desktop a.active {
    color: #059669;
}

/* Light: Sidebar */
body.theme-light-emerald aside {
    background: rgba(255, 255, 255, 0.95);
    border-right: 1px solid rgba(15, 23, 42, 0.06);
}
body.theme-light-emerald aside .side-group h4 {
    color: #475569;
}
body.theme-light-emerald aside .side-link {
    color: #475569;
}
body.theme-light-emerald aside .side-link:hover,
body.theme-light-emerald aside .side-link.active {
    color: #059669;
    background: rgba(5, 150, 105, 0.06);
}
body.theme-light-emerald aside .side-link.active {
    background: #059669;
    color: #fff;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

/* Light: Main */
body.theme-light-emerald main {
    background: #F8FAFC;
}

/* Light: Footer */
body.theme-light-emerald footer {
    color: #475569;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
body.theme-light-emerald footer a {
    color: #475569;
}
body.theme-light-emerald footer a:hover {
    color: #059669;
}
body.theme-light-emerald footer h5 {
    color: #0F172A;
}

/* Light: Hero — lighter gradient */
body.theme-light-emerald .dz-hero::before {
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}
body.theme-light-emerald .dz-hero::after {
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
}
body.theme-light-emerald .dz-hero h1 {
    color: #0F172A;
}

/* Light: Fear cards — shadow instead of glass */
body.theme-light-emerald .dz-fear-card {
    background: #FFFFFF;
    backdrop-filter: none;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
body.theme-light-emerald .dz-fear-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
body.theme-light-emerald .dz-fear-icon {
    background: rgba(16, 185, 129, 0.08);
}

/* Light: Stat cards */
body.theme-light-emerald .dz-stat-card {
    background: #FFFFFF;
    backdrop-filter: none;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Light: Story cards */
body.theme-light-emerald .dz-story-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
body.theme-light-emerald .dz-story-card::before {
    opacity: 0.15;
}
body.theme-light-emerald .dz-story-quote {
    color: #0F172A;
}

/* Light: Content cards */
body.theme-light-emerald .dz-content-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Light: FAQ */
body.theme-light-emerald .dz-faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
body.theme-light-emerald .dz-faq-item.open {
    border-color: rgba(16, 185, 129, 0.2);
}
body.theme-light-emerald .dz-faq-q {
    color: #0F172A;
}

/* Light: Category cards */
body.theme-light-emerald .dz-category-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
body.theme-light-emerald .dz-category-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Light: Timeline */
body.theme-light-emerald .dz-timeline-dot {
    background: #F8FAFC;
}

/* Light: CTA section stays gradient */

/* Light: Sticky CTA */
body.theme-light-emerald .dz-sticky-cta {
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Light: Disclaimer */
body.theme-light-emerald .disclaimer {
    color: #475569;
    opacity: 0.6;
}

/* Light: Cookie banner */
body.theme-light-emerald #cookie-banner {
    background: #FFFFFF !important;
    color: #0F172A;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* Light: w-* component overrides */
body.theme-light-emerald .w-card {
    background: #FFFFFF;
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
body.theme-light-emerald .t-h1,
body.theme-light-emerald .t-h2,
body.theme-light-emerald .t-h3,
body.theme-light-emerald .w-step-title,
body.theme-light-emerald .w-expert-name {
    color: #0F172A;
}
body.theme-light-emerald .t-body,
body.theme-light-emerald .t-small,
body.theme-light-emerald .w-step-text,
body.theme-light-emerald .w-faq-a,
body.theme-light-emerald .w-expert-text {
    color: #475569;
}
body.theme-light-emerald .w-stat-item {
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
}
body.theme-light-emerald .w-stat-value {
    color: #059669;
}
body.theme-light-emerald .w-stat-label {
    color: #475569;
}
body.theme-light-emerald .w-step {
    background: #FFFFFF;
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
body.theme-light-emerald .w-step-num {
    background: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}
body.theme-light-emerald .w-alert {
    background: #FFFFFF;
    border-color: rgba(15, 23, 42, 0.06);
}
body.theme-light-emerald .w-faq-item {
    background: #FFFFFF;
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
body.theme-light-emerald .w-faq-q {
    color: #0F172A;
}
body.theme-light-emerald .w-faq-q:hover {
    color: #059669;
}
body.theme-light-emerald .w-expert {
    background: #FFFFFF;
    border-color: rgba(15, 23, 42, 0.06);
}
body.theme-light-emerald .w-expert-text {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.04);
    color: #0F172A;
}

/* Light: Blog categories */
body.theme-light-emerald .blog-category--risks { background: rgba(239, 68, 68, 0.08); color: #DC2626; }
body.theme-light-emerald .blog-category--rights { background: rgba(245, 158, 11, 0.08); color: #D97706; }
body.theme-light-emerald .blog-category--guide { background: rgba(16, 185, 129, 0.08); color: #059669; }
body.theme-light-emerald .blog-category--news { background: rgba(16, 185, 129, 0.06); color: #059669; }
body.theme-light-emerald .blog-category--general { background: rgba(15, 23, 42, 0.04); color: #475569; }

/* Light: Article boxes */
body.theme-light-emerald .article-body .highlight-box {
    background: rgba(16, 185, 129, 0.06);
    border-left-color: #059669;
    color: #0F172A;
}
body.theme-light-emerald .article-body .warning-box {
    background: rgba(239, 68, 68, 0.06);
    border-left-color: #EF4444;
    color: #0F172A;
}
body.theme-light-emerald .article-body .tip-box {
    background: rgba(16, 185, 129, 0.06);
    border-left-color: #059669;
    color: #0F172A;
}

/* Light: Article body */
body.theme-light-emerald .article-body p,
body.theme-light-emerald .article-body ul,
body.theme-light-emerald .article-body ol,
body.theme-light-emerald .article-body li,
body.theme-light-emerald .article-body h2,
body.theme-light-emerald .article-body h3 {
    color: #0F172A;
}
body.theme-light-emerald .article-body a {
    color: #059669;
}

/* Light: Static page */
body.theme-light-emerald .static-page {
    background: #FFFFFF;
    border-color: rgba(15, 23, 42, 0.06);
}
body.theme-light-emerald .static-content {
    color: #475569;
}
body.theme-light-emerald .static-content h2,
body.theme-light-emerald .static-content h3,
body.theme-light-emerald .static-content strong {
    color: #0F172A;
}

/* Light: City intro */
body.theme-light-emerald .city-intro {
    background: rgba(16, 185, 129, 0.04);
    border-left-color: #059669;
    color: #475569;
}

/* Light: Cookie buttons */
body.theme-light-emerald .cookie-btn {
    background: #059669;
}
body.theme-light-emerald .cookie-btn:hover {
    background: #059669;
}
body.theme-light-emerald .cookie-btn-reject {
    border-color: rgba(15, 23, 42, 0.1);
    color: #475569;
}

/* ── Blog Index ────────────────────────────────────────────────────── */
.dz-blog-header {
    padding: 48px 0 32px;
}
.dz-blog-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dz-text);
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.dz-blog-header p {
    font-size: 18px;
    color: var(--dz-text-secondary);
    max-width: 600px;
}

.dz-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 60px;
}

.dz-blog-card {
    background: var(--dz-bg-card);
    border: 1px solid var(--dz-glass-border);
    border-radius: var(--dz-radius);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.dz-blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dz-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.dz-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}
.dz-blog-card:hover::after {
    opacity: 1;
}

.dz-blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dz-text);
    line-height: 1.35;
    margin-bottom: 12px;
}

.dz-blog-card-desc {
    font-size: 14px;
    color: var(--dz-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dz-blog-card-footer {
    margin-top: auto;
}

.dz-blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--dz-accent);
    transition: gap 0.2s;
}

/* Light: Blog cards */
body.theme-light-emerald .dz-blog-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
body.theme-light-emerald .dz-blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
    .dz-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Sticky CTA (Mobile) ───────────────────────────────────────────── */
.dz-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--dz-glass-border);
    z-index: 999;
}

.dz-sticky-cta .dz-btn-cta {
    width: 100%;
    justify-content: center;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .dz-fears-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dz-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .dz-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    .dz-cta-section {
        padding: 48px 24px;
    }
    .dz-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    .dz-hero-illustration {
        width: 300px;
        height: 300px;
        right: -5%;
        opacity: 0.1;
    }
}

@media (max-width: 600px) {
    .dz-fears-grid {
        grid-template-columns: 1fr;
    }
    .dz-stats {
        grid-template-columns: 1fr 1fr;
    }
    .dz-categories {
        grid-template-columns: 1fr;
    }
    .dz-hero h1 {
        font-size: 2rem;
    }
    .dz-section-title {
        font-size: 1.5rem;
    }
    .dz-story-card {
        min-width: 280px;
    }
    .dz-timeline {
        padding-left: 32px;
    }
    .dz-sticky-cta {
        display: block;
    }
    body.theme-dark-emerald,
    body.theme-light-emerald {
        padding-bottom: 72px;
    }
    .dz-hero-illustration {
        display: none;
    }
}

/* ── Prefers Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .dz-fear-card,
    .dz-timeline-step,
    .dz-btn-cta,
    .dz-btn-cta-white,
    .dz-category-card {
        transition: none !important;
    }
    .dz-fear-card {
        opacity: 1 !important;
        transform: none !important;
    }
    .dz-timeline-step {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── Smooth Scroll ──────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}
