:root {
  --font-family: "Lato", 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: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.5rem;

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

  --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: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #10b981;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --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: #f1f5f9;
  --fg-on-surface: #0f172a;
  --border-on-surface: #e2e8f0;

  --surface-light: #f8fafc;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #d1fae5;
  --fg-on-accent: #065f46;
  --bg-accent-hover: #34d399;

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

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 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: 100;
        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 {
        color: var(--accent);
    }

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

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

    .header__nav {
        display: block;
    }

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

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

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

    @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 var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 1.2) var(--space-x);
            border-radius: var(--radius-lg);
            background-color: var(--surface-light);
        }

        .burger__line:nth-child(1) {
            transform-origin: 0% 0%;
        }
        .burger__line:nth-child(3) {
            transform-origin: 0% 100%;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(1px, -1px);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 1px);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        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 {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-top: 0;
    }

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

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

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

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

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

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

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
    }

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

        .footer-section {
            align-items: flex-start;
        }

        .social-links {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

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

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .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: var(--fg-on-page);
        background: linear-gradient(120deg, var(--bg-primary), var(--fg-on-accent), var(--ring));
        padding: clamp(28px, 5vw, 80px) clamp(16px, 3vw, 40px);
        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__stack {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-cta .index-cta__stack .stack {
        list-style: none;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 22px);
        box-shadow: var(--shadow-sm);
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        margin-top: .6rem;
        background: #fff;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-900);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }
    .index-cta .index-cta__btn:hover {
        background-color: var(--neutral-100);
        transform: translateY(-2px);
    }

    .index-cta .stack h5 {
        color: var(--neutral-0);
        margin-bottom: var(--gap);
        font-size: 1.25rem;
    }
    .index-cta .stack p {
        color: var(--neutral-100);
        line-height: var(--line-height-base);
    }

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

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

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

.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: 100;
        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 {
        color: var(--accent);
    }

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

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

    .header__nav {
        display: block;
    }

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

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

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

    @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 var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 1.2) var(--space-x);
            border-radius: var(--radius-lg);
            background-color: var(--surface-light);
        }

        .burger__line:nth-child(1) {
            transform-origin: 0% 0%;
        }
        .burger__line:nth-child(3) {
            transform-origin: 0% 100%;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(1px, -1px);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 1px);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        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 {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-top: 0;
    }

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

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

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

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

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

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

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
    }

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

        .footer-section {
            align-items: flex-start;
        }

        .social-links {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

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

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

    .our-story .our-story__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .our-story .our-story__header {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .our-story .our-story__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.25rem;
    }

    @media (max-width: 768px) {
        .our-story .our-story__content {
            grid-template-columns: 1fr;
        }
    }

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

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

    .advantages .advantages__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
    }

    .advantages .advantages__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

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

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

    .advantages .advantages__item {
        display: flex;
        gap: clamp(20px, 3vw, 28px);
        align-items: flex-start;
    }

    .advantages .advantages__icon {
        font-size: clamp(40px, 7vw, 64px);
        flex-shrink: 0;
        width: clamp(70px, 11vw, 100px);
        height: clamp(70px, 11vw, 100px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: var(--radius-lg);
    }

    .advantages .advantages__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-surface-light);
    }

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

.mission--colored-v5 {
    font-family: var(--font-family);
    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

.mission__title {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.mission__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.mission__pillar--impact {
    border-color: var(--success);
}

.mission__pillar--safety {
    border-color: var(--warning);
}

.mission__pillar--focus {
    border-color: var(--bg-primary);
}

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

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

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

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

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

    .about-team .about-team__grid {
        display: grid;
        gap: var(--space-x);
        text-align: center;
    }

    .about-team .about-team__cell img {
        width: 96px;
        height: 96px;
        border-radius: 999px;
        object-fit: cover;
        margin: 0 auto .5rem;
        box-shadow: var(--shadow-sm);
    }

    .about-team .about-team__cell {
        background-color: var(--bg-page);
        border: 1px solid var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: 2rem 1rem;
        box-shadow: var(--shadow-sm);
    }

    .about-team .about-team__cell p {
        margin: .1rem 0 0;
        color: var(--neutral-600);
    }

    .about-team__cell h4 {
        color: var(--fg-on-page)
    }

    @media (max-width: 767px) {
        .about-team .about-team__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

.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: 100;
        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 {
        color: var(--accent);
    }

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

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

    .header__nav {
        display: block;
    }

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

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

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

    @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 var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 1.2) var(--space-x);
            border-radius: var(--radius-lg);
            background-color: var(--surface-light);
        }

        .burger__line:nth-child(1) {
            transform-origin: 0% 0%;
        }
        .burger__line:nth-child(3) {
            transform-origin: 0% 100%;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(1px, -1px);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 1px);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        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 {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-top: 0;
    }

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

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

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

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

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

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

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
    }

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

        .footer-section {
            align-items: flex-start;
        }

        .social-links {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

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

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

.partners__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.partners__chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    font-size: 0.85rem;
    color: var(--neutral-800);
}

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

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

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

.pricing__header h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--neutral-900);
}

.pricing__header p {
    margin: 0;
    opacity: 0.9;
    color: var(--neutral-600);
}

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

.pricing__card {
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    background: rgba(15,23,42,0.92);
    border: 1px solid rgba(191,219,254,0.7);
    color: var(--neutral-100);
}

.pricing__card--pro {
    border-color: var(--success);
}
.pricing__card--enterprise {
    border-color: var(--warning);
}

.pricing__name {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--neutral-0);
}

.pricing__price {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand);
}

.pricing__desc {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--neutral-300);
}

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

.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: 100;
        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 {
        color: var(--accent);
    }

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

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

    .header__nav {
        display: block;
    }

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

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

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

    @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 var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 1.2) var(--space-x);
            border-radius: var(--radius-lg);
            background-color: var(--surface-light);
        }

        .burger__line:nth-child(1) {
            transform-origin: 0% 0%;
        }
        .burger__line:nth-child(3) {
            transform-origin: 0% 100%;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(1px, -1px);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 1px);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        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 {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-top: 0;
    }

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

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

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

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

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

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

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
    }

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

        .footer-section {
            align-items: flex-start;
        }

        .social-links {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

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

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    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(--ring);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    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-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    margin-top: var(--gap);
}

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

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

.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: 100;
        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 {
        color: var(--accent);
    }

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

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

    .header__nav {
        display: block;
    }

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

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

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

    @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 var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 1.2) var(--space-x);
            border-radius: var(--radius-lg);
            background-color: var(--surface-light);
        }

        .burger__line:nth-child(1) {
            transform-origin: 0% 0%;
        }
        .burger__line:nth-child(3) {
            transform-origin: 0% 100%;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(1px, -1px);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 1px);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        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 {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-top: 0;
    }

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

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

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

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

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

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

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
    }

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

        .footer-section {
            align-items: flex-start;
        }

        .social-links {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

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

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .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__h {
        text-align: center;
        margin-bottom: 3rem;
    }

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

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

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

    .policy-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
    }

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

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

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

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

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

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

.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: 100;
        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 {
        color: var(--accent);
    }

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

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

    .header__nav {
        display: block;
    }

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

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

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

    @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 var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 1.2) var(--space-x);
            border-radius: var(--radius-lg);
            background-color: var(--surface-light);
        }

        .burger__line:nth-child(1) {
            transform-origin: 0% 0%;
        }
        .burger__line:nth-child(3) {
            transform-origin: 0% 100%;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(1px, -1px);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 1px);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        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 {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-top: 0;
    }

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

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

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

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

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

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

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
    }

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

        .footer-section {
            align-items: flex-start;
        }

        .social-links {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

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

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

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

.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: 100;
        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 {
        color: var(--accent);
    }

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

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

    .header__nav {
        display: block;
    }

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

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

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

    @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 var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 1.2) var(--space-x);
            border-radius: var(--radius-lg);
            background-color: var(--surface-light);
        }

        .burger__line:nth-child(1) {
            transform-origin: 0% 0%;
        }
        .burger__line:nth-child(3) {
            transform-origin: 0% 100%;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(1px, -1px);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 1px);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        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 {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-top: 0;
    }

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

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

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

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

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

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

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
    }

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

        .footer-section {
            align-items: flex-start;
        }

        .social-links {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

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

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 100;
        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 {
        color: var(--accent);
    }

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

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

    .header__nav {
        display: block;
    }

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

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

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

    @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 var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
        }

        .nav__link {
            display: block;
            padding: calc(var(--space-y) * 1.2) var(--space-x);
            border-radius: var(--radius-lg);
            background-color: var(--surface-light);
        }

        .burger__line:nth-child(1) {
            transform-origin: 0% 0%;
        }
        .burger__line:nth-child(3) {
            transform-origin: 0% 100%;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(1px, -1px);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 1px);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        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 {
        display: flex;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-top: 0;
    }

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

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

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

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

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

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

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        opacity: 0.7;
    }

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

        .footer-section {
            align-items: flex-start;
        }

        .social-links {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

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

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.error-404 {
        font-family: var(--font-family);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
    }

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

    .error-404__badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 999px;
        background: var(--chip-bg);
        color: var(--chip-fg);
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .error-404 h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.5rem;
    }

    .error-404__subtitle {
        margin: 0 0 2rem;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        color: var(--neutral-100);
    }

    .error-404__code {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        letter-spacing: 0.1em;
        margin-bottom: 2.5rem;
        box-shadow: var(--shadow-md);
    }

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

    .error-404__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.9rem 1.4rem;
        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(--fg-on-accent);
        color: var(--bg-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

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

    @media (max-width: 767px) {
        .error-404__actions {
            flex-direction: column;
        }

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