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

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

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

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

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

  --brand: #2c5530;
  --brand-contrast: #ffffff;
  --accent: #8b4513;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

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

  --bg-alt: #f5f5f5;
  --fg-on-alt: #495057;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #e9ecef;

  --surface-light: #ffffff;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #dee2e6;

  --bg-primary: #2c5530;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #3e6b3a;
  --ring: rgba(44, 85, 48, 0.25);

  --bg-accent: #f5f1e8;
  --fg-on-accent: #3e2723;
  --bg-accent-hover: #a0522d;

  --link: #2c5530;
  --link-hover: #8b4513;

  --gradient-hero: linear-gradient(135deg, #2c5530 0%, #3e6b3a 100%);
  --gradient-accent: linear-gradient(135deg, #f5f1e8 0%, #e8e2d1 100%);

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--ring);
}

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

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

    .main-nav.active {
        right: 0;
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(7px) 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(-7px) rotate(-45deg);
    }
}

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

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

    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        color: #f1c40f;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 300px;
    }

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

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

    .footer-nav a,
    .footer-social a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
        margin: 0 0.3rem;
    }

    .footer-bottom a:hover {
        color: #f1c40f;
    }

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

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

        .footer-contact p {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);

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

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

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

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

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

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

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

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

.hero__subtitle {
    margin: 0 0 20px;
    color: var(--neutral-800);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

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

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

.hero__btn--primary {
    background: var(--brand);
    color: var(--brand-contrast);
}

.hero__btn--ghost {
    background: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
}

.next-step-l1 {

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

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

    .next-step-l1__box {
        max-width: 920px;
        margin: 0 auto;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 2.6vw, 28px);
        text-align: center;
        position: relative;
        overflow: hidden;

        transform: translateY(14px);
    }

    .next-step-l1__box::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 160px at 20% 10%, rgba(0, 86, 179, 0.10), transparent 60%),
        radial-gradient(240px 160px at 85% 20%, rgba(255, 107, 53, 0.10), transparent 62%);
        pointer-events: none;
    }

    .next-step-l1__title {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 44px);
        font-weight: 900;
        letter-spacing: -.02em;
        line-height: 1.1;
        position: relative;
        display: inline-block;
    }

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

    .next-step-l1__underline {
        position: absolute;
        left: 0;
        bottom: -20px;
        height: 10px;
        width: 0%;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(0, 86, 179, 0.25), rgba(255, 107, 53, 0.25));
        transition: width 520ms var(--anim-ease);
        z-index: 0;
    }

    .next-step-l1__text {
        margin: 34px auto 0;
        max-width: 72ch;
        font-size: clamp(16px, 2vw, 20px);
        line-height: var(--line-height-base);
        color: var(--neutral-600);
        position: relative;
        z-index: 1;
    }

    .next-step-l1__actions {
        margin-top: 22px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .next-step-l1__btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 900;
        border: 1px solid rgba(0, 0, 0, 0.08);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .next-step-l1__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: rgba(0, 86, 179, 0.25);
    }

    .next-step-l1__btn--secondary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: rgba(255, 107, 53, 0.25);
    }

    .next-step-l1__btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .next-step-l1__ico {
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .next-step-l1__btn:hover .next-step-l1__ico {
        transform: rotate(-8deg) translateX(2px);
    }

    .next-step-l1.is-in .next-step-l1__box {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 520ms var(--anim-ease), transform 520ms var(--anim-ease);
    }

    .next-step-l1.is-in .next-step-l1__underline {
        width: 100%;
    }

    @media (prefers-reduced-motion: reduce) {
        .next-step-l1__box {
            opacity: 1;
            transform: none;
        }

        .next-step-l1__underline {
            width: 100%;
            transition: none;
        }
    }

.clarifications-c1 {

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

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

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

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

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        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-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--ring);
}

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

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

    .main-nav.active {
        right: 0;
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(7px) 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(-7px) rotate(-45deg);
    }
}

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

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

    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        color: #f1c40f;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 300px;
    }

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

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

    .footer-nav a,
    .footer-social a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
        margin: 0 0.3rem;
    }

    .footer-bottom a:hover {
        color: #f1c40f;
    }

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

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

        .footer-contact p {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.faq--colored-v5 {
    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.faq__list {
    display: grid;
    gap: 10px;
}

.faq__item {
    background: rgba(15,23,42,0.96);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    border: 1px solid rgba(148,163,184,0.6);
}

.faq__item--accent {
    border-color: var(--accent);
}

.faq__item--accent {
    border-color: var(--accent);
}

.faq__item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.faq__item p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

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

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

    .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(--bg-page);
        border-radius: var(--radius-lg);
        border: 1px solid var(--neutral-200);
        padding: clamp(18px, 3vw, 32px);
        box-shadow: 0 15px 40px rgba(9, 24, 56, 0.08);

        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: rgba(14, 27, 60, 0.5);
        border-left: 4px solid var(--bg-accent);
        padding-left: 1rem;
    }

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

    .identity-canvas__body p {
        margin: 0 0 1rem;
        color: var(--neutral-600);
    }

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--ring);
}

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

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

    .main-nav.active {
        right: 0;
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(7px) 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(-7px) rotate(-45deg);
    }
}

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

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

    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        color: #f1c40f;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 300px;
    }

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

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

    .footer-nav a,
    .footer-social a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
        margin: 0 0.3rem;
    }

    .footer-bottom a:hover {
        color: #f1c40f;
    }

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

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

        .footer-contact p {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-feedback-list {
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .index-feedback-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-feedback-list__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-list__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-list__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-feedback-list__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-list__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-list__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-list__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

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

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

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

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

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

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

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

.plans-c2 {

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

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

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

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

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

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

    .plans-c2__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    /* spotlight */
    .plans-c2__card::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--sx, 50%) var(--sy, 35%),
        rgba(255, 107, 53, 0.28), transparent 60%);

        transition: opacity 260ms var(--anim-ease);
        pointer-events: none;
    }

    .plans-c2__card.is-hot {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .plans-c2__card.is-hot::before {
        opacity: 1;
    }

    .plans-c2__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .plans-c2__name {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .plans-c2__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, .92);
        font-weight: 900;
        white-space: nowrap;
    }

    .plans-c2__price {
        margin-top: 12px;
        font-size: clamp(20px, 3vw, 34px);
        font-weight: 900;
        letter-spacing: -.02em;
    }

    .plans-c2__bullets {
        margin-top: 12px;
        display: grid;
        gap: 8px;
        color: rgba(255, 255, 255, .84);
        line-height: var(--line-height-base);
    }

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

    .plans-c2__btn:hover {
        background: rgba(255, 255, 255, 0.20);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--ring);
}

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

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

    .main-nav.active {
        right: 0;
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(7px) 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(-7px) rotate(-45deg);
    }
}

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

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

    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        color: #f1c40f;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 300px;
    }

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

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

    .footer-nav a,
    .footer-social a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
        margin: 0 0.3rem;
    }

    .footer-bottom a:hover {
        color: #f1c40f;
    }

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

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

        .footer-contact p {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.contact-form {

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

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

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

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

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

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

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

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

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

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

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

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

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

.contacts--colored-v3 {
        position: relative;
        padding: 64px 20px;
        background:
                linear-gradient(120deg, rgba(12, 15, 32, 0.9), rgba(12, 15, 32, 0.6)),
                radial-gradient(80% 120% at 0% 0%, rgba(255, 140, 97, 0.6), transparent 60%),
                radial-gradient(80% 120% at 100% 30%, rgba(84, 164, 255, 0.7), transparent 55%),
                var(--neutral-900);
        color: var(--neutral-0);
        overflow: hidden;

    }

    .contacts--colored-v3::after {
        content: "";
        position: absolute;
        inset: -20% 40% auto -20%;
        height: 220px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
        transform: rotate(-6deg);
        pointer-events: none;
    }

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

    .contacts__content {
        display: grid;
        gap: 12px;
    }

    .contacts__eyebrow {
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
    }

    .contacts__headline {
        margin: 0;
        font-size: clamp(26px, 4.5vw, 40px);
        line-height: 1.1;
    }

    .contacts__lead {
        margin: 0;
        font-size: 0.98rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .contacts__cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0.8rem 1.3rem;
        border-radius: 999px;
        background: var(--brand-contrast);
        color: var(--neutral-900);
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        transition: transform var(--anim-duration) var(--anim-ease),
            box-shadow var(--anim-duration) var(--anim-ease);
        width: fit-content;
    }

    .contacts__cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    }

    .contacts__panel {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(10px);
    }

    .contacts__panel-inner {
        background: rgba(12, 15, 32, 0.6);
        border-radius: 18px;
        padding: 18px;
        display: grid;
        gap: 10px;
    }

    .contacts__panel h3 {
        margin: 0;
        font-size: 1.1rem;
    }

    .contacts__panel p {
        margin: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.92rem;
    }

    .contacts__chip {
        display: inline-flex;
        align-items: center;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
        font-size: 0.85rem;
    }

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--ring);
}

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

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

    .main-nav.active {
        right: 0;
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(7px) 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(-7px) rotate(-45deg);
    }
}

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

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

    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        color: #f1c40f;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 300px;
    }

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

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

    .footer-nav a,
    .footer-social a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
        margin: 0 0.3rem;
    }

    .footer-bottom a:hover {
        color: #f1c40f;
    }

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

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

        .footer-contact p {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.policy-items {

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

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

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

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

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

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

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

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--ring);
}

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

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

    .main-nav.active {
        right: 0;
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(7px) 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(-7px) rotate(-45deg);
    }
}

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

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

    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        color: #f1c40f;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 300px;
    }

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

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

    .footer-nav a,
    .footer-social a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
        margin: 0 0.3rem;
    }

    .footer-bottom a:hover {
        color: #f1c40f;
    }

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

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

        .footer-contact p {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.terms-items--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.terms-items__title {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.terms-items__list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 10px;
}

.terms-items__item h3 {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

.terms-items__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--ring);
}

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

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

    .main-nav.active {
        right: 0;
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(7px) 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(-7px) rotate(-45deg);
    }
}

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

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

    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        color: #f1c40f;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 300px;
    }

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

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

    .footer-nav a,
    .footer-social a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
        margin: 0 0.3rem;
    }

    .footer-bottom a:hover {
        color: #f1c40f;
    }

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

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

        .footer-contact p {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thanks-light {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--ring);
}

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

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

    .main-nav.active {
        right: 0;
    }

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(7px) 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(-7px) rotate(-45deg);
    }
}

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

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

    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        font-size: 1.8rem;
        color: #f1c40f;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 300px;
    }

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

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

    .footer-nav a,
    .footer-social a,
    .footer-contact a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer-contact p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .footer-bottom a {
        color: #bdc3c7;
        text-decoration: none;
        margin: 0 0.3rem;
    }

    .footer-bottom a:hover {
        color: #f1c40f;
    }

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

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

        .footer-contact p {
            justify-content: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.error-404-light {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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