:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 15px;
  --line-height-base: 1.45;

  --max-w: 1180px;
  --space-x: 0.95rem;
  --space-y: 1.41rem;
  --gap: 0.94rem;

  --radius-xl: 1.09rem;
  --radius-lg: 0.69rem;
  --radius-md: 0.49rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.11);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.18);

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

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #e63946;
  --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: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: rgba(0, 86, 179, 0.4);

  --bg-accent: rgba(230, 57, 70, 0.1);
  --fg-on-accent: #e63946;
  --bg-accent-hover: #d32f3d;

  --link: #0056b3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #0077cc 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);

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

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.hero {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .hero__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: var(--radius-md);
        font-weight: 500;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        cursor: pointer;
        border: 1px solid transparent;
        font-size: 1rem;
    }

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

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

    .hero__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .hero__btn--outline:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

.value-points-columns {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
    }

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

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

        transform: translateY(-20px);
    }

    .value-points-columns__h p {
        margin: 0 0 0.75rem;
        color: var(--brand);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-size: 12px;
    }

    .value-points-columns__h h2 {
        margin: 0;
        font-size: clamp(32px, 4.8vw, 52px);
        font-weight: 800;
        color: var(--fg-on-alt);
    }

    .value-points-columns__wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: clamp(18px, 3vw, 28px);
    }

    .value-points-columns__item {
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: clamp(22px, 3vw, 30px);
        box-shadow: var(--shadow-sm);

        transform: translateY(30px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .value-points-columns__item h3 {
        margin: 0;
        font-size: clamp(18px, 2.4vw, 24px);
    }

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

    .value-points-columns__item span {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--accent);
    }

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

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

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

    }

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

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

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

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

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

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

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

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.next-dock {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-dock .wrap {
        max-width: 880px;
        margin: 0 auto;
    }

    .next-dock .header {
        margin-bottom: 12px;
    }

    .next-dock .header p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .next-dock h2 {
        margin: 0 0 8px;
        font-size: clamp(30px, 4vw, 42px);
    }

    .next-dock nav {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .next-dock nav a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 10px 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .next-dock nav a:hover {
        transform: translateY(-2px);
    }

.capabilities {

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

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

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

    }

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

    .capabilities .capabilities__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

    .capabilities .capabilities__card {
        background: var(--surface-light);
        padding: clamp(28px, 4vw, 40px);
        border-radius: var(--radius-xl);
        position: relative;

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

    .capabilities .capabilities__card:hover {
        transform: translateY(-8px);
    }

    .capabilities .capabilities__step {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .capabilities .capabilities__icon {
        font-size: 40px;
        margin-bottom: 1.5rem;
    }

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

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

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.post-list {

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

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

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-page);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

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

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

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

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

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.post-item__meta {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.post-item--light-v6 {

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

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.post-item__meta {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.article-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .article-list .article-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .article-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .article-list .article-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .article-list .article-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

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

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

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

    .article-list .article-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

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

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

    .article-list .article-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

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

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

    .article-list h3 a {
        text-decoration: none;
    }

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

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

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

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

.clarifications-l2 {

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

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

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

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

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* constante scan */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

    .clarifications-l2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS añadirá el resaltado flotante */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

    @media (max-width: 720px) {
        .clarifications-l2__row {
            grid-template-columns:1fr
        }

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

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

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

    .contact-layout-d .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-d .box {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 18px;
        background: rgba(255, 255, 255, .05);
    }

    .contact-layout-d ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .contact-layout-d li {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .06);
    }

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

    .contact-layout-d .social a {
        text-decoration: none;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, .28);
        padding: 6px 10px;
        border-radius: 999px;
    }

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

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

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

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

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

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

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

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

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

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

.contact-map {

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

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

    .contact-map .h {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-map .h h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

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

    .contact-map .content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .contact-map .map-container iframe {
        display: block;
        width: 100%;
        height: 420px;
        border: 0;
    }

    .contact-map .info-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.5vw, 28px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .info-card h3 {
        margin: 0 0 1.5rem;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .contact-map .items {
        display: grid;
        gap: 1.5rem;
    }

    .contact-map .item {
        display: grid;
        gap: .5rem;
    }

    .contact-map .item strong {
        display: block;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-map .item span {
        display: block;
        font-size: 1.05rem;
        color: var(--fg-on-accent);
    }

    @media (max-width: 1023px) {
        .contact-map .content {
            grid-template-columns: 1fr;
        }
    }

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

  /* 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;
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  /* Bottom Row: Navigation */
  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
    display: flex;
    justify-content: center;
  }

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

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: inline-block;
    padding: 1rem 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

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

  .nav-list a:hover::after,
  .nav-list a:focus::after {
    width: 100%;
  }

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

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

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: var(--space-y) var(--space-x);
    }

    .cta-button {
      width: 100%;
      max-width: 300px;
    }

    .burger-menu {
      display: flex;
    }

    .main-nav {
      justify-content: flex-start;
      padding: 0;
    }

    .nav-list {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--surface-1);
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      gap: 0;
      transform: translateX(-100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
    }

    .nav-list[data-visible="true"] {
      transform: translateX(0);
    }

    .nav-list li {
      width: 100%;
    }

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

    .nav-list a::after {
      display: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--overlay);
      z-index: 98;
      display: none;
    }

    .nav-overlay[data-visible="true"] {
      display: block;
    }
  }

  /* Tablet & Small Desktop Adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-top,
    .main-nav {
      padding-left: calc(var(--space-x) * 0.75);
      padding-right: calc(var(--space-x) * 0.75);
    }
  }

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-column {
        flex: 1;
        min-width: 250px;
    }
    .brand h2 {
        margin-top: 0;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    .legal-links {
        font-size: 0.8rem;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        color: #777;
        margin-top: 0.5rem;
    }
    nav ul {
        list-style: none;
        padding: 0;
    }
    nav li {
        margin-bottom: 0.5rem;
    }
    nav a {
        text-decoration: none;
        color: #444;
    }
    nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    h3 {
        color: #222;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .contact-info p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        color: #555;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #000;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-column {
            width: 100%;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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