:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 19.7px;
  --line-height-base: 1.63;

  --max-w: 1340px;
  --space-x: 1.72rem;
  --space-y: 1.5rem;
  --gap: 1.33rem;

  --radius-xl: 1.07rem;
  --radius-lg: 0.89rem;
  --radius-md: 0.6rem;
  --radius-sm: 0.34rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 20px rgba(0,0,0,0.11);
  --shadow-lg: 0 22px 32px rgba(0,0,0,0.13);

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

  --brand: #10b981;
  --brand-contrast: #ffffff;
  --accent: #f59e0b;
  --accent-contrast: #000000;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #0a0a0a;
  --fg-on-page: #f9fafb;

  --bg-alt: #111827;
  --fg-on-alt: #e5e7eb;

  --surface-1: #1e293b;
  --surface-2: #334155;
  --fg-on-surface: #e2e8f0;
  --border-on-surface: #475569;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1f2937;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #10b981;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #059669;
  --ring: #10b981;

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

  --link: #60a5fa;
  --link-hover: #93c5fd;

  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #111827 50%, #1e293b 100%);
  --gradient-accent: linear-gradient(90deg, #10b981 0%, #059669 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --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: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.wp-lang-switcher-v12 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v12__control {
        border: 0;
        border-radius: 14px;
        padding: 10px 13px;
        background: linear-gradient(145deg, #111827, #0f766e);
        color: #ecfeff;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        cursor: pointer;
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v12__control-icon {
        font-size: 14px;
        line-height: 1;
    }

    .wp-lang-switcher-v12__sheet {
        margin-top: 8px;
        padding: 8px;
        border-radius: 14px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        width: min(220px, 80vw);
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v12__sheet.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .wp-lang-switcher-v12__sheet button,
    .wp-lang-switcher-v12__sheet a {
        flex: 1 1 calc(50% - 3px);
        min-height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.04em;
    }

    .wp-lang-switcher-v12__sheet button:hover,
    .wp-lang-switcher-v12__sheet a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-window-l9 {
        padding: clamp(3.7rem, 8vw, 6.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-window-l9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-window-l9__copy {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .intro-window-l9__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .intro-window-l9__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-window-l9__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.03;
    }

    .intro-window-l9__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-window-l9__links {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-window-l9__links a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__links a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .intro-window-l9__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__mark {
        margin-top: .85rem;
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

.values-beads-c3 {
        padding: clamp(3.5rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .values-beads-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

    .values-beads-c3__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .values-beads-c3__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

    .values-beads-c3__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-beads-c3__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.capabilities-light-alt {

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

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

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

    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

        }
    }

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

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

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

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

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

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

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

.visual-path-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

    .visual-path-c3__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .visual-path-c3__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-path-c3__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

    .visual-path-c3__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-path-c3__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-path-c3__content p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 680px) {
        .visual-path-c3__content {
            grid-template-columns: 1fr;
        }
    }

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.post-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        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-primary);
    }

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

    .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 {
        text-decoration: none;
        color: var(--fg-on-surface-light);
    }

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

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

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.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-200);
    line-height: 1.7;
}

.articles {

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

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

    .articles .articles__title {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 clamp(40px, 6vw, 56px);
        color: var(--fg-on-surface-light);
    }

    .articles .articles__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(28px, 4.5vw, 40px);
    }

    .articles .articles__card {
        background: var(--bg-page);
        border-radius: var(--radius-xl);
        overflow: hidden;
        transition: transform 0.3s;
    }

    .articles .articles__card:hover {
        transform: translateY(-6px);
    }

    .articles .articles__link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .articles .articles__image {
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content {
        padding: clamp(24px, 4vw, 32px);
    }

    .articles .articles__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .articles .articles__content p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 1rem;
    }

    .articles .articles__date {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

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

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

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

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.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-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

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

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

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

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

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

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

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

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.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);
    color: var(--neutral-900);
}

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

.article-list__row:hover {
    box-shadow: var(--shadow-md);
}

.article-list__row h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--fg-on-page);
}

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

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

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

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

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

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

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

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

    .index-recommendations-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

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

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

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

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

        transform: translateY(24px);
    }

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

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

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

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-800);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-recommendations-list__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
    }

    .index-recommendations-list__cta::after {
        content: '->';
    }

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }
    .main-form .main {
        margin-top: 0;
    }

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .form-fresh-v6 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

    .form-fresh-v6 input {
        padding: .58rem .7rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v6 button {
        justify-self: start;
        padding: .68rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 720px) {
        .form-fresh-v6 label {
            grid-template-columns:1fr;
        }
    }

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

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

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

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

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

    .contact-layout-b .section-head {
        margin-bottom: 16px;
    }

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

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

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

    .terms-layout-a .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

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

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

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

    .thank-mode-b p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

.header-left {
    flex-shrink: 0;
}

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

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

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

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

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.contact-info {
    text-align: right;
}

.contact-text {
    font-size: calc(var(--font-size-base) * 0.9);
    color: var(--neutral-600);
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(4px);
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5rem;
        padding-left: var(--space-x);
        transform: translateX(-100%);
        opacity: 0;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        flex-basis: 100%;
        margin-top: var(--space-y);
        justify-content: center;
    }
    .header-right {
        margin-left: auto;
    }
}

.site-footer {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        border-top: 1px solid #333;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .tagline {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
        max-width: 90%;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

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

    .nav-list li,
    .legal-links li {
        margin-bottom: 0.75rem;
    }

    .nav-list a,
    .legal-links a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover,
    .legal-links a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
        transition: background-color 0.2s ease;
    }

    .social-links a:hover {
        background-color: #4dabf7;
    }

    .footer-contact address {
        font-style: normal;
        color: #b0b0b0;
        line-height: 1.7;
    }

    .footer-contact strong {
        color: #d0d0d0;
        font-weight: 600;
        display: inline-block;
        min-width: 80px;
    }

    .footer-contact a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact a:hover {
        color: #4dabf7;
        text-decoration: underline;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .footer-disclaimer a {
        color: #aaa;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #4dabf7;
    }

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

        .footer-brand,
        .footer-nav,
        .footer-legal,
        .footer-contact {
            text-align: center;
        }

        .tagline {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact strong {
            min-width: auto;
            margin-right: 0.5rem;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.err-slab-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

    .err-slab-f h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        color: var(--fg-on-surface);
    }

    .err-slab-f p {
        margin: 12px 0 0;
        color: var(--neutral-300);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }

    .err-slab-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .err-slab-f a:hover {
        background: var(--bg-primary-hover);
    }