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

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

  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.375rem;

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

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 0.3s;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 1;

  --brand: #0066CC;
  --brand-contrast: #FFFFFF;
  --accent: #00A3FF;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8FAFC;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --bg-page: #FFFFFF;
  --fg-on-page: #0F172A;

  --bg-alt: #F8FAFC;
  --fg-on-alt: #1E293B;

  --surface-1: #FFFFFF;
  --surface-2: #F8FAFC;
  --fg-on-surface: #1E293B;
  --border-on-surface: #E2E8F0;

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #1E293B;
  --border-on-surface-light: rgba(226, 232, 240, 0.8);

  --bg-primary: #0066CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0055AA;
  --ring: rgba(0, 102, 204, 0.4);

  --bg-accent: rgba(0, 163, 255, 0.1);
  --fg-on-accent: #00A3FF;
  --bg-accent-hover: #0088D4;

  --success: #10B981;
  --success-contrast: #FFFFFF;
  --warning: #F59E0B;
  --warning-contrast: #FFFFFF;
  --danger: #EF4444;
  --danger-contrast: #FFFFFF;

  --link: #0066CC;
  --link-hover: #0055AA;

  --gradient-hero: linear-gradient(135deg, #0066CC 0%, #00A3FF 100%);
  --gradient-accent: linear-gradient(90deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 163, 255, 0.1) 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);}

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

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover,
    .header__logo:focus {
        color: var(--accent);
        outline: none;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    .header__nav {
        display: block;
    }

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

    .header__nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .header__nav-link:hover,
    .header__nav-link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
        outline: none;
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

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

        .header__nav[data-visible="true"] {
            right: 0;
        }

        .header__nav-list {
            flex-direction: column;
            gap: 1rem;
        }

        .header__nav-link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-lg);
        }
    }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  max-width: 300px;
}
.footer-nav ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .footer-social li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-social a:hover {
  color: #3498db;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        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;
        }
    }

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

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

    .contact-support .grid {
        display: grid;
        gap: var(--space-x);
    }

    .contact-support .card {
        display: block;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        text-decoration: none;
        color: inherit;
        box-shadow: var(--shadow-sm);
        transition: transform .2s;
    }
    .contact-support .card {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition:
                transform var(--anim-duration) var(--anim-ease),
                box-shadow var(--anim-duration) var(--anim-ease),
                background-color var(--anim-duration) var(--anim-ease);
    }

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

    .contact-support .card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

.subscribe--colored-v5 {
    font-family: var(--font-family);
    padding: 48px 20px;
    background: var(--gradient-accent);
    color: var(--accent-contrast);
}

.subscribe__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
    gap: 18px;
    align-items: center;
}

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

.subscribe__content p {
    margin: 0;
    opacity: 0.9;
}

.subscribe__form {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) auto;
    gap: 8px;
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-xl);
    padding: 6px 6px 6px 12px;
    border: 1px solid rgba(252,231,243,0.6);
}

.subscribe__form input {
    border: none;
    background: transparent;
    color: var(--accent-contrast);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.subscribe__form input::placeholder {
    color: rgba(254,242,242,0.8);
}

.subscribe__form button {
    border: none;
    border-radius: var(--radius-lg);
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--neutral-900);
    color: var(--neutral-0);
    cursor: pointer;
}

    .subscribe__form button {
        box-shadow: var(--shadow-sm);
        transition:
                transform var(--anim-duration) var(--anim-ease),
                box-shadow var(--anim-duration) var(--anim-ease),
                background-color var(--anim-duration) var(--anim-ease);
    }

    .subscribe__form button:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

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

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

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover,
    .header__logo:focus {
        color: var(--accent);
        outline: none;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    .header__nav {
        display: block;
    }

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

    .header__nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .header__nav-link:hover,
    .header__nav-link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
        outline: none;
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

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

        .header__nav[data-visible="true"] {
            right: 0;
        }

        .header__nav-list {
            flex-direction: column;
            gap: 1rem;
        }

        .header__nav-link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-lg);
        }
    }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  max-width: 300px;
}
.footer-nav ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .footer-social li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-social a:hover {
  color: #3498db;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

.advantages__header p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.advantages__card:hover {
    transform: scale(1.03);
    transition: 0.5s
}

.advantages__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(17,24,39,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

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

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

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

    .about-timeline .about-timeline__zig {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__zig .item {
        list-style: none;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

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

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover,
    .header__logo:focus {
        color: var(--accent);
        outline: none;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    .header__nav {
        display: block;
    }

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

    .header__nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .header__nav-link:hover,
    .header__nav-link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
        outline: none;
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

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

        .header__nav[data-visible="true"] {
            right: 0;
        }

        .header__nav-list {
            flex-direction: column;
            gap: 1rem;
        }

        .header__nav-link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-lg);
        }
    }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  max-width: 300px;
}
.footer-nav ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .footer-social li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-social a:hover {
  color: #3498db;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

    }

    .index-features {
        background: linear-gradient(45deg, var(--bg-primary) 0%, var(--bg-accent) 50%, var(--accent) 100%);
        background-size: 400% 400%;
        animation: gradientWave 8s ease infinite;
    }

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

    .index-features__h {
        margin-bottom: 2rem;
    }

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

    .index-features .index-features__steps {
        display: grid;
        gap: var(--space-x);
        counter-reset: step;
    }

    .index-features .index-features__steps .step {
        list-style: none;
        display: grid;
        grid-template-columns:auto 1fr;
        gap: 16px;
        align-items: start;
        background: var(--card-bg-dark);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

    .index-features .index-features__n {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .index-features h3 {
        margin: 0 0 .25rem;
    }

    .index-features p {
        margin: 0;
    }

    @media (max-width: 767px) {
        .index-features .index-features__steps .step {
            grid-template-columns: 1fr;
        }
    }

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__info h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

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

    @media (max-width: 768px) {
        .partners .partners__item {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover,
    .header__logo:focus {
        color: var(--accent);
        outline: none;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    .header__nav {
        display: block;
    }

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

    .header__nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .header__nav-link:hover,
    .header__nav-link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
        outline: none;
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

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

        .header__nav[data-visible="true"] {
            right: 0;
        }

        .header__nav-list {
            flex-direction: column;
            gap: 1rem;
        }

        .header__nav-link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-lg);
        }
    }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  max-width: 300px;
}
.footer-nav ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .footer-social li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-social a:hover {
  color: #3498db;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

    .contact-map .h h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

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

    .contact-map .content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

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

    .contact-map .info-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.5vw, 28px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .info-card h3 {
        margin: 0 0 1.5rem;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .contact-map .items {
        display: grid;
        gap: 1.5rem;
    }

    .contact-map .item {
        display: grid;
        gap: .5rem;
    }

    .contact-map .item strong {
        display: block;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-map .item span {
        display: block;
        font-size: 1.05rem;
        color: var(--fg-on-accent);
    }

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

.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 32px;
    color: var(--neutral-600);
}

.contact-form {
    text-align: left;
    margin-bottom: 24px;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    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-sizing: border-box;
}

.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-textarea {
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 14px 24px;
    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: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.form-note {
    font-size: 14px;
    color: var(--neutral-600);
    margin-top: 16px;
    line-height: 1.5;
}

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

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

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

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover,
    .header__logo:focus {
        color: var(--accent);
        outline: none;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    .header__nav {
        display: block;
    }

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

    .header__nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .header__nav-link:hover,
    .header__nav-link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
        outline: none;
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

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

        .header__nav[data-visible="true"] {
            right: 0;
        }

        .header__nav-list {
            flex-direction: column;
            gap: 1rem;
        }

        .header__nav-link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-lg);
        }
    }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  max-width: 300px;
}
.footer-nav ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .footer-social li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-social a:hover {
  color: #3498db;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.policy-items {
        font-family: var(--font-family);
        background: #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;
        }
    }

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

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

    .contacts .contacts__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: .6rem;
    }

    .contacts .contacts__list .item {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid var(--ring);
        padding: .6rem 0;
    }

    .contacts .contacts__list .item {
        position: relative;
    }

    .contacts .contacts__list .item::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--gradient-hero);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contacts .contacts__list .item:hover::after {
        transform: scaleX(1);
    }

    .contacts .contacts__list .item a {
        color: var(--link);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .contacts .contacts__list .item a:hover {
        color: var(--link-hover);
    }

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

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover,
    .header__logo:focus {
        color: var(--accent);
        outline: none;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    .header__nav {
        display: block;
    }

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

    .header__nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .header__nav-link:hover,
    .header__nav-link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
        outline: none;
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

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

        .header__nav[data-visible="true"] {
            right: 0;
        }

        .header__nav-list {
            flex-direction: column;
            gap: 1rem;
        }

        .header__nav-link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-lg);
        }
    }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  max-width: 300px;
}
.footer-nav ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .footer-social li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-social a:hover {
  color: #3498db;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .index-faq .index-faq__acc {
        display: grid;
        gap: 1rem;
    }

    .index-faq .index-faq__it {
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        background: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-faq summary {
        cursor: pointer;
        padding: 1rem 1.1rem;
        font-weight: 600;
        color: var(--bg-page);
        font-size: 22px;
    }

    .index-faq .index-faq__a {
        padding: 0 1.1rem 1rem;
        color: var(--bg-page);

    }

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

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover,
    .header__logo:focus {
        color: var(--accent);
        outline: none;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    .header__nav {
        display: block;
    }

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

    .header__nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .header__nav-link:hover,
    .header__nav-link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
        outline: none;
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

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

        .header__nav[data-visible="true"] {
            right: 0;
        }

        .header__nav-list {
            flex-direction: column;
            gap: 1rem;
        }

        .header__nav-link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-lg);
        }
    }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  max-width: 300px;
}
.footer-nav ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .footer-social li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-social a:hover {
  color: #3498db;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .thanks-light__panel a {
        color: var(--link);
        text-decoration: none;
    }

    .thanks-light__panel a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

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

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

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

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

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .header__logo:hover,
    .header__logo:focus {
        color: var(--accent);
        outline: none;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    .header__nav {
        display: block;
    }

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

    .header__nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .header__nav-link:hover,
    .header__nav-link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
        outline: none;
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }

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

        .header__nav[data-visible="true"] {
            right: 0;
        }

        .header__nav-list {
            flex-direction: column;
            gap: 1rem;
        }

        .header__nav-link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-lg);
        }
    }

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  max-width: 300px;
}
.footer-nav ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .footer-social li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-social a:hover {
  color: #3498db;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

    .error-404-light__bubble {
        width: 210px;
        height: 210px;
        border-radius: 50%;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .error-404-light__code {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0.16em;
    }

    .error-404-light__text {
        margin-top: 0.4rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.7;
    }

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

    .error-404-light__content p {
        margin: 0 0 1.75rem;
        color: var(--fg-on-alt);
        opacity: 0.9;
    }

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

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

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

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

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

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

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

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

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

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