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

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

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

  --shadow-sm: 0 2px 8px rgba(0, 230, 255, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 230, 255, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 230, 255, 0.2);

  --overlay: rgba(5, 15, 25, 0.85);
  --anim-duration: 0.3s;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 2;

  --brand: #00e6ff;
  --brand-contrast: #050f19;
  --accent: #00e6ff;
  --accent-contrast: #050f19;

  --neutral-0: #ffffff;
  --neutral-100: #f0f5fa;
  --neutral-300: #a0b8d0;
  --neutral-600: #4a5c70;
  --neutral-800: #1a2530;
  --neutral-900: #050f19;

  --bg-page: #050f19;
  --fg-on-page: #f0f5fa;

  --bg-alt: #0a1726;
  --fg-on-alt: #e0edff;

  --surface-1: #0a1726;
  --surface-2: #101f30;
  --fg-on-surface: #e0edff;
  --border-on-surface: rgba(0, 230, 255, 0.15);

  --surface-light: rgba(240, 245, 250, 0.05);
  --fg-on-surface-light: #f0f5fa;
  --border-on-surface-light: rgba(240, 245, 250, 0.1);

  --bg-primary: #00e6ff;
  --fg-on-primary: #050f19;
  --bg-primary-hover: #33ebff;
  --ring: #00e6ff;

  --bg-accent: rgba(0, 230, 255, 0.1);
  --fg-on-accent: #00e6ff;
  --bg-accent-hover: rgba(0, 230, 255, 0.15);

  --success: #00ffaa;
  --success-contrast: #050f19;
  --warning: #ffcc00;
  --warning-contrast: #050f19;
  --danger: #ff3366;
  --danger-contrast: #ffffff;

  --link: #00e6ff;
  --link-hover: #33ebff;

  --gradient-hero: linear-gradient(135deg, #050f19 0%, #0a1a2d 50%, #102540 100%);
  --gradient-accent: linear-gradient(90deg, #00e6ff 0%, #00a3cc 100%);

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

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

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

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

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

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

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

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

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

.header__logo:hover {
    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: 1001;
}

.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: 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: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: 0.75rem 1.5rem;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', system-ui, 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-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

    .footer-nav a,
    .social-links a,
    .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

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

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    address a {
        color: #ecf0f1;
        text-decoration: none;
    }

    address a:hover {
        text-decoration: underline;
    }

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

    .footer-bottom a {
        margin: 0 0.5rem;
    }

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

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

        .footer-nav,
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-nav li,
        .social-links li {
            margin-bottom: 0;
        }

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

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

        .footer-nav,
        .social-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

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

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

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

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

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

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

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

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

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        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(--surface-1);
        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: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .index-cta h3 {
        margin: 0 0 .25rem;
        color: var(--fg-on-surface);
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .index-cta p {
        margin: 0;
        color: var(--neutral-300);
        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%;
        }
    }

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

    /* Si randomNumber est pair (2) - le premier enfant obtient 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;
    }

    /* Si randomNumber est pair (2) - le premier enfant obtient 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%;
        }
    }

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

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

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

.header__logo:hover {
    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: 1001;
}

.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: 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: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: 0.75rem 1.5rem;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', system-ui, 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-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

    .footer-nav a,
    .social-links a,
    .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

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

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    address a {
        color: #ecf0f1;
        text-decoration: none;
    }

    address a:hover {
        text-decoration: underline;
    }

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

    .footer-bottom a {
        margin: 0 0.5rem;
    }

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

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

        .footer-nav,
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-nav li,
        .social-links li {
            margin-bottom: 0;
        }

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

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

        .footer-nav,
        .social-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

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

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

    .about-timeline .about-timeline__tl .timeline {
        list-style: none;
        border-left: 3px solid var(--bg-primary);
        padding: .4rem .6rem .4rem 1rem;
        background: var(--surface-1);
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .about-timeline .about-timeline__tl .timeline:hover {
        background: var(--surface-2);
    }

    .about-timeline time {
        display: block;
        font-weight: 700;
        color: var(--brand);
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .about-timeline h4 {
        color: var(--fg-on-page);
        margin: 0 0 0.5rem 0;
        font-size: 1.25rem;
    }

    .about-timeline p {
        margin: .25rem 0 0;
        color: var(--neutral-300);
        line-height: var(--line-height-base);
    }

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

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

    .about-mission .about-mission__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-mission figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .about-mission p {
        color: rgba(255, 255, 255, .9);
    }

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

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

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

.advantages__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--fg-on-page);
}

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

.advantages__item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 8px 12px;
    border: 1px solid var(--border-on-surface-light);
}

.advantages__bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--bg-primary);
}

.advantages__label {
    font-size: 0.95rem;
    color: var(--neutral-800);
}

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

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

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

.header__logo:hover {
    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: 1001;
}

.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: 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: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: 0.75rem 1.5rem;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', system-ui, 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-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

    .footer-nav a,
    .social-links a,
    .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

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

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    address a {
        color: #ecf0f1;
        text-decoration: none;
    }

    address a:hover {
        text-decoration: underline;
    }

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

    .footer-bottom a {
        margin: 0 0.5rem;
    }

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

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

        .footer-nav,
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-nav li,
        .social-links li {
            margin-bottom: 0;
        }

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

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

        .footer-nav,
        .social-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

    .services-pricing .services-pricing__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .services-pricing .services-pricing__toggle {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .services-pricing .services-pricing__toggle button {
        padding: .6rem .9rem;
        border-radius: 999px;
        border: 1px solid var(--ring);
        background: var(--bg-page);
        cursor: pointer;
    }

    .services-pricing .services-pricing__toggle .services-pricing__on {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .services-pricing .services-pricing__plans {
        display: grid;
        gap: var(--space-x);
    }

    .services-pricing .services-pricing__plan {
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        background: var(--bg-page);
        box-shadow: var(--shadow-sm);
        text-align: center;
    }

    .services-pricing__price {
        font-size: calc(var(--font-size-base) * 2);
        margin-bottom: 1rem;
    }

    .services-pricing .services-pricing__btn {
        display: inline-block;
        margin-top: .6rem;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .services-pricing .services-pricing__btn {
        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);
    }

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

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

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

    .services-process .services-process__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .services-process .services-process__steps {
        display: grid;
        gap: var(--space-x);
        counter-reset: step;
    }

    .services-process .services-process__steps .services-process__step {
        list-style: none;
        position: relative;
        background: var(--card-bg-dark);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .services-process .services-process__steps li:last-child::after {
        display: none;
    }

    .services-process .services-process__n {
        display: inline-grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        margin-bottom: .4rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header__logo:hover {
    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: 1001;
}

.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: 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: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: 0.75rem 1.5rem;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', system-ui, 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-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

    .footer-nav a,
    .social-links a,
    .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

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

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    address a {
        color: #ecf0f1;
        text-decoration: none;
    }

    address a:hover {
        text-decoration: underline;
    }

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

    .footer-bottom a {
        margin: 0 0.5rem;
    }

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

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

        .footer-nav,
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-nav li,
        .social-links li {
            margin-bottom: 0;
        }

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

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

        .footer-nav,
        .social-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

.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 .layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }

    .contact-map .map-wrapper h3,
    .contact-map .details h3 {
        margin: 0 0 1rem;
        font-size: clamp(20px, 3vw, 28px);
        color: black;
    }

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

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

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

    .contact-map .list {
        display: grid;
        gap: 1.25rem;
    }

    .contact-map .entry {
        display: grid;
        gap: .4rem;
    }

    .contact-map .label {
        font-size: .85rem;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .contact-map .value {
        font-size: 1rem;
        color: var(--fg-on-page);
    }

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

@keyframes pulseIn {
        from {
            transform: scale(.98);
            opacity: .6
        }
        to {
            transform: scale(1);
            opacity: 1
        }
    }

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

    .contact-form .c {
        max-width: 720px;
        margin: 0 auto;
    }

    .contact-form .glass {
        display: grid;
        gap: 12px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
    }

    .contact-form label {
        display: grid;
        gap: 6px;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-form input, .contact-form textarea {
        padding: .8rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .9);
        color: #000;
        box-sizing: border-box;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .contact-form .submit {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: #fff;
        color: var(--bg-page);
        border: 0;
        animation: pulseIn .35s ease;
    }

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

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

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

.header__logo:hover {
    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: 1001;
}

.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: 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: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: 0.75rem 1.5rem;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', system-ui, 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-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

    .footer-nav a,
    .social-links a,
    .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

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

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    address a {
        color: #ecf0f1;
        text-decoration: none;
    }

    address a:hover {
        text-decoration: underline;
    }

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

    .footer-bottom a {
        margin: 0 0.5rem;
    }

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

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

        .footer-nav,
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-nav li,
        .social-links li {
            margin-bottom: 0;
        }

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

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

        .footer-nav,
        .social-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .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 h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

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

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

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

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

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

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

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

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

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

.header__logo:hover {
    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: 1001;
}

.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: 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: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: 0.75rem 1.5rem;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', system-ui, 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-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

    .footer-nav a,
    .social-links a,
    .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

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

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    address a {
        color: #ecf0f1;
        text-decoration: none;
    }

    address a:hover {
        text-decoration: underline;
    }

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

    .footer-bottom a {
        margin: 0 0.5rem;
    }

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

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

        .footer-nav,
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-nav li,
        .social-links li {
            margin-bottom: 0;
        }

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

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

        .footer-nav,
        .social-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .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: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

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

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

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

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

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

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

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

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

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

    .policy-contacts .policy-contacts__mini {

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

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

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

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

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

    .policy-contacts .item {
        color: black
    }

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

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

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

.header__logo:hover {
    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: 1001;
}

.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: 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: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: 0.75rem 1.5rem;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', system-ui, 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-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

    .footer-nav a,
    .social-links a,
    .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

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

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    address a {
        color: #ecf0f1;
        text-decoration: none;
    }

    address a:hover {
        text-decoration: underline;
    }

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

    .footer-bottom a {
        margin: 0 0.5rem;
    }

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

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

        .footer-nav,
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-nav li,
        .social-links li {
            margin-bottom: 0;
        }

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

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

        .footer-nav,
        .social-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

.thank--light-v6 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    text-align: center;
}

.thank__inner {
    max-width: 480px;
    margin: 0 auto;
}

.thank__inner h1 {
    margin: 0 0 6px;
    font-size: clamp(26px,4.5vw,34px);
}

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

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

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

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

.header__logo:hover {
    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: 1001;
}

.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: 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: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
    }

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

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: 0.75rem 1.5rem;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', system-ui, 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-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #bdc3c7;
        margin-top: 0.5rem;
    }

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

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

    .footer-nav a,
    .social-links a,
    .footer-bottom a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

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

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    address a {
        color: #ecf0f1;
        text-decoration: none;
    }

    address a:hover {
        text-decoration: underline;
    }

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

    .footer-bottom a {
        margin: 0 0.5rem;
    }

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

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

        .footer-nav,
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer-nav li,
        .social-links li {
            margin-bottom: 0;
        }

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

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

        .footer-nav,
        .social-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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