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

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

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

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 200ms;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 2;

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

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

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

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

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

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #1e293b;
  --border-on-surface-light: rgba(226, 232, 240, 0.8);

  --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, #f0f9ff 0%, #e0f2fe 100%);
  --gradient-accent: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @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-top: 5rem;
            z-index: 1000;
        }

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

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .header-container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }

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

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

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        color: #3498db;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

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

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

    .footer-nav a,
    .footer-legal a,
    address a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover,
    address a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    address {
        font-style: normal;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

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

        .footer-social {
            justify-content: 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);
    }

.intro-focus-alt {

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

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

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

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: var(--random-number);
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

.value-points-cards {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 56px);
    }

    .value-points-cards__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .value-points-cards__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .value-points-cards__h h2 {
        margin: 0 0 0.75rem;
        font-size: clamp(32px, 4.8vw, 52px);
        font-weight: 800;
    }

    .value-points-cards__h p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .value-points-cards__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        padding: clamp(24px, 3vw, 32px);
        display: flex;
        gap: 1rem;
        box-shadow: var(--shadow-md);

        transform: translateY(30px);
    }

    .value-points-cards__card h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(20px, 2.4vw, 26px);
    }

    .value-points-cards__card p {
        margin: 0 0 0.5rem;
        color: var(--neutral-600);
    }

    .value-points-cards__card span {
        display: inline-flex;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--brand);
    }

.social-c2 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .social-c2__qRole {
        opacity: .85;
    }

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

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

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

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

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

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

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

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

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

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

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @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-top: 5rem;
            z-index: 1000;
        }

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

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .header-container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }

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

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

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        color: #3498db;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

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

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

    .footer-nav a,
    .footer-legal a,
    address a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover,
    address a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    address {
        font-style: normal;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

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

        .footer-social {
            justify-content: 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);
    }

.about-timeline {

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

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__tbl {
        width: 100%;
        border-collapse: collapse;
    }

    .about-timeline .about-timeline__tbl td {
        border-bottom: 1px solid var(--ring);
        padding: .7rem .8rem;
    }

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

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

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

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

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

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

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

    .identity-constellation__h > p {
        margin: 0 auto;
        max-width: 680px;
        color: var(--fg-on-accent);
        font-size: clamp(16px, 2.1vw, 20px);
        opacity: 0.9;
    }

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

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

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

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

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

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

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

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

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

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

    .identity-constellation__content p {
        margin: 0 0 0.75rem;
        color: var(--neutral-800);
    }

    .identity-constellation__content footer {
        margin: 0;
        font-weight: 600;
        color: var(--accent);
    }

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

    .faq-rows .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

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

    .faq-rows h3 {
        margin: 0 0 8px;
        font-size: 1.05rem;
    }

    .faq-rows p {
        margin: 0;
        color: var(--neutral-600);
    }

.our-story {

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @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-top: 5rem;
            z-index: 1000;
        }

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

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .header-container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }

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

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

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        color: #3498db;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

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

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

    .footer-nav a,
    .footer-legal a,
    address a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover,
    address a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    address {
        font-style: normal;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

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

        .footer-social {
            justify-content: 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);
    }

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

.plans-l1 {

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

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

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

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

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

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

    .plans-l1__col {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.capabilities {

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

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

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

    }

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

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

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

    .capabilities .capabilities__card {
        background: var(--surface-light);
        padding: clamp(28px, 4vw, 40px);
        border-radius: var(--radius-xl);
        position: relative;

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

    .capabilities .capabilities__card:hover {
        transform: translateY(-8px);
    }

    .capabilities .capabilities__step {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .capabilities .capabilities__icon {
        font-size: 40px;
        margin-bottom: 1.5rem;
    }

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

    .capabilities .capabilities__card p {
        margin: 0;
        color: var(--neutral-600);
        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(--accent);
    }

    .main-nav {
        display: flex;
    }

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

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @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-top: 5rem;
            z-index: 1000;
        }

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

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .header-container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }

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

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

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        color: #3498db;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

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

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

    .footer-nav a,
    .footer-legal a,
    address a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover,
    address a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    address {
        font-style: normal;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

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

        .footer-social {
            justify-content: 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-sheet {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .form-sheet .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

    .form-sheet .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

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

    .form-sheet .cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

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

    .form-sheet input:not([type="checkbox"]),
    .form-sheet textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

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

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

    .form-sheet .info {
        margin-top: 10px;
        display: grid;
        gap: 6px;
    }

    .form-sheet .info p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .form-sheet .cols {
            grid-template-columns: 1fr;
        }
    }

.contact-support--colored-v2 {
        position: relative;
        padding: 60px 20px;
        background:
                radial-gradient(120% 120% at 10% 10%, rgba(56, 189, 248, 0.5), transparent 60%),
                radial-gradient(120% 120% at 100% 0%, rgba(251, 146, 60, 0.6), transparent 55%),
                #0b1120;
        color: var(--neutral-0);

        overflow: hidden;
    }

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

    .contact-support__banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 24px;
        border-radius: 24px;
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(148, 163, 184, 0.45);
        box-shadow: 0 20px 45px rgba(3, 7, 18, 0.45);
        backdrop-filter: blur(10px);
    }

    .contact-support__banner h3 {
        margin: 0 0 6px;
        font-size: clamp(22px, 4vw, 32px);
    }

    .contact-support__banner p {
        margin: 0;
        color: rgba(226, 232, 240, 0.8);
        font-size: 0.95rem;
    }

    .contact-support__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.4rem;
        border-radius: 999px;
        background: var(--brand-contrast);
        color: #0b1120;
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

    @media (max-width: 768px) {
        .contact-support__banner {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

    .contact-stack .wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

    .contact-stack .lead {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

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

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

    .contact-stack .rows {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 8px;
    }

    .contact-stack label {
        display: grid;
        gap: 6px;
    }

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

    .contact-stack button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

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

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

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

    .contact-stack .social a:hover {
        transform: translateY(-2px);
    }

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @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-top: 5rem;
            z-index: 1000;
        }

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

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .header-container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }

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

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

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        color: #3498db;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

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

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

    .footer-nav a,
    .footer-legal a,
    address a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover,
    address a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    address {
        font-style: normal;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

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

        .footer-social {
            justify-content: 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-capsules {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

    .policy-capsules article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--neutral-0);
        padding: 14px 16px;
    }

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

    .policy-capsules article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .policy-capsules span {
        font-size: .85rem;
        color: var(--neutral-600);
    }

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @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-top: 5rem;
            z-index: 1000;
        }

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

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .header-container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }

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

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

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        color: #3498db;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

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

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

    .footer-nav a,
    .footer-legal a,
    address a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover,
    address a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    address {
        font-style: normal;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

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

        .footer-social {
            justify-content: 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(--accent);
    }

    .main-nav {
        display: flex;
    }

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

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @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-top: 5rem;
            z-index: 1000;
        }

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

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .header-container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }

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

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

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        color: #3498db;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

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

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

    .footer-nav a,
    .footer-legal a,
    address a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover,
    address a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    address {
        font-style: normal;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

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

        .footer-social {
            justify-content: 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-a {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @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-top: 5rem;
            z-index: 1000;
        }

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

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .header-container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }

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

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

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 1rem 0;
        color: #3498db;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

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

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

    .footer-nav a,
    .footer-legal a,
    address a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover,
    address a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    address {
        font-style: normal;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

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

        .footer-social {
            justify-content: 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-c {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: linear-gradient(135deg, var(--neutral-900), var(--neutral-800));
        color: var(--neutral-0);
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .nf-core-c h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        line-height: 1.2;
        margin-bottom: var(--space-y);
    }

    .nf-core-c p {
        margin: 10px 0 0;
        color: var(--neutral-300);
        font-size: 1.125rem;
        line-height: var(--line-height-base);
        margin-bottom: calc(var(--space-y) * 1.5);
    }

    .nf-core-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .35);
        color: var(--neutral-0);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.05);
        transition: background-color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .nf-core-c a:hover {
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, .6);
    }

    .nf-core-c .links {
        margin-top: calc(var(--space-y) * 1.5);
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
        justify-content: center;
    }

    .nf-core-c .links a {
        margin-top: 0;
        border: 1px solid var(--neutral-600);
        background-color: transparent;
        color: var(--neutral-300);
    }

    .nf-core-c .links a:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--neutral-0);
        border-color: var(--neutral-300);
    }