:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 13.6px;
  --line-height-base: 1.24;

  --max-w: 1120px;
  --space-x: 0.95rem;
  --space-y: 0.57rem;
  --gap: 0.78rem;

  --radius-xl: 0.93rem;
  --radius-lg: 0.63rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.07);

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

  --brand: #4a6fa5;
  --brand-contrast: #ffffff;
  --accent: #e67e22;
  --accent-contrast: #ffffff;

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

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

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

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

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #4a6fa5;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #3a5a8c;
  --ring: rgba(74, 111, 165, 0.4);

  --bg-accent: #fef6ec;
  --fg-on-accent: #8c4a0c;
  --bg-accent-hover: #f39c12;

  --link: #4a6fa5;
  --link-hover: #3a5a8c;

  --gradient-hero: linear-gradient(135deg, #4a6fa5 0%, #6a8cc5 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #f39c12 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;}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.wp-lang-switcher {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;
        font-family: var(--font-family, inherit);
    }

    .wp-lang-switcher__btn {
        background: var(--neutral-800, rgba(0, 0, 0, .75));
        color: var(--neutral-0, #fff);
        padding: calc(8px + var(--random-number, 1) * 2px) calc(12px + var(--random-number, 1) * 2px);
        border-radius: calc(var(--radius-lg, 14px) - var(--random-number, 1) * 2px);
        cursor: pointer;
        display: flex;
        gap: var(--gap, 10px);
        align-items: center;
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border: 1px solid var(--border-on-surface, transparent);
    }

    .wp-lang-switcher__btn:hover {
        background: var(--neutral-900, rgba(0, 0, 0, .85));
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
    }

    .wp-lang-switcher__label {
        font-size: var(--font-size-base, 16px);
    }

    .wp-lang-switcher__chev {
        font-size: 12px;
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher__list.open ~ .wp-lang-switcher__btn .wp-lang-switcher__chev,
    .wp-lang-switcher__btn:has(~ .wp-lang-switcher__list.open) .wp-lang-switcher__chev {
        transform: rotate(180deg);
    }

    .wp-lang-switcher__list {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 8px);
        background: var(--surface-1, #fff);
        border-radius: calc(var(--radius-lg, 14px) + var(--random-number, 1) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg, 0 10px 30px rgba(0, 0, 0, .2));
        min-width: calc(210px + var(--random-number, 1) * 10px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
    }

    .wp-lang-switcher__list.open {
        display: block;
    }

    .wp-lang-switcher__list button,
    .wp-lang-switcher__list a {
        width: 100%;
        text-align: left;
        padding: calc(8px + var(--random-number, 1) * 2px) calc(10px + var(--random-number, 1) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;
        font-family: var(--font-family, inherit);
        font-size: var(--font-size-base, 16px);
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher__list button:hover,
    .wp-lang-switcher__list a:hover {
        background: var(--bg-alt, #f3f4f6);
    }

.intro-spokes-c3 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .intro-spokes-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .intro-spokes-c3__hero {
        flex: 1 1 22rem;
    }

    .intro-spokes-c3__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: .82rem;
    }

    .intro-spokes-c3__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1.02;
    }

    .intro-spokes-c3__hero span {
        display: block;
        margin-top: 1rem;
        color: rgba(255, 255, 255, .88);
        max-width: 38rem;
    }

    .intro-spokes-c3__wheel {
        flex: 0 0 18rem;
        min-height: 18rem;
        position: relative;
    }

    .intro-spokes-c3__core {
        position: absolute;
        inset: 50% auto auto 50%;
        transform: translate(-50%, -50%);
        width: 8rem;
        height: 8rem;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
        font-size: 2.2rem;
        font-weight: 700;
    }

    .intro-spokes-c3__note {
        position: absolute;
        padding: .6rem .8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-spokes-c3__note--a {
        top: 0;
        left: 18%;
    }

    .intro-spokes-c3__note--b {
        right: 0;
        top: 42%;
    }

    .intro-spokes-c3__note--c {
        left: 0;
        bottom: 12%;
    }

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

    .next-grid-l8__copy p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-grid-l8__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .next-grid-l8__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .next-grid-l8__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .next-grid-l8__grid a {
        color: var(--link);
        text-decoration: none;
    }

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

    .next-grid-l8__foot a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

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

.clarifications-l1 {

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

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

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

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

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

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

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

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

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

.messages__row {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid var(--border-on-surface-light);
}

.messages__row-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg-on-page);
}

.messages__row-text {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .index-feedback__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

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

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

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

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

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

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

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

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.timeline--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.timeline__inner {
    max-width: 640px;
    margin: 0 auto;
}

.timeline__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.timeline__list--light {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.timeline__row:first-child {
    border-top: none;
}

.timeline__row-time {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

.timeline__row-label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.team-orbit {

        background: radial-gradient(circle at 10% 10%, rgba(255, 139, 92, 0.18), transparent 40%), var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .team-orbit::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 10%, rgba(73, 146, 255, 0.4), transparent 50%);
        opacity: 0.4;
        pointer-events: none;
    }

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

    .team-orbit__h {
        text-align: center;
        margin-bottom: clamp(48px, 6vw, 80px);

    }

    .team-orbit__eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0 0.75rem;
    }

    .team-orbit h2 {
        margin: 0 0 1rem;
        font-size: clamp(34px, 5vw, 58px);
    }

    .team-orbit__lead {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.75);
    }

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

    .team-orbit__card {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        background: rgba(3, 7, 21, 0.65);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 32px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 40px rgba(1, 4, 16, 0.6);
        backdrop-filter: blur(18px);

        transform: translateY(30px);
    }

    .team-orbit__avatar {
        width: 80px;
        height: 80px;
        border-radius: 24px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .team-orbit__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .team-orbit__meta h3 {
        margin: 0;
        font-size: 1.4rem;
    }

    .team-orbit__meta span {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
    }

    .team-orbit__content p {
        margin: 0.75rem 0 1rem;

    }

    .team-orbit__focus {
        display: inline-flex;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        background: rgba(255, 139, 92, 0.2);
        color: var(--bg-accent);
        font-weight: 600;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.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;
        margin-bottom: 24px;
    }

    .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 .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: var(--gap);
        max-width: 400px;
        margin-top: 20px;
    }

    .touch-panorama .subscribe-form input {
        padding: 12px 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        font-family: var(--font-family);
        font-size: var(--font-size-base);
    }

    .touch-panorama .subscribe-form input::placeholder {
        color: var(--input-placeholder);
    }

    .touch-panorama .main {
        display: inline-block;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
        border: none;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        cursor: pointer;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .touch-panorama .main:hover {
        background: var(--bg-accent-hover);
        color: var(--fg-on-accent);
    }

    .touch-panorama .consent {
        font-size: 0.85rem;
        color: var(--fg-on-primary);
        opacity: 0.9;
        margin-top: 8px;
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

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

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

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

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

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
    }

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.map-cards-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .map-cards-l2__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .map-cards-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .map-cards-l2__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-cards-l2__frame {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-cards-l2__frame iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    .map-cards-l2__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .map-cards-l2__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-cards-l2__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    @media (max-width: 640px) {
        .map-cards-l2__grid {
            grid-template-columns: 1fr;
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    background-color: var(--surface-2);
    position: relative;
  }

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

  .nav-list li {
    flex: 0 0 auto;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--link-hover);
    border-bottom-color: var(--accent);
    outline: none;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    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"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .burger-menu {
      display: flex;
      align-self: flex-end;
      margin-right: var(--space-x);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      width: 100%;
      padding: 0 var(--space-x);
    }

    .nav-list.active {
      max-height: 500px;
      padding-bottom: var(--space-y);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      border-bottom-color: var(--accent);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .logo-section {
        display: flex;
        align-items: flex-start;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-block li {
        color: #555;
    }
    .contact-block a {
        color: #007bff;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom-content {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        color: #888;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        .footer-bottom-content {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.err-slab-b {
    padding: clamp(56px, 10vw, 112px) 20px;
    background: var(--bg-alt);
    color: var(--fg-on-page);
}

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

.err-slab-b h1 {
    margin: 0;
    font-size: clamp(32px, 6vw, 56px);
    color: var(--brand);
}

.err-slab-b p {
    margin: 10px 0 0;
    color: var(--neutral-600);
}

.err-slab-b a {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 17px;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    text-decoration: none;
}