:root {
  --font-family: "Poppins", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1280px;
  --space-x: 2rem;
  --space-y: 1.25rem;
  --gap: 1rem;

  --radius-xl: 1rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 0.3s;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #1a5f7a;
  --brand-contrast: #ffffff;
  --accent: #d35400;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #f8f9fa;
  --fg-on-page: #212529;

  --bg-alt: #ffffff;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #cbd5e1;

  --surface-light: #ffffff;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #1a5f7a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2c728f;
  --ring: #3b82f6;

  --bg-accent: #fef3e9;
  --fg-on-accent: #7a3c05;
  --bg-accent-hover: #e67e22;

  --success: #10b981;
  --success-contrast: #ffffff;
  --warning: #f59e0b;
  --warning-contrast: #000000;
  --danger: #ef4444;
  --danger-contrast: #ffffff;

  --link: #1a5f7a;
  --link-hover: #0f4c63;

  --gradient-hero: linear-gradient(135deg, #1a5f7a 0%, #2c728f 100%);
  --gradient-accent: linear-gradient(90deg, #d35400 0%, #e67e22 100%);

  --btn-primary-bg: var(--bg-primary);
  --btn-primary-fg: var(--fg-on-primary);
  --btn-primary-bg-hover: var(--bg-primary-hover);

  --btn-ghost-bg: transparent;
  --btn-ghost-fg: var(--fg-on-page);
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);

  --card-bg-dark: var(--surface-1);
  --card-fg-dark: var(--fg-on-surface);
  --card-border-dark: var(--border-on-surface);

  --card-bg-light: var(--surface-light);
  --card-fg-light: var(--fg-on-surface-light);
  --card-border-light: var(--border-on-surface-light);

  --chip-bg: rgba(255,255,255,0.08);
  --chip-fg: var(--fg-on-page);

  --input-bg: var(--surface-2);
  --input-fg: var(--fg-on-surface);
  --input-border: var(--border-on-surface);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);}

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: radial-gradient(60% 120% at 10% 0%, var(--bg-accent), transparent), var(--bg-page);
        padding: clamp(28px, 5vw, 80px) clamp(16px, 4vw, 40px);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 32px;
        grid-template-columns: 1.2fr .8fr;
        align-items: center;
    }

    .index-hero h1 {
        font-size: clamp(34px, 7vw, 80px);
        letter-spacing: -.02em;
        margin: 0 0 .3em;
        color: inherit;
        background: inherit;
    }

    .index-hero p {
        font-size: clamp(16px, 2.2vw, 22px);
        opacity: .9;
        margin: 0 0 1.1rem;
        color: inherit;
        background: inherit;
    }

    .index-hero .index-hero__btn {
        display: inline-block;
        padding: 1rem 1.3rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        box-shadow: var(--shadow-lg);
    }

    .index-hero .index-hero__right {
        display: grid;
        gap: 12px;
    }

    .index-hero .index-hero__right .badge {
        list-style: none;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: .85rem 1rem;
        box-shadow: var(--shadow-sm);
    }

        .index-hero .index-hero__right .badge {
            border: 1px solid var(--border-on-surface);
            border-radius: var(--radius-md);
            animation: section-pulse-border 3s var(--anim-ease) infinite;
        }

        @keyframes section-pulse-border {
            0%, 100% {
                border-color: var(--border-on-surface);
                box-shadow: none;
            }
            50% {
                border-color: var(--brand);
                box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
            }
        }

        @media (max-width: 767px) {
        .index-hero .index-hero__c {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

.index-cta {
        font-family: var(--font-family);
        color: white;
        padding: clamp(28px, 5vw, 72px) clamp(16px, 3vw, 40px);
        background: linear-gradient(120deg, var(--bg-primary), var(--bg-accent), var(--ring));
        background-size: 300% 300%;
        animation: gradientFlow 8s ease-in-out infinite;
    }
    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    .index-cta .index-cta__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-cta .index-cta__row {
        text-align: center;
    }

    .index-cta h2 {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .3rem;
    }

    .index-cta p {
        color: var(--fg-on-page);
        margin: 2rem 0;
    }

    .index-cta .index-cta__actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        text-decoration: none;
        padding: .85rem 1.2rem;
        border-radius: var(--radius-lg);
        transition: transform .2s;
        background: var(--bg-accent)
    }

    .index-cta .index-cta__btn.index-cta__primary {
        background: #fff;
        color: black;
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn.index-cta__ghost {
        border: 1px solid rgba(255, 255, 255, .5);
        color: var(--fg-on-page);
    }

    .index-cta .index-cta__btn:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__actions {
            flex-direction: column;
        }

        .index-cta .index-cta__btn {
            width: 100%;
            text-align: center;
        }
    }

.features--colored-v5 {
    font-family: var(--font-family);
    padding: 60px 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.features__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.features__header {
    text-align: center;
    margin-bottom: 24px;
}

.features__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.9;
    margin: 0 0 0.5rem;
}

.features__header h2 {
    margin: 0;
    font-size: clamp(24px,4vw,32px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.features__card {
    background: rgba(15,23,42,0.85);
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    border: 1px solid rgba(191,219,254,0.5);
}

.features__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--neutral-0);
}

.features__icon--success {
    background: var(--success);
}

.features__icon--warning {
    background: var(--warning);
}

.features__icon--danger {
    background: var(--danger);
}

.features__card h3 {
    margin: 0 0 4px;
}

.features__card p {
    margin: 0;
    font-size: 0.9rem;
}

.faq--light-v6 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.faq__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.faq__inner h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--fg-on-page);
}

.faq__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.faq__card {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
}

.faq__card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.faq__card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.post-list--colored-v5 {
    font-family: var(--font-family);
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.post-list__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.post-list__header {
    text-align: center;
    margin-bottom: 24px;
}

.post-list__header h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

.post-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

.post-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 16px;
}

.post-list__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.post-list__card--hot {
    border-color: var(--danger);
}
.post-list__card--new {
    border-color: var(--bg-primary);
}
.post-list__card--evergreen {
    border-color: var(--success);
}

.post-list__category {
    margin: 0 0 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bg-accent);
}

.post-list__card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.post-list__excerpt {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.post-list__meta {
    margin: 0;
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.support--light-v6 {
    font-family: var(--font-family);
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.support__inner {
    max-width: 640px;
    margin: 0 auto;
}

.support__inner h2 {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
}

.support__inner p {
    margin: 0 0 10px;
    color: var(--neutral-600);
}

.support__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.support__item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    transition:
            transform var(--anim-duration) var(--anim-ease),
            box-shadow var(--anim-duration) var(--anim-ease),
            background-color var(--anim-duration) var(--anim-ease);
}

    .support__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

.support__item-label {
    font-size: 0.9rem;
    color: var(--neutral-800);
    font-weight: 500;
}

.support__item-value {
    font-size: 0.9rem;
    color: var(--bg-primary);
    text-align: right;
}

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.post-item {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;
        font-family: var(--font-family);
    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.post-item {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;
        font-family: var(--font-family);
    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.articles--light-v6 {
    font-family: var(--font-family);
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.articles__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.articles__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

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

.articles__item {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

.articles__item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.articles__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.author {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .author .author__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .author .author__card {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        background: var(--surface-1);
        padding: clamp(32px, 5vw, 48px);
        border-radius: var(--radius-xl);
    }

    .author .author__image {
        width: clamp(140px, 20vw, 200px);
        height: clamp(140px, 20vw, 200px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-surface);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.5rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.article-list--colored-v5 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.article-list__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.article-list__header {
    margin-bottom: 20px;
}

.article-list__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.article-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

.article-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.article-list__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.article-list__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.article-list__card p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

.article-list__link {
    font-size: 0.85rem;
    color: var(--bg-accent);
    text-decoration: none;
}

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.contact-form {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .contact-form .c {
        max-width: min(820px, var(--max-w));
        margin: 0 auto;
    }

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-lg);
    }

    .contact-form .grid {
        display: grid;
        gap: 12px;
        grid-template-columns:1fr 1fr;
    }

    .contact-form .fl {
        position: relative;
    }

    .contact-form .fl input, .contact-form .fl textarea {
        width: 100%;
        padding: 1.1rem 1rem .9rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        box-sizing: border-box;
    }

    .contact-form .fl label {
        position: absolute;
        top: .95rem;
        left: 1rem;
        font-size: .95rem;
        color: var(--neutral-300);
        transition: .15s;
    }

    .contact-form .fl input:focus + label, .contact-form .fl input:not(:placeholder-shown) + label,
    .contact-form .fl textarea:focus + label, .contact-form .fl textarea:not(:placeholder-shown) + label {
        top: .35rem;
        font-size: .75rem;
        opacity: .8;
    }

    .contact-form .fl.wide textarea {
        min-height: 120px;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .9rem;
        color: var(--neutral-300);
    }

    .contact-form button {
        align-self: start;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .contact-form button:hover {
        background: var(--bg-primary-hover);
    }

    .contact-form .agree a {
        color: var(--link);
        text-decoration: none;
    }
    .contact-form .agree a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    @media (max-width: 767px) {
        .contact-form .grid {
            grid-template-columns: 1fr;
        }
    }

.contact-map {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .contact-map .c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-map .h {
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-map .h h2 {
        margin: 0 0 .5rem;
        font-size: clamp(22px, 4vw, 36px);
        color: black;
    }

    .contact-map .h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        margin-bottom: 2rem;
    }

    .contact-map .map-container iframe {
        display: block;
        width: 100%;
        height: 400px;
        border: 0;
    }

    .contact-map .info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-map .item {
        padding: 1rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
    }

    .contact-map .item strong {
        display: block;
        margin-bottom: .5rem;
        color: var(--fg-on-page);
        font-size: .95rem;
    }

    .contact-map .item p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .contact-map .info {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.policy-items {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .policy-items__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-items__h {
        text-align: center;
        margin-bottom: 3rem;
    }

    .policy-items__h h1 {
        margin: 0 0 .5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: var(--fg-on-page);
    }

    .policy-items__h p {
        margin: 0;
        font-size: var(--gap);
        color: var(--neutral-600);
    }

    .policy-items__items {
        display: grid;
        gap: 1.5rem;
    }

    .policy-items__item {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .policy-items__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .policy-items__marker {
        width: 8px;
        height: 8px;
        background: var(--fg-on-accent);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .policy-items__header h3 {
        margin: 0;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .policy-items__body p {
        margin: 0;
        font-size: 1rem;
        color: var(--fg-on-accent);
        opacity: .95;
        line-height: 1.7;
    }

    @media (max-width: 767px) {
        .policy-items__item {
            padding: 1.5rem;
        }
    }

.policy-contacts {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .policy-contacts__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-contacts .policy-contacts__mini {

        margin-bottom: 1rem;
        align-items: center;
    }

    .policy-contacts .policy-contacts__mini label:not(.policy-contacts__agree) {
        margin-top: var(--space-y);
        display: grid;
        gap: 6px;
        color: black;
        font-size: var(--space-x);
    }

    .policy-contacts .policy-contacts__mini input {
        padding: .7rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
    }

    .policy-contacts .policy-contacts__agree {
        display: flex;
        align-items: center;
        gap: .5rem;
        color: var(--neutral-600);
        margin: 1rem 0
    }

    .policy-contacts button {
        padding: .75rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
    }

    .policy-contacts .item {
        color: black
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.terms-items {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .terms-items__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .terms-items__h {
        text-align: center;
        margin-bottom: 3rem;
    }

    .terms-items__h h1 {
        margin: 0 0 .5rem;
        font-size: clamp(28px, 5vw, 48px);
    }

    .terms-items__h p {
        margin: 0;
        font-size: var(--gap);
        color: var(--neutral-600);
    }

    .terms-items__list {
        display: grid;
        gap: 2rem;
    }

    .terms-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .terms-items__num {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 1.25rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    .terms-items__content h3 {
        margin: 0 0 .75rem;
        font-size: clamp(18px, 3vw, 24px);
        color: var(--fg-on-page);
    }

    .terms-items__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .terms-items__item {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .terms-items__num {
            width: 2.5rem;
            height: 2.5rem;
            font-size: 1rem;
        }
    }

.index-cta {
        font-family: var(--font-family);
        color: white;
        padding: clamp(28px, 5vw, 72px) clamp(16px, 3vw, 40px);
        background: linear-gradient(120deg, var(--bg-primary), var(--bg-accent), var(--ring));
        background-size: 300% 300%;
        animation: gradientFlow 8s ease-in-out infinite;
    }
    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    .index-cta .index-cta__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-cta .index-cta__row {
        text-align: center;
    }

    .index-cta h2 {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .3rem;
    }

    .index-cta p {
        color: var(--fg-on-page);
        margin: 2rem 0;
    }

    .index-cta .index-cta__actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        text-decoration: none;
        padding: .85rem 1.2rem;
        border-radius: var(--radius-lg);
        transition: transform .2s;
        background: var(--bg-accent)
    }

    .index-cta .index-cta__btn.index-cta__primary {
        background: #fff;
        color: black;
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn.index-cta__ghost {
        border: 1px solid rgba(255, 255, 255, .5);
        color: var(--fg-on-page);
    }

    .index-cta .index-cta__btn:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__actions {
            flex-direction: column;
        }

        .index-cta .index-cta__btn {
            width: 100%;
            text-align: center;
        }
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thanks-light {
        font-family: var(--font-family);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(32px, 7vw, 80px) clamp(16px, 4vw, 56px);
    }

    .thanks-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .thanks-light__layout {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: clamp(20px, 4vw, 40px);
        align-items: center;
    }

    .thanks-light__content h1 {
        font-size: clamp(26px, 4.5vw, 38px);
        margin: 0 0 0.75rem;
    }

    .thanks-light__content p {
        margin: 0 0 1.75rem;
        opacity: 0.9;
    }

    .thanks-light__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .thanks-light__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.85rem 1.3rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease),
        color var(--anim-duration) var(--anim-ease),
        transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease);
    }

    .thanks-light__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }

    .thanks-light__btn--primary:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .thanks-light__btn--ghost {
        background: var(--btn-ghost-bg);
        color: var(--btn-ghost-fg);
        border: 1px solid var(--input-border);
    }

    .thanks-light__btn--ghost:hover {
        background: var(--btn-ghost-bg-hover);
        transform: translateY(-2px);
    }

    .thanks-light__panel {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-xl);
        padding: 1.5rem 1.7rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-on-surface);
    }

    .thanks-light__row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .thanks-light__row--muted {
        opacity: 0.8;
        font-size: 0.9rem;
    }

    @media (max-width: 767px) {
        .thanks-light__layout {
            grid-template-columns: minmax(0, 1fr);
        }

        .thanks-light__actions {
            flex-direction: column;
        }

        .thanks-light__btn {
            width: 100%;
            text-align: center;
        }
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.is-open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    margin-top: 4rem;
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        font-style: italic;
        margin-top: 1rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-copyright {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (min-width: 769px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.5rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all .2s;
        white-space: nowrap;
    }

    .cookie-banner__accept {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.not-found--light-v6 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.not-found__inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.not-found__code {
    font-size: clamp(56px, 16vw, 96px);
    font-weight: 700;
    color: var(--neutral-800);
}

.not-found__text {
    margin-top: 10px;
    color: var(--neutral-600);
}