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

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

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

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);

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

  --brand: #8B4513;
  --brand-contrast: #FFFFFF;
  --accent: #D4A76A;
  --accent-contrast: #FFFFFF;

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

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

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

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #5D4037;
  --border-on-surface-light: #E9DCCD;

  --bg-primary: #8B4513;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #72380F;
  --ring: rgba(139, 69, 19, 0.4);

  --bg-accent: #F5EBDC;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #C19A5B;

  --link: #8B4513;
  --link-hover: #72380F;

  --gradient-hero: linear-gradient(135deg, #F5EBDC 0%, #E9DCCD 100%);
  --gradient-accent: linear-gradient(135deg, #D4A76A 0%, #C19A5B 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

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

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

.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: -2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

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

    .nav-link {
        padding: var(--space-y) var(--space-x);
        text-align: center;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-heading {
        color: #f1c40f;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

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

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
    }

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

    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #95a5a6;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal li {
        margin-bottom: 0;
    }

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

        .footer-heading {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

.wp-lang-switcher {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;
        font-family: var(--font-family, inherit);
    }

    .wp-lang-switcher__btn {
        background: var(--neutral-800, rgba(0, 0, 0, .75));
        color: var(--neutral-0, #fff);
        padding: calc(8px + var(--random-number, 1) * 2px) calc(12px + var(--random-number, 1) * 2px);
        border-radius: calc(var(--radius-lg, 14px) - var(--random-number, 1) * 2px);
        cursor: pointer;
        display: flex;
        gap: var(--gap, 10px);
        align-items: center;
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border: 1px solid var(--border-on-surface, transparent);
    }

    .wp-lang-switcher__btn:hover {
        background: var(--neutral-900, rgba(0, 0, 0, .85));
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
    }

    .wp-lang-switcher__label {
        font-size: var(--font-size-base, 16px);
    }

    .wp-lang-switcher__chev {
        font-size: 12px;
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher__list.open ~ .wp-lang-switcher__btn .wp-lang-switcher__chev,
    .wp-lang-switcher__btn:has(~ .wp-lang-switcher__list.open) .wp-lang-switcher__chev {
        transform: rotate(180deg);
    }

    .wp-lang-switcher__list {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 8px);
        background: var(--surface-1, #fff);
        border-radius: calc(var(--radius-lg, 14px) + var(--random-number, 1) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg, 0 10px 30px rgba(0, 0, 0, .2));
        min-width: calc(210px + var(--random-number, 1) * 10px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
    }

    .wp-lang-switcher__list.open {
        display: block;
    }

    .wp-lang-switcher__list button,
    .wp-lang-switcher__list a {
        width: 100%;
        text-align: left;
        padding: calc(8px + var(--random-number, 1) * 2px) calc(10px + var(--random-number, 1) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;
        font-family: var(--font-family, inherit);
        font-size: var(--font-size-base, 16px);
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher__list button:hover,
    .wp-lang-switcher__list a:hover {
        background: var(--bg-alt, #f3f4f6);
    }

.hero--light-v6 {
        padding: 80px 20px;
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .hero--light-v6 {
        background: linear-gradient(45deg, var(--fg-on-page) 0%, var(--fg-on-primary) 50%, var(--accent) 100%);
        background-size: 400% 400%;
        animation: gradientWave 6s ease infinite;
    }

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

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

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

    .hero__subtitle {
        margin: 0;
        color: var(--neutral-600);
    }

.next-step {

        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .next-step::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: gridMove 20s linear infinite;
    }

    @keyframes gridMove {
        0% {
            transform: translate(0, 0);
        }
        100% {
            transform: translate(50px, 50px);
        }
    }

    .next-step .next-step__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .next-step .next-step__content {
        background: var(--accent-contrast);
        border-radius: var(--space-x);
        padding: 2rem;
        color: var(--accent);
        text-align: center;
        max-width: 800px;
        margin: 0 auto;

    }

    .next-step .next-step__title {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1.5rem;

        transform: translateY(20px);
    }

    .next-step .next-step__text {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0 0 2.5rem;
        opacity: 0.95;
        line-height: var(--line-height-base);

        transform: translateY(20px);
    }

    .next-step .next-step__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;

        transform: translateY(20px);
    }

    .next-step .next-step__btn {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        overflow: hidden;
    }

    .next-step .next-step__btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    }

    .next-step .next-step__btn:hover::before {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }

    .next-step .next-step__btn span {
        position: relative;
        z-index: 1;
    }

    .next-step .next-step__btn--primary {
        background: var(--accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-md);
    }

    .next-step .next-step__btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .next-step .next-step__btn--secondary {
        background: var(--surface-light);
        color: var(--brand);
        border: 2px solid var(--surface-light);
    }

    .next-step .next-step__btn--secondary:hover {
        background: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .next-step .next-step__icon {
        font-size: 20px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .next-step .next-step__btn:hover .next-step__icon {
        transform: translateX(4px);
    }

.clarifications-l1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .clarifications-l1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

    .clarifications-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .clarifications-l1__note {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .clarifications-l1__note {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.two-column-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.hiw-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

    .hiw-l2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .hiw-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .hiw-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .hiw-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .hiw-l2__tabs {
        position: relative;
        display: flex;
        gap: 8px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface);
        overflow: auto;
    }

    .hiw-l2__tab {
        flex: 0 0 auto;
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 10px 12px;
        border-radius: 999px;
        font-weight: 900;
        cursor: pointer;
        white-space: nowrap;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hiw-l2__tab:hover {
        transform: translateY(-1px);
    }

    .hiw-l2__tab.is-on {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: rgba(255, 107, 53, 0.35);
    }

    .hiw-l2__underline {
        position: absolute;
        height: 3px;
        bottom: 6px;
        left: 12px;
        width: 40px;
        border-radius: 999px;
        background: var(--bg-primary);
        transform: translateX(0);
        transition: transform 420ms var(--anim-ease), width 420ms var(--anim-ease);
    }

    .hiw-l2__panes {
        padding: 16px;
    }

    .hiw-l2__pane {
        display: none;
    }

    .hiw-l2__pane.is-on {
        display: block;
    }

    .hiw-l2__n {
        width: 44px;
        height: 44px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 900;
    }

    .hiw-l2__pTitle {
        margin-top: 12px;
        font-weight: 900;
        letter-spacing: -.01em;
        font-size: clamp(18px, 2.2vw, 22px);
        color: var(--fg-on-page);
    }

    .hiw-l2__pText {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (prefers-reduced-motion: reduce) {
        .hiw-l2__underline {
            transition: none;
        }

        .hiw-l2__tab {
            transition: none;
        }
    }

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

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

.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: -2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

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

    .nav-link {
        padding: var(--space-y) var(--space-x);
        text-align: center;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-heading {
        color: #f1c40f;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

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

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
    }

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

    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #95a5a6;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal li {
        margin-bottom: 0;
    }

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

        .footer-heading {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

.identity-aurora {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .identity-aurora::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 99, 71, 0.35), transparent 40%);
        opacity: 0.8;
        pointer-events: none;
    }

    .identity-aurora__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .identity-aurora__h {
        text-align: center;
        margin-bottom: clamp(48px, 6vw, 80px);

        transform: translateY(-20px);
    }

    .identity-aurora__eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 0.85rem;
        color: var(--link);
        margin: 0 0 0.75rem;
    }

    .identity-aurora h2 {
        font-size: clamp(36px, 5vw, 60px);
        margin: 0 0 1rem;
    }

    .identity-aurora__lead {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(18px, 2.4vw, 22px);
    }

    .identity-aurora__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .identity-aurora__card {
        background: rgba(8, 16, 42, 0.6);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(3, 6, 26, 0.45);
        backdrop-filter: blur(16px);
        transform: translateY(30px);
    }

    .identity-aurora__card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
        
        
        mask-composite: exclude;
        pointer-events: none;
    }

    .identity-aurora__icon {
        width: 64px;
        height: 64px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 1.25rem;
    }

    .identity-aurora__meta {
        margin-bottom: 0.75rem;
    }

    .identity-aurora__tag {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .identity-aurora__card h3 {
        margin: 0.35rem 0 0.75rem;
        font-size: clamp(20px, 2.4vw, 26px);
    }

    .identity-aurora__body {
        margin: 0 0 1.25rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .identity-aurora__foot {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        color: var(--link);
    }

    .identity-aurora__foot::before {
        content: "";
        width: 36px;
        height: 2px;
        background: linear-gradient(90deg, transparent, currentColor);
    }

.faq--light-v6 {
    padding: 56px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.faq__inner h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--fg-on-page);
}

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

.faq__card {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
}

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

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

.our-story--colored-v5 {

    padding: 64px 20px;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.42), transparent),
        radial-gradient(circle at bottom right, rgba(236,72,153,0.42), transparent),
        var(--neutral-900);
    color: var(--neutral-0);
}

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

.our-story__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.our-story__layout {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) minmax(0,1fr);
    gap: 24px;
    align-items: stretch;
}

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

.our-story__lead {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.our-story__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--neutral-300);
    line-height: 1.7;
}

.our-story__side {
    display: grid;
    gap: 10px;
}

.our-story__stat {
    border-radius: var(--radius-xl);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.75);
}

.our-story__stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.our-story__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.our-story__stat--brand .our-story__stat-value {
    color: var(--bg-primary);
}
.our-story__stat--accent .our-story__stat-value {
    color: var(--accent);
}
.our-story__stat--accent .our-story__stat-value {
    color: var(--accent);
}

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

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

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

.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: -2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

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

    .nav-link {
        padding: var(--space-y) var(--space-x);
        text-align: center;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-heading {
        color: #f1c40f;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

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

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
    }

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

    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #95a5a6;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal li {
        margin-bottom: 0;
    }

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

        .footer-heading {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.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-feedback-light {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-light__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-light__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-light__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

        transform: translateY(28px);
    }

    .index-feedback-light__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

    .index-feedback-light__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .index-feedback-light__avatar {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

    .index-feedback-light__who h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 20ch;
    }

    .index-feedback-light__who p {
        margin: 2px 0 0;
        font-size: 13px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 26ch;
    }

    .index-feedback-light__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .index-feedback-light__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .index-feedback-light__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .index-feedback-light__quote {
        margin: 14px 0 0;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-light__badge {
        display: inline-flex;
        margin-top: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.next-step {

        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .next-step::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: gridMove 20s linear infinite;
    }

    @keyframes gridMove {
        0% {
            transform: translate(0, 0);
        }
        100% {
            transform: translate(50px, 50px);
        }
    }

    .next-step .next-step__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .next-step .next-step__content {
        background: var(--accent-contrast);
        border-radius: var(--space-x);
        padding: 2rem;
        color: var(--accent);
        text-align: center;
        max-width: 800px;
        margin: 0 auto;

    }

    .next-step .next-step__title {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1.5rem;

        transform: translateY(20px);
    }

    .next-step .next-step__text {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0 0 2.5rem;
        opacity: 0.95;
        line-height: var(--line-height-base);

        transform: translateY(20px);
    }

    .next-step .next-step__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;

        transform: translateY(20px);
    }

    .next-step .next-step__btn {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        overflow: hidden;
    }

    .next-step .next-step__btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    }

    .next-step .next-step__btn:hover::before {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }

    .next-step .next-step__btn span {
        position: relative;
        z-index: 1;
    }

    .next-step .next-step__btn--primary {
        background: var(--accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-md);
    }

    .next-step .next-step__btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .next-step .next-step__btn--secondary {
        background: var(--surface-light);
        color: var(--brand);
        border: 2px solid var(--surface-light);
    }

    .next-step .next-step__btn--secondary:hover {
        background: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .next-step .next-step__icon {
        font-size: 20px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .next-step .next-step__btn:hover .next-step__icon {
        transform: translateX(4px);
    }

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

.features__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

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

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

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

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

.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: -2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

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

    .nav-link {
        padding: var(--space-y) var(--space-x);
        text-align: center;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-heading {
        color: #f1c40f;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

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

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
    }

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

    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #95a5a6;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal li {
        margin-bottom: 0;
    }

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

        .footer-heading {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

.contacts--light-v6 {
        position: relative;
        padding: 60px 20px;
        background:
                linear-gradient(180deg, rgba(247, 249, 255, 0.9), rgba(255, 255, 255, 1));
        color: var(--fg-on-page);

    }

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

    .contacts__content h2 {
        margin: 0 0 8px;
        font-size: clamp(24px, 4vw, 32px);

    }

    .contacts__content p {
        margin: 0 0 14px;
        color: var(--neutral-700);
    }

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

    .contacts__item {
        display: grid;
        gap: 4px;
        padding: 12px 14px;
        border-radius: 16px;
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

    .contacts__item-label {
        font-size: 0.78rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--neutral-500);
    }

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

    .contacts__map {
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid var(--border-on-surface-light);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
        background: #fff;
    }

    .contacts__map iframe {
        width: 100%;
        height: 100%;
        min-height: 280px;
        border: 0;
    }

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

.contact-form {

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

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

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-lg);
    }

    .contact-form .grid {
        display: grid;
        gap: 12px;
        grid-template-columns:1fr 1fr;
    }

    .contact-form .fl {
        position: relative;
    }

    .contact-form .fl input, .contact-form .fl textarea {
        width: 100%;
        padding: 1.1rem 1rem .9rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        box-sizing: border-box;
    }

    .contact-form .fl label {
        position: absolute;
        top: .95rem;
        left: 1rem;
        font-size: .95rem;
        color: var(--neutral-300);
        transition: .15s;
    }

    .contact-form .fl input:focus + label, .contact-form .fl input:not(:placeholder-shown) + label,
    .contact-form .fl textarea:focus + label, .contact-form .fl textarea:not(:placeholder-shown) + label {
        top: .35rem;
        font-size: .75rem;
        opacity: .8;
    }

    .contact-form .fl.wide textarea {
        min-height: 120px;
    }

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

    .contact-form button {
        align-self: start;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .contact-form button:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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);
}

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

.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: -2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

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

    .nav-link {
        padding: var(--space-y) var(--space-x);
        text-align: center;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-heading {
        color: #f1c40f;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

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

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
    }

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

    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #95a5a6;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal li {
        margin-bottom: 0;
    }

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

        .footer-heading {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.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 {

        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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);
}

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

.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: -2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

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

    .nav-link {
        padding: var(--space-y) var(--space-x);
        text-align: center;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-heading {
        color: #f1c40f;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

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

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
    }

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

    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #95a5a6;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal li {
        margin-bottom: 0;
    }

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

        .footer-heading {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.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 {

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

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

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

    .terms-items__items {
        display: grid;
        gap: 1.5rem;
    }

    .terms-items__item {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .terms-items__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .terms-items__marker {
        width: 8px;
        height: 8px;
        background: var(--fg-on-accent);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .terms-items__header h3 {
        margin: 0;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

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

    @media (max-width: 767px) {
        .terms-items__item {
            padding: 1.5rem;
        }
    }

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

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

.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: -2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

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

    .nav-link {
        padding: var(--space-y) var(--space-x);
        text-align: center;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-heading {
        color: #f1c40f;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

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

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
    }

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

    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #95a5a6;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal li {
        margin-bottom: 0;
    }

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

        .footer-heading {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

.thanks-light {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: currentColor;
    border-radius: var(--radius-sm);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: -2px;
}

.nav-link:active {
    background-color: var(--neutral-300);
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y);
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

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

    .nav-link {
        padding: var(--space-y) var(--space-x);
        text-align: center;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-heading {
        color: #f1c40f;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

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

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
    }

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

    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #95a5a6;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal li {
        margin-bottom: 0;
    }

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

        .footer-heading {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.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 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .error-404__label {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

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

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

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

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

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