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

  --max-w: 1100px;
  --space-x: 1.25rem;
  --space-y: 1.5rem;
  --gap: 2.25rem;

  --radius-xl: 1.31rem;
  --radius-lg: 0.96rem;
  --radius-md: 0.64rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 3px 7px rgba(0,0,0,0.19);
  --shadow-md: 0 14px 18px rgba(0,0,0,0.24);
  --shadow-lg: 0 34px 54px rgba(0,0,0,0.3);

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

  --brand: #1a5f7a;
  --brand-contrast: #ffffff;
  --accent: #2a9d8f;
  --accent-contrast: #ffffff;

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

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

  --bg-alt: #f8f9fa;
  --fg-on-alt: #343a40;

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

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

  --bg-primary: #1a5f7a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #144c63;
  --ring: #2a9d8f;

  --bg-accent: #e9f9f7;
  --fg-on-accent: #1a5f7a;
  --bg-accent-hover: #21867a;

  --link: #1a5f7a;
  --link-hover: #144c63;

  --gradient-hero: linear-gradient(135deg, #1a5f7a 0%, #2a9d8f 100%);
  --gradient-accent: linear-gradient(90deg, #e9f9f7 0%, #ffffff 100%);

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

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.intro-focus-alt {

        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

    .intro-focus-alt .intro-focus-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: var(--random-number);
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

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

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-cloud-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.why-choose-light-alt {

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

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

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

    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

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

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    color: var(--fg-on-page);
}

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

.features__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: inherit;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-1);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.features__icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

.next-pulse-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
        text-align: center;
    }

    .next-pulse-c3__wrap {
        max-width: 54rem;
        margin: 0 auto;
    }

    .next-pulse-c3__wrap p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .next-pulse-c3__wrap h2 {
        margin: .55rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-pulse-c3__row {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-pulse-c3__row a {
        display: inline-flex;
        padding: .8rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        text-decoration: none;
        animation: next_pulse_c3 2.4s ease-in-out infinite;
    }

    .next-pulse-c3__row a:nth-child(2n) {
        animation-delay: .35s;
    }

    @keyframes next_pulse_c3 {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }

    .next-pulse-c3__copy {
        margin-top: 1rem;

    }

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

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

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

.author {

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

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

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

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

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

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

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .identity-lv4__line h3 {
        margin: 0;
    }

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

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

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

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

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

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

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .index-recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .index-recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

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

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--neutral-800);
        font-weight: 500;
    }

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

    .form-layout-e input::placeholder,
    .form-layout-e textarea::placeholder {
        color: var(--input-placeholder, var(--neutral-600));
    }

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

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--neutral-800);
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-layout-e button:hover {
        background: var(--bg-primary-hover);
    }

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

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

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

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

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

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.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);
        color: var(--fg-on-surface);
    }

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
        color: var(--fg-on-surface);
    }

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

    .thank-mode-a a:hover {
        background-color: var(--bg-primary-hover);
    }

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

  /* Top Row: Logo & CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

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

  .cta-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Navigation Row */
  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }

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

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

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

    .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    /* Burger Animation */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .disclaimer {
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #888;
        margin-top: auto;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-links {
        font-size: 0.85rem;
    }
    .footer-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.2rem;
    }
    .footer-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 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: #0066cc;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .footer-nav li {
            margin-bottom: 0;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }