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

  --max-w: 1260px;
  --space-x: 1.02rem;
  --space-y: 1.01rem;
  --gap: 0.87rem;

  --radius-xl: 1.1rem;
  --radius-lg: 0.8rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.09);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.14);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 240ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #1a365d;
  --brand-contrast: #ffffff;
  --accent: #2d5aa0;
  --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: #343a40;

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #e9ecef;

  --bg-primary: #1a365d;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2d5aa0;
  --ring: rgba(26, 54, 93, 0.25);

  --bg-accent: #e8effa;
  --fg-on-accent: #1a365d;
  --bg-accent-hover: #3a6bc8;

  --link: #2d5aa0;
  --link-hover: #1a365d;

  --gradient-hero: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --gradient-accent: linear-gradient(90deg, #1a365d 0%, #2d5aa0 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-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

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

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v6__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(9px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0,0,0,0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 400;
        position: relative;
    }

    .wp-lang-switcher-v6__btn::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--neutral-600, #4b5563);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__btn:hover {
        background: var(--surface-2, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
    }

    .wp-lang-switcher-v6__dropdown.open ~ .wp-lang-switcher-v6__btn::after,
    .wp-lang-switcher-v6__btn:has(~ .wp-lang-switcher-v6__dropdown.open)::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .wp-lang-switcher-v6__flag {
        font-size: 18px;
        line-height: 1;
    }

    .wp-lang-switcher-v6__text {
        padding-right: calc(12px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v6__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 4px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
        min-width: calc(180px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(6px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__dropdown.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v6__dropdown button,
    .wp-lang-switcher-v6__dropdown a {
        width: 100%;
        text-align: left;
        padding: calc(9px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
    }

    .wp-lang-switcher-v6__dropdown button:hover,
    .wp-lang-switcher-v6__dropdown a:hover {
        background: var(--bg-alt, #f9fafb);
    }

    .wp-lang-switcher-v6__dropdown button:active,
    .wp-lang-switcher-v6__dropdown a:active {
        background: var(--neutral-100, #f3f4f6);
    }

* {
        box-sizing: border-box;
    }

    .intro-tableau-l14 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-tableau-l14__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        align-items: start;
    }

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

    .intro-tableau-l14__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.1rem);
        line-height: 1.04;
    }

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

    .intro-tableau-l14__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-tableau-l14__stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-tableau-l14__stats strong {
        display: block;
        color: var(--brand);
        font-size: 1.35rem;
    }

    .intro-tableau-l14__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .intro-tableau-l14__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

    }

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

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

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

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

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

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

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

    }

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

.why-choose-light-alt {

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

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

    .why-choose-light-alt .why-choose-light-alt__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
        position: relative;
        display: inline-block;
    }

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

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

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
        position: relative;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

.blog-list {

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

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

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-page);
    }

    .blog-list .blog-list__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
    }

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

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

    .blog-list p {
        color: var(--neutral-300);
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

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

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(17, 24, 39, .28), rgba(17, 24, 39, .28)), url('https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

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

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

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

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

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

.blog-item {

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

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

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

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

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

.blog-item {

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

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

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

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

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-page);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

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

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

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

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

    .support-lv4__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .support-lv4__wrap {
            grid-template-columns: 1fr;
        }
    }

.index-recommendations {
        background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 70%, 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);
    }

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

    .index-recommendations__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .index-recommendations__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -0.01em;
    }

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

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

    .index-recommendations__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

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

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

    .form-layout-b .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-b .split {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
    }

    .form-layout-b aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .form-layout-b aside h3 {
        margin: 0;
    }

    .form-layout-b aside p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .form-layout-b form {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
    }

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

    .form-layout-b input, .form-layout-b textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-b button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-b .split {
            grid-template-columns: 1fr;
        }
    }

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

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

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-poster-c7__embed iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

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

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

.thank-mode-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

    .thank-mode-f p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

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

.header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
        position: relative;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    .logo:hover,
    .logo:focus {
        color: var(--accent);
        outline: none;
    }

    .burger-menu {
        display: none;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
        width: 2.5rem;
        height: 2.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        cursor: pointer;
        z-index: 1001;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-menu:hover,
    .burger-menu:focus {
        background-color: var(--surface-2);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .burger-menu span {
        display: block;
        width: 1.25rem;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        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(0.5rem) rotate(45deg);
    }

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

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

    .main-nav {
        width: 100%;
    }

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

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        color: var(--fg-on-surface);
        background-color: var(--surface-1);
        text-decoration: none;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--surface-2);
        color: var(--link-hover);
        border-color: var(--accent);
        outline: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .nav-link:active {
        transform: translateY(0);
    }

    @media (max-width: 767px) {
        .header-container {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: calc(var(--space-y) * 0.75);
            padding-bottom: calc(var(--space-y) * 0.75);
        }

        .logo-wrapper {
            width: auto;
            justify-content: flex-start;
        }

        .logo {
            font-size: calc(var(--font-size-base) * 2);
        }

        .burger-menu {
            display: flex;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--bg-page);
            border-top: 1px solid var(--border-on-surface-light);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            padding: var(--space-y) var(--space-x);
            animation: slideDown var(--anim-duration) var(--anim-ease) forwards;
        }

        .main-nav.active {
            display: block;
        }

        .nav-list {
            flex-direction: column;
            align-items: stretch;
            gap: 0.5rem;
        }

        .nav-link {
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-on-surface-light);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      text-align: left;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

  .footer-tagline {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.8rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.6;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
  }

  .legal-links {
    margin-bottom: 0.8rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
  }

  #currentYear {
    font-weight: 600;
  }

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

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

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

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

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

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

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

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

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

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

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