:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 15.3px;
  --line-height-base: 1.78;

  --max-w: 1100px;
  --space-x: 1.87rem;
  --space-y: 1.5rem;
  --gap: 0.96rem;

  --radius-xl: 1.34rem;
  --radius-lg: 1rem;
  --radius-md: 0.62rem;
  --radius-sm: 0.4rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 3px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 28px rgba(0,0,0,0.06);

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

  --brand: #1a5fb4;
  --brand-contrast: #ffffff;
  --accent: #e95420;
  --accent-contrast: #ffffff;

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

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

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

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

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

  --bg-primary: #1a5fb4;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0f4a94;
  --ring: rgba(26, 95, 180, 0.4);

  --bg-accent: #fef6f2;
  --fg-on-accent: #8b2c0c;
  --bg-accent-hover: #d34612;

  --link: #1a5fb4;
  --link-hover: #0f4a94;

  --gradient-hero: linear-gradient(135deg, #1a5fb4 0%, #2d7ad6 100%);
  --gradient-accent: linear-gradient(90deg, #e95420 0%, #ff6b3d 100%);

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.wp-lang-switcher-v2 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

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

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);

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

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

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

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

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

.hero--colored-v5 {
        padding: 96px 20px;
        background: var(--gradient-accent);
        color: var(--brand);
        text-align: center;
    }

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

    .hero__eyebrow {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.9;
        margin: 0 0 0.5rem;
        color: var(--neutral-0);
    }

    .hero__title {
        margin: 0 0 8px;
        font-size: clamp(28px, 5vw, 40px);
        color: var(--neutral-0);
    }

    .hero__subtitle {
        margin: 0 0 20px;
        color: rgba(249, 250, 251, 0.9);
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 22px;
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
    }

    .hero__btn {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease),
        background-color var(--anim-duration) var(--anim-ease);
    }

    .hero__btn:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

    .hero__btn--primary {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero__btn--ghost {
        background: transparent;
        color: var(--fg-on-primary);
        border: 1px solid rgba(191, 219, 254, 0.9);
    }

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

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

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

        transform: translateY(-20px);
    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .header {
        margin-bottom: 12px;
    }

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

    .touch-stream .header p {
        margin: 10px 0 0;
        opacity: .9;
    }

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

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.two-column-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.two-column-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.two-column-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

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

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

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

    .blog-list__row {
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        padding: 14px 16px;
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: inherit;
        display: block;
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.blog-item {

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

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

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

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

.author {

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

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

    .author .author__wrapper {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .author .author__image {
        width: clamp(160px, 24vw, 240px);
        height: clamp(160px, 24vw, 240px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--border-on-surface);
    }

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

    .author .author__name {
        font-size: clamp(28px, 5vw, 40px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.blog-item--light-v6 {
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

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

.blog-item__text {
    margin: 0;
    font-size: 0.98rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

    .identity-cv1__grid h3 {
        margin: 0;
    }

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.blog-item--light-v6 {
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

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

.blog-item__text {
    margin: 0;
    font-size: 0.98rem;
    color: var(--neutral-800);
    line-height: 1.7;
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

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

    .support-cv5__head {
        margin-bottom: 14px;
    }

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(24px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

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

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

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

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

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

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

.policy-layout-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 {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
  }

  .main-nav {
    position: relative;
    padding: 0 var(--space-x);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-bottom: var(--space-y);
  }

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

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      gap: calc(var(--gap) * 0.75);
      padding-bottom: var(--space-y);
    }

    .nav-list.active {
      display: flex;
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand-column {
        flex: 1.2;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-legal {
        font-size: 0.8rem;
        color: #777;
    }
    .legal-links {
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-item {
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    .contact-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    #currentYear {
        font-weight: bold;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-column {
            width: 100%;
        }
        .footer-disclaimer {
            max-width: 100%;
        }
    }

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

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

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

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

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

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

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

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

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

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

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