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

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

  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.375rem;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 0.3s;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 1;

  --brand: #B7410E;
  --brand-contrast: #FFFFFF;
  --accent: #D4AF37;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D4D4D4;
  --neutral-600: #737373;
  --neutral-800: #262626;
  --neutral-900: #0A0A0A;

  --bg-page: #0A0A0A;
  --fg-on-page: #F5F5F5;

  --bg-alt: #1A1A1A;
  --fg-on-alt: #D4D4D4;

  --surface-1: #1A1A1A;
  --surface-2: #262626;
  --fg-on-surface: #F5F5F5;
  --border-on-surface: #404040;

  --surface-light: #262626;
  --fg-on-surface-light: #D4D4D4;
  --border-on-surface-light: #404040;

  --bg-primary: #B7410E;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #D35400;
  --ring: #B7410E;

  --bg-accent: rgba(212, 175, 55, 0.1);
  --fg-on-accent: #D4AF37;
  --bg-accent-hover: #E6C158;

  --link: #D4AF37;
  --link-hover: #E6C158;

  --gradient-hero: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
  --gradient-accent: linear-gradient(90deg, #B7410E 0%, #D35400 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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.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;
}
.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);
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .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);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 0.75rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 250px;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f1c40f;
        border-bottom: 2px solid #34495e;
        padding-bottom: 0.5rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #f1c40f;
    }
    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #e74c3c;
        color: white;
    }
    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        border-top: 1px solid #34495e;
    }
    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.5rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        opacity: 0.8;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-tagline {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
        .footer-heading {
            border-bottom: none;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.intro-focus {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: floatOrb 20s ease-in-out infinite;
    }

    @keyframes floatOrb {
        0%, 100% {
            transform: translate(0, 0) scale(1);
        }
        33% {
            transform: translate(-30px, 40px) scale(1.1);
        }
        66% {
            transform: translate(20px, -30px) scale(0.9);
        }
    }

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

    .intro-focus .intro-focus__content {
        max-width: 800px;
        display: flex;
        flex-direction: column;
    }

    .intro-focus .intro-focus__badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1.5rem;

        transform: translateY(20px);
    }

    .intro-focus .intro-focus__title {
        font-size: clamp(36px, 7vw, 64px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;

        transform: translateY(30px);
    }

    .intro-focus .intro-focus__subtitle {
        font-size: clamp(18px, 2.5vw, 24px);
        margin: 0 0 2rem;
        opacity: 0.95;
        line-height: var(--line-height-base);

        transform: translateY(30px);
    }

    .intro-focus .intro-focus__heading {
        padding-top: 1rem;
        order: 2;
    }

    .intro-focus .intro-focus__highlight {
        order: var(--random-number);
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 2rem 3rem;
        background: var(--surface-light);
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.2);

        transform: scale(0.9);
    }

    .intro-focus .intro-focus__number {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 8vw, 72px);
        font-weight: 900;
        line-height: 1;
    }

    .intro-focus .intro-focus__label {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--fg-on-surface-light);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

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

    .value-list .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .value-list .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .value-list ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .value-list li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .value-list .head {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .value-list .head strong {
        display: inline-flex;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    .value-list h3 {
        margin: 0;
    }

    .value-list li p {
        margin: 8px 0 6px;
        color: var(--neutral-600);
    }

    .value-list li span {
        font-size: .85rem;
        color: var(--neutral-600);
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

    .why-choose .why-choose__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose .why-choose__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.next-check {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-check .wrap {
        max-width: 780px;
        margin: 0 auto;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 18px;
        padding: clamp(18px, 3vw, 28px);
    }

    .next-check .k {
        margin: 0;
        color: var(--bg-primary);
        font-weight: 600;
    }

    .next-check h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.2vw, 44px);
    }

    .next-check .text {
        margin: 0;
        color: var(--fg-on-accent);
    }

    .next-check ul {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .next-check li a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-2);
        border-radius: 10px;
        padding: 9px 12px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .next-check .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

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

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

    .social-c2__quotes {
        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;
    }

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;
        color: rgba(255, 255, 255, .86);
    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        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: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

    .social-c2__mLbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.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;
}
.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);
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .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);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 0.75rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 250px;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f1c40f;
        border-bottom: 2px solid #34495e;
        padding-bottom: 0.5rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #f1c40f;
    }
    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #e74c3c;
        color: white;
    }
    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        border-top: 1px solid #34495e;
    }
    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.5rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        opacity: 0.8;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-tagline {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
        .footer-heading {
            border-bottom: none;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.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);
    color: var(--fg-on-page);
}

.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;
    cursor: pointer;
    transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

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

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

.identity-canvas {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 48px);
    }

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

    .identity-canvas__h {
        margin-bottom: clamp(32px, 5vw, 64px);
        text-align: center;

        transform: translateY(-16px);
    }

    .identity-canvas__h h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(30px, 4.5vw, 52px);
        color: var(--neutral-900);
    }

    .identity-canvas__h p {
        margin: 0 auto;
        max-width: 640px;
        color: var(--neutral-600);
    }

    .identity-canvas__stack {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 3vw, 24px);
    }

    .identity-canvas__row {
        display: grid;
        grid-template-columns: minmax(120px, 180px) 1fr;
        gap: clamp(16px, 3vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 32px);
        box-shadow: var(--shadow-md);

        transform: translateY(20px);
    }

    @media (max-width: 640px) {
        .identity-canvas__row {
            grid-template-columns: 1fr;
        }
    }

    .identity-canvas__mark {
        align-self: start;
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent);
        border-left: 4px solid var(--accent);
        padding-left: 1rem;
    }

    .identity-canvas__body h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.4vw, 28px);
        color: var(--fg-on-surface);
    }

    .identity-canvas__body p {
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
    }

    .identity-canvas__body blockquote {
        margin: 0;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border-left: 4px solid var(--accent);
        font-weight: 600;
        color: var(--accent);
    }

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

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

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

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

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

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

    .faq-tiles .tile {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-2);
        padding: 12px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .faq-tiles .tile:hover {
        transform: translateY(-2px);
        border-color: var(--brand);
    }

    .faq-tiles .meta {
        margin: 0 0 6px;
        font-size: .85rem;
        color: var(--accent);
    }

    .faq-tiles h3 {
        margin: 0 0 8px;
        color: var(--fg-on-surface);
        font-size: 1.1rem;
    }

    .faq-tiles .tile p {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 0.95rem;
        line-height: 1.5;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.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;
}
.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);
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .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);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 0.75rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 250px;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f1c40f;
        border-bottom: 2px solid #34495e;
        padding-bottom: 0.5rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #f1c40f;
    }
    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #e74c3c;
        color: white;
    }
    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        border-top: 1px solid #34495e;
    }
    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.5rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        opacity: 0.8;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-tagline {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
        .footer-heading {
            border-bottom: none;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.hiw-l2 {

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

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

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

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

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

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

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

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

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

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

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

    .hiw-l2__panes {
        padding: 16px;
    }

    .hiw-l2__pane {
        display: none;
    }

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

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

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

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

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

        .hiw-l2__tab {
            transition: none;
        }
    }

.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);
    background-color: var(--surface-1);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    transition: transform var(--anim-duration) var(--anim-ease);
}

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

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

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--fg-on-surface);
}

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.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;
}
.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);
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .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);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 0.75rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 250px;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f1c40f;
        border-bottom: 2px solid #34495e;
        padding-bottom: 0.5rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #f1c40f;
    }
    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #e74c3c;
        color: white;
    }
    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        border-top: 1px solid #34495e;
    }
    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.5rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        opacity: 0.8;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-tagline {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
        .footer-heading {
            border-bottom: none;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

    .form-steps .wrap {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .form-steps header h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-page);
    }

    .form-steps header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .form-steps form,
    .form-steps aside {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y);
    }

    .form-steps .step {
        display: grid;
        grid-template-columns: 28px 1fr;
        gap: 8px;
        align-items: start;
        margin-bottom: 8px;
    }

    .form-steps .step span {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: grid;
        place-items: center;
        font-size: .8rem;
    }

    .form-steps label {
        display: grid;
        gap: 6px;
        color: var(--fg-on-surface);
    }

    .form-steps input:not([type="checkbox"]),
    .form-steps textarea {
        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;
    }

    .form-steps input:focus,
    .form-steps textarea:focus {
        outline: 2px solid var(--ring);
        outline-offset: 1px;
    }

    .form-steps .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin: 8px 0;
        color: var(--fg-on-surface);
    }

    input[type="checkbox"] {
        width: auto;
    }

    .form-steps button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 12px 24px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
        width: 100%;
        margin-top: 8px;
    }

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

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

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

.contact-hub {
        padding: clamp(56px, 8vw, 96px) 16px;
        background:
            radial-gradient(circle at 18% 20%, rgba(183, 65, 14, 0.15), transparent 55%),
            linear-gradient(135deg, var(--surface-1), var(--surface-2));
        color: var(--fg-on-surface);
        position: relative;
        overflow: hidden;
    }

    .contact-hub::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
        background-size: 140px 140px;
        opacity: 0.25;
        pointer-events: none;
    }

    .contact-hub .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .contact-hub .lead {
        margin-bottom: 14px;
        margin-right: 4rem;
        max-width: 380px;
    }

    .contact-hub .lead h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        letter-spacing: -0.02em;
        color: var(--brand);
    }

    .contact-hub .lead p {
        margin: 10px 0 0;
        color: var(--neutral-800);
    }

    .contact-hub .layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        min-width: 320px;
    }

    .contact-hub .meta {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: 16px;
        box-shadow: var(--shadow-lg);
    }

    .contact-hub h3 {
        margin: 0 0 10px;
        color: var(--neutral-900);
    }

    .contact-hub article {
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: 10px 0;
    }

    .contact-hub article:last-child {
        border-bottom: 0;
    }

    .contact-hub article p {
        margin: 0 0 5px;
    }

    .contact-hub .k {
        font-size: .8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: .8;
        color: var(--neutral-600);
    }

    .contact-hub article p strong {
        color: var(--neutral-900);
    }

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

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

    .contact-hub .social {
        margin-top: 10px;
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
    }

    .contact-hub .social p {
        margin: 0;
        color: var(--neutral-800);
    }

    .contact-hub .social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--border-on-surface);
        display: grid;
        place-items: center;
        color: var(--fg-on-surface);
        text-decoration: none;
        background: var(--chip-bg);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .contact-hub .social a:hover {
        transform: translateY(-2px);
        background: var(--btn-ghost-bg-hover);
        border-color: var(--accent);
        color: var(--accent);
    }

    @media (max-width: 860px) {
        .contact-hub .wrap {
            flex-direction: column;
        }

        .contact-hub .lead {
            margin-right: 0;
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

    .contact-map .item {
        padding: 1rem;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.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;
}
.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);
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .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);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 0.75rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 250px;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f1c40f;
        border-bottom: 2px solid #34495e;
        padding-bottom: 0.5rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #f1c40f;
    }
    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #e74c3c;
        color: white;
    }
    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        border-top: 1px solid #34495e;
    }
    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.5rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        opacity: 0.8;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-tagline {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
        .footer-heading {
            border-bottom: none;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.policy-columns {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

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

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

    .policy-columns header p {
        margin: 10px 0 16px;
        color: var(--neutral-300);
        font-size: 1.1rem;
        max-width: 800px;
    }

    .policy-columns .cols {
        column-count: 2;
        column-gap: 24px;
        margin-top: var(--space-y);
    }

    .policy-columns article {
        break-inside: avoid;
        margin: 0 0 24px;
        padding: 24px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .policy-columns article:hover {
        border-color: var(--accent);
    }

    .policy-columns h3 {
        margin: 0 0 8px 0;
        color: var(--fg-on-surface);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-columns .meta {
        margin: 6px 0 12px;
        color: var(--neutral-600);
        font-size: .9rem;
        font-weight: 500;
    }

    .policy-columns .text {
        margin: 0;
        color: var(--fg-on-surface-light);
        line-height: var(--line-height-base);
    }

    @media (max-width: 760px) {
        .policy-columns .cols {
            column-count: 1;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.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;
}
.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);
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .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);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 0.75rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 250px;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f1c40f;
        border-bottom: 2px solid #34495e;
        padding-bottom: 0.5rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #f1c40f;
    }
    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #e74c3c;
        color: white;
    }
    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        border-top: 1px solid #34495e;
    }
    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.5rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        opacity: 0.8;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-tagline {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
        .footer-heading {
            border-bottom: none;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

    .terms-bands .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

    .terms-bands .sub {
        margin: 10px 0 14px;
        color: var(--border-on-surface);
    }

    .terms-bands .band {
        margin-bottom: 10px;
        border-left: 3px solid var(--accent);
        background: var(--neutral-900);
        border-radius: 0 12px 12px 0;
        padding: 10px 12px;
    }

    .terms-bands h3,
    .terms-bands h4 {
        margin: 0 0 8px;
    }

    .terms-bands p,
    .terms-bands li {
        color: var(--border-on-surface);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.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;
}
.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);
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .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);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 0.75rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 250px;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f1c40f;
        border-bottom: 2px solid #34495e;
        padding-bottom: 0.5rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #f1c40f;
    }
    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #e74c3c;
        color: white;
    }
    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        border-top: 1px solid #34495e;
    }
    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.5rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        opacity: 0.8;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-tagline {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
        .footer-heading {
            border-bottom: none;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.th-core-e {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

    .th-core-e p {
        margin: 10px 0 0;
        color: var(--border-on-surface-light);
    }

    .th-core-e a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 12px;
        text-decoration: none;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.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;
}
.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);
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .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);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding-top: 2.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 0.75rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 250px;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f1c40f;
        border-bottom: 2px solid #34495e;
        padding-bottom: 0.5rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #f1c40f;
    }
    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        border-radius: 50%;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #e74c3c;
        color: white;
    }
    .footer-bottom {
        background-color: #1a252f;
        padding: 1.5rem 0;
        border-top: 1px solid #34495e;
    }
    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .legal-links {
        margin-bottom: 0.5rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.5rem;
        opacity: 0.8;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .footer-tagline {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
        .footer-heading {
            border-bottom: none;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

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

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.nf-core-a {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .nf-core-a p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .nf-core-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }