:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 13.5px;
  --line-height-base: 1.3;

  --max-w: 1060px;
  --space-x: 0.69rem;
  --space-y: 0.83rem;
  --gap: 0.83rem;

  --radius-xl: 0.93rem;
  --radius-lg: 0.66rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.13);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 110ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #1a365d;
  --brand-contrast: #ffffff;
  --accent: #2d5aa0;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #1e293b;

  --bg-alt: #f8fafc;
  --fg-on-alt: #334155;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #1a365d;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2d4a7a;
  --ring: #2d5aa0;

  --bg-accent: #e8efff;
  --fg-on-accent: #1a365d;
  --bg-accent-hover: #3b6bc9;

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

  --gradient-hero: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
  --gradient-accent: linear-gradient(90deg, #e8efff 0%, #ffffff 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;}

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

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

.intro-slab-l2 {
        padding: clamp(3.6rem, 8vw, 6.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-slab-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 1rem;
    }

    .intro-slab-l2__main {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
    }

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

    .intro-slab-l2__main h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.3rem, 5vw, 4rem);
        line-height: 1.03;
    }

    .intro-slab-l2__main strong {
        display: block;
        margin-top: .8rem;
        color: var(--brand);
    }

    .intro-slab-l2__fact {
        margin-top: 1rem;
        padding: .85rem .95rem;
        border-left: 3px solid var(--bg-primary);
        background: var(--surface-1);
    }

    .intro-slab-l2__side {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        align-content: center;
    }

    .intro-slab-l2__side span {
        color: var(--brand);
        font-weight: 700;
    }

    .intro-slab-l2__side p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .intro-slab-l2__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-slab-l2__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
        background: var(--surface-1);
    }

    .intro-slab-l2__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

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

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    /* dynamic glow via CSS variables */
    .why-choose__card::after {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--gx, 50%) var(--gy, 50%),
        rgba(0, 85, 183, 0.20), transparent 60%);

        transition: opacity 180ms var(--anim-ease);
        pointer-events: none;
    }

    .why-choose__card.is-hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 85, 183, 0.28);
    }

    .why-choose__card.is-hover::after {
        opacity: 1;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }

        .why-choose__card::after {
            display: none;
        }
    }

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

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

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
        height: 600px;
    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

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

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

.partners {

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__info h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .partners .partners__info p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .partners .partners__item {
            flex-direction: column;
            text-align: center;
        }
    }

.about-timeline {

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

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

    .about-timeline .about-timeline__zig {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__zig .item {
        list-style: none;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

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

.touch-bulletin {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .header {
        margin-bottom: 14px;
    }

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

    .touch-bulletin .header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-bulletin ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .touch-bulletin .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-layout-b .wrap {
        max-width: 940px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-b .grid {
        display: grid;
        gap: var(--gap);
    }

    .faq-layout-b details {
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    .faq-layout-b summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--brand);
    }

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

    .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-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

    .terms-layout-f h4 {
        margin: 10px 0 6px;
    }

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

    .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-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

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

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

    .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);
        border: 1px solid var(--border-on-surface);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .thank-mode-a a:hover {
        background-color: var(--bg-alt);
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
}

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

.cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: absolute;
    right: 0;
    top: -3.5rem;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    position: absolute;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
    transform: rotate(90deg);
}

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

.nav-link {
    background-color: var(--chip-bg);
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    border-color: var(--border-on-surface);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        box-shadow: var(--shadow-lg);
        z-index: 99;
        margin-top: var(--space-y);
        gap: 0.5rem;
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-md);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brand .logo {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .tagline {
    font-style: italic;
    color: #aaa;
    margin-bottom: 2rem;
  }
  .copyright-disclaimer .copyright {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .legal-links a {
    color: #4dabf7;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
  }
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4dabf7;
  }
  .contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-info p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    grid-column: span 2;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .social-links a:hover {
    background-color: #4dabf7;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-right {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .social-links {
      grid-column: span 1;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

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

    .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-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .err-slab-d p {
        margin: 12px 0 0;
        color: var(--neutral-100);
    }

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }