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

  --max-w: 1200px;
  --space-x: 1.5rem;
  --space-y: 1.25rem;
  --gap: 1rem;

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

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);

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

  --brand: #0055A4;
  --brand-contrast: #FFFFFF;
  --accent: #FFD700;
  --accent-contrast: #000000;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: rgba(222, 226, 230, 0.8);

  --bg-primary: #0055A4;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004080;
  --ring: rgba(0, 85, 164, 0.3);

  --bg-accent: #FFF9E6;
  --fg-on-accent: #8B7500;
  --bg-accent-hover: #FFED4E;

  --success: #28A745;
  --success-contrast: #FFFFFF;
  --warning: #FFC107;
  --warning-contrast: #212529;
  --danger: #DC3545;
  --danger-contrast: #FFFFFF;

  --link: #0055A4;
  --link-hover: #004080;

  --gradient-hero: linear-gradient(135deg, #0055A4 0%, #003366 100%);
  --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFED4E 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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.index-hero {
        position: relative;
        font-family: var(--font-family);
        color: var(--fg-on-page);
        padding: clamp(48px, 8vw, 140px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

    .index-hero {
        background:
                repeating-linear-gradient(
                        45deg,
                        var(--bg-primary) 0px,
                        var(--fg-on-primary) 20px,
                        var(--bg-page) 20px,
                        var(--fg-on-page) 40px,
                        var(--bg-accent) 40px,
                        var(--fg-on-accent) 60px,
                        var(--ring) 60px
                );
        background-size: 200% 200%;
        animation: stripesMove 10s linear infinite;
    }

    @keyframes stripesMove {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 100% 100%;
        }
    }

    .index-hero .index-hero__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.05);
    }

    .index-hero .index-hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .index-hero .index-hero__c {
        position: relative;
        max-width: var(--max-w);
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.6);
        border-radius: var(--radius-lg);
        padding: var(--space-x);
    }

    .index-hero .index-hero__center {
        text-align: center;
        color: white;
    }

    .index-hero h1 {
        font-size: clamp(34px, 7vw, 84px);
        margin: .1em 0 .2em;
        color: inherit;
        background: inherit;
    }

    .index-hero p {
        max-width: 65ch;
        margin: 0 auto 1.2rem;
        color: inherit;
        background: inherit;
    }

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

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

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

    .index-features-v5 .index-features-v5__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-features-v5 .index-features-v5__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .index-features-v5 h2 {
        font-size: clamp(24px, 4vw, 30px);
        font-weight: 700;
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .index-features-v5 .index-features-v5__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .index-features-v5 .index-features-v5__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .index-features-v5 .index-features-v5__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .index-features-v5 .index-features-v5__card {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .index-features-v5 .index-features-v5__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .index-features-v5 .index-features-v5__icon {
        font-size: clamp(24px, 3vw, 48px);
        margin-bottom: 1rem;
        line-height: 1;
    }

    .index-features-v5 .index-features-v5__icon img {
        width: 48px;
        height: 48px;
    }

    .index-features-v5 h3 {
        font-size: clamp(18px, 2.2vw, 20px);
        font-weight: 600;
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .index-features-v5 p {
        font-size: clamp(14px, 1.8vw, 16px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .index-features-v5 .index-features-v5__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

.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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

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

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--card-bg-light);
        color: var(--fg-on-page);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .post-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .post-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

    .post-list p {
        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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.post-item {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        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-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .post-item .post-item__content {
        background: var(--surface-2);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: var(--line-height-base);
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
        border: 1px solid var(--border-on-surface);
    }

    .post-item .post-item__content h2 {
        color: var(--neutral-800);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .post-item .post-item__content p {
        margin-bottom: 1rem;
    }

    .post-item .post-item__comments {
        background: var(--surface-2);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

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

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

    .post-item .post-item__comment {
        background: var(--surface-1);
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
        color: var(--neutral-900);
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .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: 1px solid var(--input-border);
        background: var(--input-bg);
        color: var(--input-fg);
        outline: none;
        min-height: 100px;
        font-family: var(--font-family);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form textarea:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px var(--ring);
    }

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

    .post-item .post-item__reply-form button:hover {
        background: var(--btn-primary-bg-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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.post-item {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        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-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        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-page);
        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-page);
    }

    .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-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
    }

    .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: 1px solid var(--fg-on-page);
        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(--fg-on-page);
        color: var(--bg-page);
        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);
    }

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

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

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

.author__inner {
    max-width: 520px;
    margin: 0 auto;
}

.author__name {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.author__role {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.post-item {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        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-page);
    }

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

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

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

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

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

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

    .articles .articles__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .articles .articles__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .articles .articles__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 32px);
    }

    .articles .articles__item {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .articles .articles__image {
        width: 100%;
        height: 150px;
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
    }

    .articles .articles__content h3 a {
        color: var(--fg-on-surface);
        text-decoration: none;
    }

    .articles .articles__content h3 a:hover {
        color: var(--link-hover);
    }

    .articles .articles__content p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 0.75rem;
    }

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

    @media (max-width: 768px) {
        .articles .articles__item {
            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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .article-list .article-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

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

    .article-list .article-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .article-list .article-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .article-list .article-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .article-list .article-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .article-list .article-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .article-list .article-list__card {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .article-list .article-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .article-list .article-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .article-list .article-list__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .article-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .article-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .article-list h3 a:hover {
        color: var(--bg-primary);
    }

    .article-list p {
        color: var(--neutral-600);
        margin: 0.5rem 0 1rem;
    }

    .article-list .article-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .article-list .article-list__read-more:hover {
        text-decoration: underline;
    }

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

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

.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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

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

.form__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

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

.form__text {
    margin: 0 0 var(--space-y);
    color: var(--neutral-600);
}

.contact-form {
    text-align: left;
    margin-top: var(--space-y);
}

.form-group {
    margin-bottom: var(--space-y);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    background-color: var(--input-bg);
    color: var(--input-fg);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: border-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--input-placeholder);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--ring);
}

.form-error {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.form-submit {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.form-submit:hover {
    background-color: var(--btn-primary-bg-hover);
}

.form-note {
    margin-top: var(--space-y);
    font-size: 0.875rem;
    color: var(--neutral-600);
    text-align: center;
}

.form-note a {
    color: var(--link);
    text-decoration: underline;
}

.form-note a:hover {
    color: var(--link-hover);
}

.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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .policy-items h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

    .policy-items__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .policy-items__card {
        padding: 1.75rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .policy-items__card h3 {
        margin: 0 0 1rem;
        font-size: clamp(18px, 2.5vw, 22px);
        color: var(--fg-on-page);
    }

    .policy-items__text {
        font-size: .95rem;
        color: var(--neutral-600);
        line-height: 1.7;
    }

    @media (max-width: 1023px) {
        .policy-items__grid {
            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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .terms-items h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: var(--fg-on-page);
        text-align: center;
    }

    .terms-items__wrapper {
        display: grid;
        gap: 1.25rem;
    }

    .terms-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        align-items: start;
    }

    .terms-items__icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

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

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

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

.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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.thanks-light {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
    }

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

    .thanks-light__card {
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 4vw, 40px);
        box-shadow: var(--shadow-md);
        text-align: center;
        border: 1px solid var(--border-on-surface-light);
    }

    .thanks-light__mark {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: 1.6rem;
    }

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

    .thanks-light p {
        margin: 0 0 0.75rem;
        opacity: 0.9;
    }

    .thanks-light__note {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 2rem;
    }

    .thanks-light__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        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(--btn-primary-bg);
        color: var(--btn-primary-fg);
        box-shadow: var(--shadow-sm);
    }

    .thanks-light__btn--primary:hover {
        background: var(--btn-primary-bg-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);
    }

    @media (max-width: 767px) {
        .thanks-light__card {
            padding: 20px;
        }

        .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;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger-menu:hover {
    background-color: var(--bg-alt);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}
.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}
.nav-link[href*="index.html"]:hover {
    color: var(--brand);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem 2rem 2rem;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav[aria-hidden="false"] {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-sm);
    }
}

footer {
        background-color: #f5f5f5;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: #222;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #000;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #ccc;
        font-size: 0.9rem;
        color: #777;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        margin: 0 0.3rem;
    }
    .domain {
        font-weight: bold;
        color: #444;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.error-404 {
        font-family: var(--font-family);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: clamp(36px, 7vw, 80px) clamp(16px, 4vw, 56px);
    }

    .error-404__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .error-404__grid {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
    }

    .error-404__content h1 {
        font-size: clamp(30px, 5vw, 46px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-accent);
    }

    .error-404__content p {
        margin: 0 0 1.8rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
    }

    .error-404__eyebrow {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 0.5rem;
        opacity: 0.85;
    }

    .error-404__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .error-404__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .error-404__btn--primary:hover {
        transform: translateY(-2px);
        background: var(--bg-primary-hover);
    }

    .error-404__btn--ghost {
        background: rgba(255,255,255,0.08);
        color: var(--fg-on-accent);
        border: 1px solid rgba(255,255,255,0.4);
    }

    .error-404__btn--ghost:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.14);
    }

    .error-404__visual {
        display: flex;
        justify-content: center;
    }

    .error-404__bubble {
        position: relative;
        padding: 2.5rem 2rem;
        border-radius: 32px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        box-shadow: var(--shadow-lg);
        text-align: center;
        min-width: 220px;
    }

    .error-404__code {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 0.25rem;
    }

    .error-404__label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        opacity: 0.8;
    }

    .error-404__label {
        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 var(--accent);
        }
    }

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

        .error-404__actions {
            flex-direction: column;
        }

        .error-404__btn {
            width: 100%;
            text-align: center;
        }

        .error-404__visual {
            order: -1;
        }
    }