:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 14.9px;
  --line-height-base: 1.84;

  --max-w: 940px;
  --space-x: 1.64rem;
  --space-y: 1.5rem;
  --gap: 0.96rem;

  --radius-xl: 1.33rem;
  --radius-lg: 1rem;
  --radius-md: 0.67rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 28px rgba(0,0,0,0.07);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 370ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #f59e0b;
  --accent-contrast: #1e293b;

  --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: #f8fafc;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #e2e8f0;

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

  --bg-accent: #fef3c7;
  --fg-on-accent: #92400e;
  --bg-accent-hover: #fbbf24;

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

  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

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

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.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-pills {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

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

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

    .value-pills .pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .value-pills .pill {
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 8px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .value-pills .pill strong {
        font-weight: 600;
    }

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

    .value-pills .note {
        margin: 16px 0 0;
        color: var(--neutral-600);
    }

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

.visual-highlights-light {

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

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

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

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

        transform: translateY(-20px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.post-list {

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

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

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-page);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .post-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .post-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

    .post-list p {
        color: var(--neutral-600);
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--fg-on-page);
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.author {

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

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

    .author .author__content {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: flex-start;
    }

    .author .author__image {
        flex-shrink: 0;
        width: clamp(120px, 18vw, 180px);
        height: clamp(120px, 18vw, 180px);
        border-radius: 50%;
        overflow: hidden;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.5rem;
    }

    .author .author__contacts a {
        color: var(--link);
        text-decoration: none;
        font-size: clamp(14px, 2vw, 16px);
    }

    .author .author__contacts a:hover {
        color: var(--link-hover);
    }

    @media (max-width: 768px) {
        .author .author__content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

.post-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.8);
    box-shadow: var(--shadow-lg);
}

.post-item__category {
    margin: 0 0 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bg-accent);
}

.post-item__header h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.post-item__meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.post-item__lead {
    margin: 12px 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.post-item__body {
    font-size: 0.92rem;
    color: var(--neutral-300);
    line-height: 1.7;
}
.post-item__body h2 {
    color: var(--neutral-100);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-size: 1.1rem;
}

.identity-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .identity-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

    .identity-lv4__head h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .identity-lv4__head span {
        color: var(--neutral-600);
    }

    .identity-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .identity-lv4__stack article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

    .identity-lv4__stack p {
        margin: 7px 0 6px;
        color: var(--neutral-600);
    }

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--fg-on-page);
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.plans-cv1 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .plans-cv1__head {
        margin-bottom: 16px;
    }

    .plans-cv1__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv1__head p {
        margin: 8px 0 0;
        opacity: .9;
        max-width: 72ch;
    }

    .plans-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv1__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.36);
        color: var(--fg-on-page);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

    .plans-cv1__line h3 {
        margin: 0;
    }

    .plans-cv1__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .plans-cv1__price {
        margin: 10px 0 6px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--brand);
    }

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

    .plans-cv1__card ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-cv1__card button {
        width: 100%;
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.article-list--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.article-list__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

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

.article-list__row {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

.article-list__row h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.article-list__row p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.clarifications-c1 {

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

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

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

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

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

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

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

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

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.contact-map {

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

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

    .contact-map .header-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-map .header-section h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

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

    .contact-map .map-section {
        margin-bottom: 2.5rem;
    }

    .contact-map .map-wrapper {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 3px solid var(--bg-accent);
    }

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

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

    .contact-map .contact-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2vw, 20px);
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: transform .2s;
    }

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

    .contact-map .contact-card .icon {
        font-size: 2rem;
        margin-bottom: .75rem;
    }

    .contact-map .contact-card h4 {
        margin: 0 0 .5rem;
        font-size: .95rem;
        opacity: .9;
    }

    .contact-map .contact-card p {
        margin: 0;
        font-size: .9rem;
        color: var(--fg-on-accent);
    }

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

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

.contact-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-page), var(--surface-2));
        color: var(--fg-on-page);
    }

    .contact-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-f .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .contact-layout-f .section-head p {
        margin: 10px auto 0;
        max-width: 74ch;
        color: var(--neutral-600);
    }

    .contact-layout-f .capsule {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

.form-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--neutral-0);
    }

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

    .form-layout-e .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .form-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        color: var(--neutral-100);
    }

    .form-layout-e .dark-card {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .04);
    }

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .07);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

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

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-page);
        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);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.terms-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

    .terms-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

    .terms-layout-c .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

    .terms-layout-c h4 {
        margin: 10px 0 6px;
    }

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

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.terms-layout-b {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .terms-layout-b .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .terms-layout-b .section-head p {
        margin: 10px auto 0;
        color: var(--neutral-600);
        max-width: 74ch;
    }

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

    .terms-layout-b article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--bg-alt);
    }

    .terms-layout-b h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

    .terms-layout-b h4 {
        margin: 10px 0 6px;
    }

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.thank-mode-d {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

    .thank-mode-d h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

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

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

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

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

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

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

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

    .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;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0.75rem;
        right: 0.75rem;
        height: 2px;
        background-color: var(--brand);
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
    }

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

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

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

        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
        }

        .nav-link::after {
            left: 1rem;
            right: 1rem;
        }

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

        .site-header.menu-open::before {
            opacity: 1;
            visibility: visible;
        }
    }

.footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        padding: 2.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        max-width: 300px;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .nav-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.7;
    }
    .footer-contact strong {
        color: #444;
    }
    .footer-contact a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        font-size: 0.85rem;
        color: #777;
        text-align: center;
    }
    .legal-links {
        margin-bottom: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        line-height: 1.5;
        margin: 0.8rem auto 1.2rem;
        max-width: 700px;
    }
    .copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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