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

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

  --radius-xl: 1rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

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

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

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

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

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

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

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

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

  --bg-accent: #f5f3ff;
  --fg-on-accent: #4c1d95;
  --bg-accent-hover: #6d28d9;

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

  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(90deg, #f5f3ff 0%, #e0e7ff 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
}

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

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

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

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

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #3498db;
        margin-bottom: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        max-width: 280px;
    }

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

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

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

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

    .footer-contact .address {
        font-style: normal;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

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

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

        .footer-disclaimer {
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-section h3 {
            text-align: center;
        }
    }

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

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

    .cookie-strip .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @media (max-width: 760px) {
        .cookie-strip .wrap {
            grid-template-columns: 1fr;
        }
    }

.wp-lang-switcher-v3 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v3__btn {
        width: calc(54px + var(--local-random) * 4px);
        height: calc(54px + var(--local-random) * 4px);
        background: var(--surface-1);
        color: var(--bg-primary);
        border: calc(2px + var(--local-random) * 0.5px) solid var(--bg-primary);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .wp-lang-switcher-v3__btn::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: 50%;
        background: var(--gradient-hero);

        z-index: -1;
        transition: opacity var(--anim-duration) var(--anim-ease);
        animation: pulse calc(1.8s + var(--local-random) * 0.4s) ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1);  }
        50% { transform: scale(1.1); opacity: 0.3; }
    }

    .wp-lang-switcher-v3__btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v3__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v3__text {
        font-weight: 700;
        font-size: calc(13px + var(--local-random) * 1px);
        letter-spacing: calc(0.8px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v3__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) - var(--local-random) * 4px);
        box-shadow: var(--shadow-lg);
        padding: calc(6px + var(--local-random) * 2px);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: calc(6px + var(--local-random) * 2px);

        transform: scale(0.8);
        transform-origin: bottom right;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v3__dropdown.open {
        display: grid;
        opacity: 1;
        transform: scale(1);
    }

    .wp-lang-switcher-v3__dropdown button,
    .wp-lang-switcher-v3__dropdown a {
        width: calc(46px + var(--local-random) * 2px);
        height: calc(46px + var(--local-random) * 2px);
        border: 2px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;

        font-size: 13px;
        font-weight: 600;
        border-radius: 50%;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v3__dropdown button::after {
        content: attr(data-lang);
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--fg-on-primary);
        text-transform: uppercase;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v3__dropdown button:hover {
        border-color: var(--bg-primary);
        transform: scale(calc(1.08 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v3__dropdown button:hover::before,
    .wp-lang-switcher-v3__dropdown a:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v3__dropdown button:hover::after,
    .wp-lang-switcher-v3__dropdown a:hover::after {
        opacity: 1;
    }

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

.value-lanes {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .value-lanes .wrap {
        max-width: 960px;
        margin: 0 auto;
    }

    .value-lanes header {
        margin-bottom: 14px;
    }

    .value-lanes h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-lanes header p {
        margin: 10px 0 0;
        opacity: 0.9;
    }

    .value-lanes .lanes {
        display: grid;
        gap: 10px;
    }

    .value-lanes article {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 10px;
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: 12px;
    }

    .value-lanes .step {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: grid;
        place-items: center;
        font-weight: 600;
    }

    .value-lanes h3 {
        margin: 0 0 6px;
    }

    .value-lanes article p {
        margin: 0 0 6px;
        opacity: 0.9;
    }

    .value-lanes article span {
        font-size: .85rem;
        opacity: 0.8;
    }

.visual-highlights-light {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
        position: relative;
    }

    .visual-highlights-light::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 15%, rgba(0, 86, 179, 0.08), transparent 55%);
        pointer-events: none;
    }

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

    .visual-highlights-light__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .visual-highlights-light h2 {
        margin: 0 0 1rem;
        font-size: clamp(30px, 4.8vw, 48px);
        font-weight: 800;
    }

    .visual-highlights-light__subtitle {
        margin: 0;
        color: var(--neutral-600);
        font-size: clamp(16px, 2vw, 20px);
    }

    .visual-highlights-light__board {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .visual-highlights-light__tile {
        margin: 0;
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        overflow: hidden;
        box-shadow: var(--shadow-md);

        transform: translateY(32px);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .visual-highlights-light__tile:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(0);
    }

    .visual-highlights-light__snapshot {
        position: relative;
        padding-top: 62%;
        overflow: hidden;
    }

    .visual-highlights-light__snapshot img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .visual-highlights-light__tile:hover img {
        transform: scale(1.04);
    }

    .visual-highlights-light__chip {
        position: absolute;
        bottom: 16px;
        left: 16px;
        padding: 6px 14px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 6px 14px rgba(255, 107, 53, 0.25);
    }

    .visual-highlights-light__tile figcaption {
        padding: clamp(20px, 3vw, 28px);
    }

    .visual-highlights-light__caption {
        margin: 0 0 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--neutral-600);
    }

    .visual-highlights-light__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(18px, 2.2vw, 24px);
        color: var(--fg-on-page);
    }

    .visual-highlights-light__tile p {
        margin: 0;
        color: var(--neutral-600);
    }

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

    .social-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-surface);
    }

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: var(--neutral-600);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-light);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, var(--surface-light), rgba(255, 255, 255, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, var(--surface-light), rgba(255, 255, 255, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: 14px;
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 56px;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        color: var(--fg-on-surface);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: var(--neutral-600);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

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

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

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

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
}

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

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

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

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

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #3498db;
        margin-bottom: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        max-width: 280px;
    }

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

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

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

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

    .footer-contact .address {
        font-style: normal;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

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

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

        .footer-disclaimer {
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-section h3 {
            text-align: center;
        }
    }

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

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

    .cookie-strip .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @media (max-width: 760px) {
        .cookie-strip .wrap {
            grid-template-columns: 1fr;
        }
    }

.gallery--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.our-story {

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

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

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

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

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

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

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

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

.faq-dual {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .faq-dual header {
        margin-bottom: 14px;
    }

    .faq-dual h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-accent);
    }

    .faq-dual header p {
        margin: 10px 0 0;
        color: var(--fg-on-accent);
    }

    .faq-dual .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 10px;
    }

    .faq-dual details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
    }

    .faq-dual summary {
        cursor: pointer;
        font-weight: 600;
    }

    .faq-dual details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.identity-constellation {

        background: linear-gradient(135deg, var(--accent) 0%, rgba(255, 255, 255, 0.25) 100%);
        color: var(--fg-on-accent);
        padding: clamp(60px, 8vw, 110px) clamp(16px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .identity-constellation::before,
    .identity-constellation::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
        opacity: 0.4;
    }

    .identity-constellation::after {
        background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.5), transparent 60%);
        
    }

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

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

    }

    .identity-constellation__badge {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.35rem 1.25rem;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 999px;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .identity-constellation h2 {
        margin: 0.75rem 0;
        font-size: clamp(34px, 5vw, 60px);
        color: var(--fg-on-primary);
    }

    .identity-constellation__h > p {
        margin: 0 auto;
        max-width: 680px;
        color: rgba(45, 18, 0, 0.75);
        font-size: clamp(16px, 2.1vw, 20px);
    }

    .identity-constellation__timeline {
        position: relative;
        padding-left: clamp(16px, 4vw, 64px);
        border-left: 2px dashed rgba(45, 18, 0, 0.3);
        display: flex;
        flex-direction: column;
        gap: clamp(28px, 4vw, 48px);
    }

    @media (min-width: 960px) {
        .identity-constellation__timeline {
            padding-left: 0;
            border-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: clamp(28px, 3vw, 40px);
        }
    }

    .identity-constellation__node {
        display: flex;
        gap: clamp(20px, 4vw, 32px);
        align-items: center;

        transform: translateY(30px);
    }

    .identity-constellation__orb {
        position: relative;
        flex-shrink: 0;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0 20px 40px rgba(64, 18, 0, 0.25);
        display: grid;
        place-items: center;
    }

    .identity-constellation__orb::after {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 50%;
        border: 2px dashed rgba(45, 18, 0, 0.35);
        animation: orbit 12s linear infinite;
    }

    @keyframes orbit {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .identity-constellation__index {
        position: absolute;
        top: -12px;
        right: -12px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 20px rgba(7, 27, 68, 0.3);
    }

    .identity-constellation__icon {
        font-size: 40px;
    }

    .identity-constellation__content {
        flex: 1;
        background: rgba(255, 255, 255, 0.65);
        border-radius: var(--radius-lg);
        padding: clamp(20px, 3vw, 30px);
        box-shadow: var(--shadow-lg);
    }

    .identity-constellation__content h3 {
        margin: 0 0 0.6rem;
        font-size: clamp(20px, 2.2vw, 26px);
        color: var(--bg-primary);
    }

    .identity-constellation__content p {
        margin: 0 0 0.75rem;
        color: rgba(45, 18, 0, 0.75);
    }

    .identity-constellation__content footer {
        margin: 0;
        font-weight: 600;
        color: rgba(7, 27, 68, 0.85);
    }

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

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
}

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

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

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

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

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #3498db;
        margin-bottom: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        max-width: 280px;
    }

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

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

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

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

    .footer-contact .address {
        font-style: normal;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

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

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

        .footer-disclaimer {
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-section h3 {
            text-align: center;
        }
    }

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

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

    .cookie-strip .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @media (max-width: 760px) {
        .cookie-strip .wrap {
            grid-template-columns: 1fr;
        }
    }

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

.plans-l1 {

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

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

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

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

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

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

    .plans-l1__col {
        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;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-l1__col:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 86, 179, 0.35);
        box-shadow: var(--shadow-lg);
    }

    .plans-l1__head {
        padding: 14px;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .plans-l1__name {
        font-weight: 900;
        letter-spacing: -.01em;
        color: var(--fg-on-page);
    }

    .plans-l1__price {
        margin-top: 8px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.02em;
        color: var(--bg-primary);
    }

    .plans-l1__body {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-l1__row {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

    .plans-l1__ok {
        width: 24px;
        height: 24px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        flex: 0 0 auto;
        animation: plansL1Ok 2.8s ease-in-out infinite;
    }

    .plans-l1__col:nth-child(2) .plans-l1__ok {
        animation-duration: 3.3s
    }

    .plans-l1__col:nth-child(3) .plans-l1__ok {
        animation-duration: 3.8s
    }

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

    .plans-l1__txt {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .plans-l1__btn {
        margin-top: 14px;
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 900;
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .plans-l1__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-1px);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .plans-l1__ok {
            animation: none;
        }
    }

.hiw-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

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

    .hiw-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .hiw-c1__track {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        padding: 16px;
    }

    .hiw-c1__runner {
        position: absolute;
        left: -40%;
        top: 0;
        height: 4px;
        width: 40%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
        animation: hiwC1Run 2.8s linear infinite;
    }

    @keyframes hiwC1Run {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(340%)
        }
    }

    .hiw-c1__steps {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
        position: relative;
    }

    .hiw-c1__step {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 14px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hiw-c1__step:hover {
        transform: translateY(-3px);
    }

    .hiw-c1__num {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.18);
        font-weight: 900;
    }

    .hiw-c1__name {
        margin-top: 10px;
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .hiw-c1__text {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

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

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

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

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

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
}

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

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

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

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

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #3498db;
        margin-bottom: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        max-width: 280px;
    }

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

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

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

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

    .footer-contact .address {
        font-style: normal;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

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

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

        .footer-disclaimer {
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-section h3 {
            text-align: center;
        }
    }

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

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

    .cookie-strip .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @media (max-width: 760px) {
        .cookie-strip .wrap {
            grid-template-columns: 1fr;
        }
    }

.contact-rail {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .contact-rail .intro {
        margin-bottom: 14px;
    }

    .contact-rail h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .contact-rail .intro p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

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

    .contact-rail .info,
    .contact-rail .form {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 14px;
    }

    .contact-rail h3 {
        margin: 0 0 10px;
    }

    .contact-rail .info p {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .contact-rail .social {
        display: flex;
        gap: 8px;
    }

    .contact-rail .social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border-on-surface);
        border-radius: 50%;
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .contact-rail .row {
        display: grid;
        gap: 6px;
        margin-bottom: 9px;
    }

    .contact-rail input,
    .contact-rail textarea,
    .contact-rail select {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .contact-rail button {
        border: 0;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        cursor: pointer;
    }

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

.form-glass {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .form-glass .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .form-glass header {
        margin-bottom: 14px;
    }

    .form-glass h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .form-glass header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .form-glass .grid {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .form-glass .card {
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
        border-radius: var(--radius-lg);
        padding: 14px;
        backdrop-filter: blur(5px);
    }

    .form-glass label {
        display: grid;
        gap: 6px;
        margin-bottom: 8px;
    }

    .form-glass input:not([type="checkbox"]),
    .form-glass textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-glass .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-glass button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 9px 12px;
    }

    .form-glass .info p {
        margin: 0 0 8px;
        opacity: .9;
    }

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

.contact-map {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
}

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

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

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

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

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #3498db;
        margin-bottom: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        max-width: 280px;
    }

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

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

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

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

    .footer-contact .address {
        font-style: normal;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

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

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

        .footer-disclaimer {
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-section h3 {
            text-align: center;
        }
    }

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

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

    .cookie-strip .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @media (max-width: 760px) {
        .cookie-strip .wrap {
            grid-template-columns: 1fr;
        }
    }

.policy-cards {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(180deg, var(--bg-alt), var(--accent));
        color: var(--fg-on-page);
    }

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

    .policy-cards header {
        margin-bottom: 14px;
    }

    .policy-cards h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-cards header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 72ch;
    }

    .policy-cards .grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .policy-cards .card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 14px;
    }

    .policy-cards .meta {
        margin: 0;
        font-size: .9rem;
        color: var(--brand);
    }

    .policy-cards h3 {
        margin: 8px 0;
    }

    .policy-cards .card p {
        margin: 0;
        color: var(--neutral-600);
    }

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

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
}

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

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

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

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

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #3498db;
        margin-bottom: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        max-width: 280px;
    }

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

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

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

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

    .footer-contact .address {
        font-style: normal;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

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

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

        .footer-disclaimer {
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-section h3 {
            text-align: center;
        }
    }

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

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

    .cookie-strip .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @media (max-width: 760px) {
        .cookie-strip .wrap {
            grid-template-columns: 1fr;
        }
    }

.terms-matrix {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

    .terms-matrix h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-accent);
    }

    .terms-matrix header p {
        margin: 10px 0 16px;
        color: var(--fg-on-accent);
        opacity: 0.85;
    }

    .terms-matrix .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .terms-matrix .cell {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: var(--space-x);
    }

    .terms-matrix h3,
    .terms-matrix h4 {
        margin: 0 0 8px;
        color: var(--neutral-800);
    }

    .terms-matrix p,
    .terms-matrix li {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .terms-matrix a {
        color: var(--link);
        text-decoration: underline;
    }

    .terms-matrix a:hover {
        color: var(--link-hover);
    }

    .terms-matrix ul {
        padding-left: 1.2em;
        margin: 8px 0;
    }

    .terms-matrix li {
        margin-bottom: 4px;
    }

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

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
}

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

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

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

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

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #3498db;
        margin-bottom: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        max-width: 280px;
    }

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

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

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

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

    .footer-contact .address {
        font-style: normal;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

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

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

        .footer-disclaimer {
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-section h3 {
            text-align: center;
        }
    }

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

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

    .cookie-strip .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @media (max-width: 760px) {
        .cookie-strip .wrap {
            grid-template-columns: 1fr;
        }
    }

.th-core-c {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: linear-gradient(150deg, #4c1d95, #1e1b4b);
        color: #eef2ff;
    }

    .th-core-c .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .th-core-c h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .th-core-c p {
        margin: 10px 0 0;
        color: #c7d2fe;
    }

    .th-core-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .35);
        color: #eef2ff;
    }

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

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
}

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

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

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-y);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

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

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #3498db;
        margin-bottom: 0.8rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #bdc3c7;
        max-width: 280px;
    }

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

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

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

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

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

    .footer-contact .address {
        font-style: normal;
    }

    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

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

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

        .footer-disclaimer {
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-section h3 {
            text-align: center;
        }
    }

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

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

    .cookie-strip .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @media (max-width: 760px) {
        .cookie-strip .wrap {
            grid-template-columns: 1fr;
        }
    }

.nf-core-f {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf-core-f .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 20px;
        padding: clamp(18px, 3vw, 30px);
    }

    .nf-core-f h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .nf-core-f p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf-core-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 12px;
        background: var(--bg-primary);
        color: var(--neutral-0);
        text-decoration: none;
    }