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

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

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

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);

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

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

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

  --bg-page: #ffffff;
  --fg-on-page: #1e293b;

  --bg-alt: #f8fafc;
  --fg-on-alt: #334155;

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

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

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

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

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

  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(90deg, #f5f3ff 0%, #e0e7ff 100%);

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            margin-top: calc(var(--space-y) * 3);
        }

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

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }

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

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

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

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

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

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

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

    .footer-bottom a:hover {
        text-decoration: underline;
        color: #495057;
    }

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

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

.value-points-wave {

        background:
            radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.25), transparent 55%),
            var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 56px);
        position: relative;
        overflow: hidden;
    }

    .value-points-wave::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 60%, rgba(0, 0, 0, 0.15), transparent 50%);
        pointer-events: none;
    }

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

    .value-points-wave__h {
        text-align: center;
        margin-bottom: clamp(44px, 6vw, 80px);

        transform: translateY(-20px);
    }

    .value-points-wave__h h2 {
        margin: 0 0 0.75rem;
        font-size: clamp(34px, 5vw, 58px);
        font-weight: 800;
    }

    .value-points-wave__h p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
    }

    .value-points-wave__timeline {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 32px);
        position: relative;
    }

    .value-points-wave__timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
    }

    .value-points-wave__item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: clamp(20px, 3vw, 28px);
        background: rgba(0, 0, 0, 0.35);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);

        transform: translateY(40px);
    }

    @media (min-width: 768px) {
        .value-points-wave__item {
            width: 48%;
        }

        .value-points-wave__item:nth-child(odd) {
            align-self: flex-start;
        }

        .value-points-wave__item:nth-child(even) {
            align-self: flex-end;
        }
    }

    .value-points-wave__badge {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        letter-spacing: 0.1em;
        font-size: 18px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .value-points-wave__content h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(20px, 2.5vw, 26px);
        color: var(--neutral-0);
    }

    .value-points-wave__content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
    }

    .value-points-wave__content span {
        display: inline-flex;
        margin-top: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.65);
    }

.social-l1 {

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

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

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

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

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

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

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

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

.visual-highlights-flow {

        background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.25), transparent 55%),
        var(--gradient-accent),
        var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 60px);
        position: relative;
        overflow: hidden;
    }

    .visual-highlights-flow::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.18), transparent 55%);
        pointer-events: none;
    }

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

    .visual-highlights-flow__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);

        transform: translateY(-20px);
    }

    .visual-highlights-flow h2 {
        margin: 0 0 1rem;
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
    }

    .visual-highlights-flow__subtitle {
        margin: 0;
        font-size: clamp(16px, 2vw, 20px);
        color: rgba(255, 255, 255, 0.82);
    }

    .visual-highlights-flow__rail {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(24px, 3vw, 40px);
    }

    .visual-highlights-flow__panel {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.15);
        overflow: hidden;
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);

        transform: translateY(40px);
    }

    .visual-highlights-flow__media {
        position: relative;
        padding-top: 62%;
        background-size: cover;
        background-position: center;
    }

    .visual-highlights-flow__glow {
        position: absolute;
        inset: 0;

        transition: opacity 0.4s ease;
        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35), transparent 60%);
    }

    .visual-highlights-flow__panel:hover .visual-highlights-flow__glow {
        opacity: 1;
    }

    .visual-highlights-flow__step {
        position: absolute;
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--accent-contrast);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 0.04em;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .visual-highlights-flow__content {
        padding: clamp(24px, 3vw, 32px);
    }

    .visual-highlights-flow__caption {
        margin: 0 0 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.65);
    }

    .visual-highlights-flow__content h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        color: var(--neutral-0);
    }

    .visual-highlights-flow__content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            margin-top: calc(var(--space-y) * 3);
        }

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

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }

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

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

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

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

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

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

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

    .footer-bottom a:hover {
        text-decoration: underline;
        color: #495057;
    }

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

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.our-story--colored-v5 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-wave .wrap {
        max-width: 880px;
        margin: 0 auto;
    }

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

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

    .faq-wave header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .faq-wave .list {
        display: grid;
        gap: 10px;
    }

    .faq-wave .item {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        overflow: hidden;
    }

    .faq-wave .q {
        width: 100%;
        border: 0;
        background: transparent;
        color: var(--fg-on-primary);
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
    }

    .faq-wave .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-wave .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .9;
    }

    .faq-wave .item.open .a {
        max-height: 220px;
    }

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            margin-top: calc(var(--space-y) * 3);
        }

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

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }

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

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

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

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

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

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

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

    .footer-bottom a:hover {
        text-decoration: underline;
        color: #495057;
    }

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

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.capabilities-light-alt {

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

    .capabilities-light-alt .capabilities-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .capabilities-light-alt .capabilities-light-alt__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-light-alt .capabilities-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .capabilities-light-alt .capabilities-light-alt__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 4vw, 48px);
        position: relative;
    }

    .capabilities-light-alt .capabilities-light-alt__step {
        position: relative;

        transform: translateY(30px);
    }

    .capabilities-light-alt .capabilities-light-alt__number {
        width: 56px;
        height: 56px;
        background: var(--brand);
        color: var(--fg-on-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 2;
    }

    .capabilities-light-alt .capabilities-light-alt__number::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: var(--brand);
        opacity: 0.2;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }
        100% {
            transform: scale(1.5);

        }
    }

    .capabilities-light-alt .capabilities-light-alt__box {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        text-align: center;
        position: relative;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .capabilities-light-alt .capabilities-light-alt__step:hover .capabilities-light-alt__box {
        border-color: var(--brand);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .capabilities-light-alt .capabilities-light-alt__box h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

    .capabilities-light-alt .capabilities-light-alt__box p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .capabilities-light-alt .capabilities-light-alt__arrow {
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        font-size: 32px;
        color: var(--brand);
        opacity: 0.5;
    }

    .capabilities-light-alt .capabilities-light-alt__step:last-child .capabilities-light-alt__arrow {
        display: none;
    }

    @media (min-width: 768px) {
        .capabilities-light-alt .capabilities-light-alt__arrow {
            bottom: auto;
            top: 50%;
            left: auto;
            right: -40px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

.hiw-c1 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            margin-top: calc(var(--space-y) * 3);
        }

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

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }

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

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

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

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

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

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

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

    .footer-bottom a:hover {
        text-decoration: underline;
        color: #495057;
    }

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

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-support--light-v4 {
        padding: 56px 20px;
        background:
                radial-gradient(120% 120% at 0% 0%, rgba(59, 130, 246, 0.15), transparent 55%),
                radial-gradient(120% 120% at 100% 20%, rgba(16, 185, 129, 0.15), transparent 55%),
                #fff;
        color: var(--fg-on-page);

    }

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

    .contact-support__columns {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-support__col {
        padding: 20px 22px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--ring);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
        position: relative;
        overflow: hidden;
    }

    .contact-support__col::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(59, 130, 246, 0.08), transparent 60%);
        pointer-events: none;
    }

    .contact-support__col h4 {
        margin: 0 0 6px;
        font-size: 1.05rem;

    }

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

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

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

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

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

    .contact-hub .lead {
        margin-bottom: 14px;
    }

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

    .contact-hub .lead p {
        margin: 10px 0 0;
    }

    .contact-hub .layout {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
    }

    .contact-hub .meta,
    .contact-hub .form {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: 14px;
    }

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

    .contact-hub article {
        border-bottom: 1px solid var(--chip-bg);
        padding: 8px 0;
    }

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

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

    .contact-hub .k {
        font-size: .85rem;
        opacity: .8;
    }

    .contact-hub label {
        display: grid;
        gap: 6px;
        margin-bottom: 8px;
    }

    .contact-hub input,
    .contact-hub textarea,
    .contact-hub select {
        width: 100%;
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .contact-hub button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--border-on-surface-light);
        color: var(--fg-on-page);
        padding: 9px 12px;
    }

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

    .contact-hub .social p {
        margin: 0;
    }

    .contact-hub .social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid var(--chip-bg);
        display: grid;
        place-items: center;
        color: var(--fg-on-primary);
        text-decoration: none;
    }

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            margin-top: calc(var(--space-y) * 3);
        }

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

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }

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

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

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

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

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

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

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

    .footer-bottom a:hover {
        text-decoration: underline;
        color: #495057;
    }

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

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

    .policy-zigzag .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .policy-zigzag .lead {
        margin: 10px 0 14px;
    }

    .policy-zigzag .list {
        display: grid;
        gap: 10px;
    }

    .policy-zigzag article {
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
    }

    .policy-zigzag article:nth-child(even) {
        margin-left: 24px;
    }

    .policy-zigzag article:nth-child(odd) {
        margin-right: 24px;
    }

    .policy-zigzag .meta {
        margin: 0;
        font-size: .85rem;
        color: var(--neutral-300);
    }

    .policy-zigzag h3 {
        margin: 6px 0;
    }

    .policy-zigzag article p {
        margin: 0;
    }

    @media (max-width: 680px) {
        .policy-zigzag article:nth-child(even),
        .policy-zigzag article:nth-child(odd) {
            margin: 0;
        }
    }

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            margin-top: calc(var(--space-y) * 3);
        }

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

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }

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

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

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

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

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

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

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

    .footer-bottom a:hover {
        text-decoration: underline;
        color: #495057;
    }

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

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

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

    .terms-columns header {
        margin-bottom: 14px;
    }

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

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

    .terms-columns .cols {
        column-count: 2;
        column-gap: 12px;
    }

    .terms-columns article {
        break-inside: avoid;
        margin-bottom: 10px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
    }

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

    .terms-columns p,
    .terms-columns li {
        color: var(--neutral-600);
    }

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            margin-top: calc(var(--space-y) * 3);
        }

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

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }

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

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

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

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

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

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

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

    .footer-bottom a:hover {
        text-decoration: underline;
        color: #495057;
    }

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

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) * 1.5);
            margin-top: calc(var(--space-y) * 3);
        }

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

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }

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

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

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

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

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

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

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

    .footer-bottom a:hover {
        text-decoration: underline;
        color: #495057;
    }

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

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

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

    .cookie-mini p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

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

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

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

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