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

  --max-w: 1200px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

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

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 300ms;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 1;

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #7c3aed;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #f8fafc;
  --fg-on-page: #0f172a;

  --bg-alt: #ffffff;
  --fg-on-alt: #1e293b;

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

  --surface-light: #ffffff;
  --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: #f5f3ff;
  --fg-on-accent: #4c1d95;
  --bg-accent-hover: #6d28d9;

  --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, #2563eb 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);

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

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

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

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

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

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

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

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

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

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-sm);
    background-color: transparent;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
}

.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 h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-logo {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.hero--colored-v5 {
    font-family: var(--font-family);
    padding: 96px 20px;
    background: var(--gradient-accent);
    color: var(--brand);
    text-align: center;
}

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

.hero__eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.9;
    margin: 0 0 0.5rem;
    color: var(--neutral-0);
}

.hero__title {
    margin: 0 0 8px;
    font-size: clamp(28px, 5vw, 40px);
    color: var(--neutral-0);
}

.hero__subtitle {
    margin: 0 0 20px;
    color: rgba(249,250,251,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

    .hero__btn {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition:
            transform var(--anim-duration) var(--anim-ease),
            box-shadow var(--anim-duration) var(--anim-ease),
            background-color var(--anim-duration) var(--anim-ease);
    }

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

.hero__btn--primary {
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.hero__btn--ghost {
    background: transparent;
    color: var(--fg-on-primary);
    border: 1px solid rgba(191,219,254,0.9);
}

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: #fff;
        padding: clamp(24px, 4vw, 64px) clamp(16px, 3vw, 40px);
    }

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

    .index-cta .index-cta__cta {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 3vw, 28px);
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        text-align: center;
    }

    .index-cta .index-cta__btn:hover {
        background: var(--bg-primary-hover);
    }

    .index-cta h3 {
        margin: 0 0 .25rem;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        color: var(--neutral-900);
        line-height: 1.2;
    }

    .index-cta p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        max-width: 90%;
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__cta {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .index-cta p {
            max-width: 100%;
            margin-bottom: var(--gap);
        }
    }

.subscribe {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
    }

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

    .subscribe .subscribe__wrapper {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: clamp(40px, 6vw, 64px);
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .subscribe .subscribe__wrapper > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .subscribe .subscribe__wrapper {
            grid-template-columns: 1fr;
        }
    }

    .subscribe .subscribe__content {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .subscribe .subscribe__badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: fit-content;
        margin-bottom: 0.5rem;
    }

    .subscribe h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0;
        color: var(--fg-on-primary);
        font-weight: 700;
        line-height: 1.1;
    }

    .subscribe .subscribe__content p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
        line-height: 1.6;
    }

    .subscribe .subscribe__form {
        margin: clamp(8px, 1.5vw, 16px) 0;
    }

    .subscribe .subscribe__input-wrapper {
        display: flex;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        padding: 0.5rem;
        backdrop-filter: blur(8px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .subscribe .subscribe__input-wrapper:focus-within {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.25);
    }

    .subscribe .subscribe__input-wrapper input {
        flex: 1;
        padding: 0.875rem 1.25rem;
        border: none;
        background: transparent;
        color: var(--fg-on-primary);
        font-size: 1rem;
        outline: none;
        min-width: 0;
    }

    .subscribe .subscribe__input-wrapper input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .subscribe .subscribe__input-wrapper button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .subscribe .subscribe__input-wrapper button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .subscribe .subscribe__features {
        display: flex;
        gap: clamp(16px, 2.5vw, 24px);
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .subscribe .subscribe__features > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .subscribe .subscribe__feature {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .subscribe .subscribe__illustration {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
    }

    .subscribe .subscribe__icon {
        font-size: clamp(80px, 12vw, 120px);
        opacity: 0.3;
        line-height: 1;
    }

    .subscribe .subscribe__illustration {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
        transition:
                transform var(--anim-duration) var(--anim-ease),
                box-shadow var(--anim-duration) var(--anim-ease),
                background-color var(--anim-duration) var(--anim-ease);
    }

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

    @media (max-width: 767px) {
        .subscribe .subscribe__input-wrapper {
            flex-direction: column;
        }

        .subscribe .subscribe__input-wrapper button {
            width: 100%;
        }
    }

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

    .index-features h2 {
        color: var(--bg-primary)
    }

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

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

    .index-features .index-features__feat {
        border: 1px dashed var(--ring);
        border-radius: var(--radius-md);
        padding: clamp(12px, 2vw, 20px);
        background: var(--bg-page);
    }

    .index-features .index-features__badge {
        background: var(--bg-accent);
        color: var(--neutral-600);
        border-radius: 999px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 1rem;
    }

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

    .index-features p {
        color: var(--neutral-600);
    }

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

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

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

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

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-sm);
    background-color: transparent;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
}

.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 h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-logo {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .about-mission .about-mission__cards {
        display: grid;
        gap: var(--space-x);
    }

    .about-mission .about-mission__card {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-on-surface);
    }

    .about-mission .about-mission__card h4 {
        color: var(--brand);
        margin-bottom: var(--gap);
        font-size: 1.25rem;
    }

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

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

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

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

.timeline__list--light {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.timeline__row:first-child {
    border-top: none;
}

.timeline__row-time {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

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

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

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

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

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

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

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 14px;
}

.team__member {
    text-align: center;
    border-radius: var(--radius-xl);
    padding: 14px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.team__avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-primary);
}

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

.team__member h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.team__role {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

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

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

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

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-sm);
    background-color: transparent;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
}

.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 h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-logo {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

    .index-features h2 {
        color: var(--bg-primary)
    }

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

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

    .index-features .index-features__feat {
        border: 1px dashed var(--ring);
        border-radius: var(--radius-md);
        padding: clamp(12px, 2vw, 20px);
        background: var(--bg-page);
    }

    .index-features .index-features__badge {
        background: var(--bg-accent);
        color: var(--neutral-600);
        border-radius: 999px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 1rem;
    }

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

    .index-features p {
        color: var(--neutral-600);
    }

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

.advantages {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-alt);
        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(32px, 5vw, 48px);
    }

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

    .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(250px, 1fr));
        gap: clamp(24px, 4vw, 40px);
    }

    .advantages .advantages__item {
        text-align: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .advantages .advantages__icon {
        font-size: clamp(48px, 8vw, 80px);
        margin: 0 auto clamp(16px, 3vw, 24px);
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

    .advantages .advantages__item p {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

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

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

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

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-sm);
    background-color: transparent;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
}

.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 h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-logo {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

    @keyframes scan {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

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

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

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

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-sm);
    }

    .contact-form .row {
        display: grid;
        gap: 6px;
    }

    .contact-form label {
        font-size: .9rem;
        opacity: .85;
    }

    .contact-form input:not([type="checkbox"]), .contact-form textarea {
        width: 100%;
        padding: .85rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        transition: box-shadow .2s, transform .15s;
        box-sizing: border-box;
    }

    .contact-form input:focus, .contact-form textarea:focus {
        box-shadow: 0 0 0 3px var(--bg-accent);
        transform: translateY(-1px);
        outline: none;
    }

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

    .contact-form button {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        transition: transform .2s;
    }

    .contact-form button:hover {
        transform: translateY(-2px);
    }

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

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

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

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

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

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

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

.support__card--priority {
    border-color: var(--danger);
}

.support__card--standard {
    border-color: var(--success);
}

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

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

.support__label {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-sm);
    background-color: transparent;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
}

.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 h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-logo {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-sm);
    background-color: transparent;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
}

.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 h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-logo {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-sm);
    background-color: transparent;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
}

.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 h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-logo {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

    .thanks__chip {
        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: 0.75rem;
    }

    .thanks__content h1 {
        font-size: clamp(26px, 4.5vw, 40px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
    }

    .thanks__content p {
        margin: 0 0 1.75rem;
        opacity: 0.9;
    }

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

    .thanks__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__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: var(--shadow-md);
    }

    .thanks__btn--primary:hover {
        transform: translateY(-2px);
    }

    .thanks__btn--ghost {
        background: transparent;
        color: var(--fg-on-primary);
        border: 1px solid rgba(0,0,0,0.12);
    }

    .thanks__btn--ghost:hover {
        background: rgba(0,0,0,0.04);
        transform: translateY(-2px);
    }

    .thanks__side {
        display: flex;
        justify-content: center;
    }

    .thanks__card {
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        padding: 1.4rem 1.6rem;
        box-shadow: var(--shadow-lg);
        min-width: 240px;
    }

    .thanks__label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        margin-bottom: 0.75rem;
        opacity: 0.7;
    }

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

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

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

        .thanks__actions {
            flex-direction: column;
        }

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

        .thanks__side {
            order: -1;
        }
    }

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

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

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

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

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

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-sm);
    background-color: transparent;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -6px;
}

.menu-toggle-icon::after {
    bottom: -6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }
}

.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 h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav, .social-links {
        list-style: none;
        padding: 0;
    }
    .footer-nav li, .social-links li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a, .social-links a, .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover, .social-links a:hover, .footer-bottom a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #4a6572;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-logo {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

    .error-404-light__code {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

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

    .error-404-light p {
        margin: 0 0 2rem;
        color: var(--fg-on-surface-light);
        opacity: 0.9;
    }

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

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

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

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

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

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

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

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

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