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

  --max-w: 920px;
  --space-x: 0.7rem;
  --space-y: 0.76rem;
  --gap: 0.42rem;

  --radius-xl: 0.71rem;
  --radius-lg: 0.57rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 5px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 14px 24px rgba(0,0,0,0.09);

  --overlay: rgba(255, 255, 255, 0.85);
  --anim-duration: 130ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #3b82f6;
  --accent-contrast: #ffffff;

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

  --bg-page: #ffffff;
  --fg-on-page: #0f172a;

  --bg-alt: #f8fafc;
  --fg-on-alt: #1e293b;

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

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #1e293b;
  --border-on-surface-light: rgba(226, 232, 240, 0.8);

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #93c5fd;

  --bg-accent: #eff6ff;
  --fg-on-accent: #1e40af;
  --bg-accent-hover: #60a5fa;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
  --gradient-accent: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);

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

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

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

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

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

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

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

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

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

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover span,
  .burger-menu:focus span {
    background-color: var(--brand);
  }

  .burger-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

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

    .main-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
      position: absolute;
      right: var(--space-x);
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      background-color: var(--surface-2);
    }

    .nav-list.active {
      max-height: 500px;
      padding: 1rem 0;
    }

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

    .nav-list a {
      display: block;
      padding: 1rem var(--space-x);
      border-radius: 0;
      text-align: center;
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background-color: var(--surface-light);
    }

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

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

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

  /* Small adjustment for very small screens */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }

    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-logo-nav {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 1.2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact address ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .contact-address {
        font-style: normal;
    }
    .footer-contact a {
        color: #4a5568;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #718096;
    }
    .legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #a0aec0;
        margin: 0;
        max-width: 800px;
        align-self: center;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo-nav, .footer-contact {
            width: 100%;
        }
        .footer-nav ul {
            gap: 1.2rem;
        }
        .footer-legal {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .legal-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

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

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

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
        color: var(--neutral-800);
    }

.value-pills {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .value-pills .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .value-pills h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-pills .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .value-pills .pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .value-pills .pill {
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 8px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .value-pills .pill strong {
        font-weight: 600;
    }

    .value-pills .pill span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .value-pills .note {
        margin: 16px 0 0;
        color: var(--neutral-600);
    }

.visual-highlights-grid {

        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 56px);
        position: relative;
        overflow: hidden;
    }

    .visual-highlights-grid::before,
    .visual-highlights-grid::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .visual-highlights-grid::before {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 55%);
    }

    .visual-highlights-grid::after {
        background: var(--gradient-accent);
        
        opacity: 0.3;
    }

    .visual-highlights-grid__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .visual-highlights-grid__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 90px);

        transform: translateY(-20px);
    }

    .visual-highlights-grid__eyebrow {
        margin: 0 0 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: clamp(14px, 2vw, 18px);
        color: rgba(255, 255, 255, 0.7);
    }

    .visual-highlights-grid h2 {
        margin: 0;
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
    }

    .visual-highlights-grid__gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .visual-highlights-grid__card {
        margin: 0;
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.12);
        overflow: hidden;
        position: relative;
        isolation: isolate;
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);

        transform: translateY(40px) scale(0.97);
    }

    .visual-highlights-grid__frame {
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .visual-highlights-grid__frame img {
        display: block;
        width: 100%;
        height: clamp(220px, 26vw, 320px);
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .visual-highlights-grid__card:hover .visual-highlights-grid__frame img {
        transform: scale(1.06);
    }

    .visual-highlights-grid__tag {
        position: absolute;
        top: 16px;
        left: 16px;
        padding: 6px 14px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
    }

    .visual-highlights-grid__spark {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 55%);

        transition: opacity 0.4s ease;
    }

    .visual-highlights-grid__card:hover .visual-highlights-grid__spark {
        opacity: 0.7;
    }

    .visual-highlights-grid__card figcaption {
        padding: clamp(24px, 3vw, 32px);
    }

    .visual-highlights-grid__label {
        margin: 0 0 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.65);
    }

    .visual-highlights-grid__card h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        color: var(--neutral-0);
    }

    .visual-highlights-grid__card p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (hover: hover) and (pointer: fine) {
        .visual-highlights-grid__card:hover {
            transform: translateY(-6px) scale(1);
        }
    }

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

.index-recommendations-board {
        background: radial-gradient(circle at 18% 20%, rgba(248, 225, 231, 0.35), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(58, 46, 61, 0.98), rgba(58, 46, 61, 0.88));
        color: var(--neutral-0);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-board__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.72);
    }

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

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

    .index-recommendations-board__tile {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
        padding: 18px 18px 16px;

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(12px);
    }

    .index-recommendations-board__tile:nth-child(1),
    .index-recommendations-board__tile:nth-child(2) {
        grid-column: span 6;
    }

    .index-recommendations-board__tile::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(248, 225, 231, 0.25), transparent 60%);
        opacity: 0.9;
        pointer-events: none;
    }

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

    .index-recommendations-board__badge {
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
        white-space: nowrap;
    }

    .index-recommendations-board__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

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

    .index-recommendations-board__why {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-recommendations-board__desc {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-board__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--gradient-accent);
        color: var(--brand-contrast);
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

    .index-recommendations-board__cta:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 960px) {
        .index-recommendations-board__tile {
            grid-column: span 6;
        }
    }

    @media (max-width: 620px) {
        .index-recommendations-board__tile {
            grid-column: span 12;
        }
    }

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

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

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

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

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

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

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

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

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover span,
  .burger-menu:focus span {
    background-color: var(--brand);
  }

  .burger-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

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

    .main-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
      position: absolute;
      right: var(--space-x);
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      background-color: var(--surface-2);
    }

    .nav-list.active {
      max-height: 500px;
      padding: 1rem 0;
    }

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

    .nav-list a {
      display: block;
      padding: 1rem var(--space-x);
      border-radius: 0;
      text-align: center;
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background-color: var(--surface-light);
    }

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

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

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

  /* Small adjustment for very small screens */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }

    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-logo-nav {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 1.2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact address ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .contact-address {
        font-style: normal;
    }
    .footer-contact a {
        color: #4a5568;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #718096;
    }
    .legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #a0aec0;
        margin: 0;
        max-width: 800px;
        align-self: center;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo-nav, .footer-contact {
            width: 100%;
        }
        .footer-nav ul {
            gap: 1.2rem;
        }
        .footer-legal {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .legal-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

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

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

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

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

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

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

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

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--surface-2);
        color: var(--neutral-800);
    }

.about-timeline {

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

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

    .about-timeline .about-timeline__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .about-timeline .about-timeline__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .about-timeline time {
        opacity: .9;
    }

    @media (max-width: 767px) {
        .about-timeline .about-timeline__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

.our-story {

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

    .our-story .our-story__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .our-story .our-story__title {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 clamp(24px, 4vw, 40px);
        text-align: center;
        color: var(--fg-on-page);
    }

    .our-story .our-story__wrapper {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 40px);
    }

    .our-story .our-story__text {
        max-width: 70ch;
        margin: 0 auto;
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.25rem;
    }

    .our-story .our-story__image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

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

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

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

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

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

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

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

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

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover span,
  .burger-menu:focus span {
    background-color: var(--brand);
  }

  .burger-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

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

    .main-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
      position: absolute;
      right: var(--space-x);
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      background-color: var(--surface-2);
    }

    .nav-list.active {
      max-height: 500px;
      padding: 1rem 0;
    }

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

    .nav-list a {
      display: block;
      padding: 1rem var(--space-x);
      border-radius: 0;
      text-align: center;
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background-color: var(--surface-light);
    }

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

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

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

  /* Small adjustment for very small screens */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }

    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-logo-nav {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 1.2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact address ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .contact-address {
        font-style: normal;
    }
    .footer-contact a {
        color: #4a5568;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #718096;
    }
    .legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #a0aec0;
        margin: 0;
        max-width: 800px;
        align-self: center;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo-nav, .footer-contact {
            width: 100%;
        }
        .footer-nav ul {
            gap: 1.2rem;
        }
        .footer-legal {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .legal-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .plans-cv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

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

.hiw-c1 {

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

    .hiw-c1__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .hiw-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .hiw-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .hiw-c1__track {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        padding: 16px;
    }

    .hiw-c1__runner {
        position: absolute;
        left: -40%;
        top: 0;
        height: 4px;
        width: 40%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
        animation: hiwC1Run 2.8s linear infinite;
    }

    @keyframes hiwC1Run {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(340%)
        }
    }

    .hiw-c1__steps {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
        position: relative;
    }

    .hiw-c1__step {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hiw-c1__step:hover {
        transform: translateY(-3px);
    }

    .hiw-c1__num {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.18);
        font-weight: 900;
    }

    .hiw-c1__name {
        margin-top: 10px;
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .hiw-c1__text {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 980px) {
        .hiw-c1__step {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .hiw-c1__step {
            grid-column: span 12;
        }
    }

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

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

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

    .index-feedback-list__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

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

    .index-feedback-list__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

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

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

        transform: translateY(24px);
    }

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

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

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

    .index-feedback-list__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-list__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-list__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

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

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--fg-on-page);
    }

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

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

    .index-feedback-list__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

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

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

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

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

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

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

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

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

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover span,
  .burger-menu:focus span {
    background-color: var(--brand);
  }

  .burger-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

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

    .main-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
      position: absolute;
      right: var(--space-x);
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      background-color: var(--surface-2);
    }

    .nav-list.active {
      max-height: 500px;
      padding: 1rem 0;
    }

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

    .nav-list a {
      display: block;
      padding: 1rem var(--space-x);
      border-radius: 0;
      text-align: center;
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background-color: var(--surface-light);
    }

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

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

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

  /* Small adjustment for very small screens */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }

    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-logo-nav {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 1.2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact address ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .contact-address {
        font-style: normal;
    }
    .footer-contact a {
        color: #4a5568;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #718096;
    }
    .legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #a0aec0;
        margin: 0;
        max-width: 800px;
        align-self: center;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo-nav, .footer-contact {
            width: 100%;
        }
        .footer-nav ul {
            gap: 1.2rem;
        }
        .footer-legal {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .legal-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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));
    }
    .support-cv5__grid a {
        color: var(--link);
        text-decoration: underline;
    }
    .support-cv5__grid a:hover {
        color: var(--link-hover);
    }

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

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

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

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

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

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

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

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

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

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover span,
  .burger-menu:focus span {
    background-color: var(--brand);
  }

  .burger-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

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

    .main-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
      position: absolute;
      right: var(--space-x);
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      background-color: var(--surface-2);
    }

    .nav-list.active {
      max-height: 500px;
      padding: 1rem 0;
    }

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

    .nav-list a {
      display: block;
      padding: 1rem var(--space-x);
      border-radius: 0;
      text-align: center;
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background-color: var(--surface-light);
    }

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

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

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

  /* Small adjustment for very small screens */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }

    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-logo-nav {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 1.2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact address ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .contact-address {
        font-style: normal;
    }
    .footer-contact a {
        color: #4a5568;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #718096;
    }
    .legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #a0aec0;
        margin: 0;
        max-width: 800px;
        align-self: center;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo-nav, .footer-contact {
            width: 100%;
        }
        .footer-nav ul {
            gap: 1.2rem;
        }
        .footer-legal {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .legal-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover span,
  .burger-menu:focus span {
    background-color: var(--brand);
  }

  .burger-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

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

    .main-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
      position: absolute;
      right: var(--space-x);
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      background-color: var(--surface-2);
    }

    .nav-list.active {
      max-height: 500px;
      padding: 1rem 0;
    }

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

    .nav-list a {
      display: block;
      padding: 1rem var(--space-x);
      border-radius: 0;
      text-align: center;
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background-color: var(--surface-light);
    }

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

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

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

  /* Small adjustment for very small screens */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }

    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-logo-nav {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 1.2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact address ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .contact-address {
        font-style: normal;
    }
    .footer-contact a {
        color: #4a5568;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #718096;
    }
    .legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #a0aec0;
        margin: 0;
        max-width: 800px;
        align-self: center;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo-nav, .footer-contact {
            width: 100%;
        }
        .footer-nav ul {
            gap: 1.2rem;
        }
        .footer-legal {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .legal-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

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

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

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

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

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

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

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover span,
  .burger-menu:focus span {
    background-color: var(--brand);
  }

  .burger-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

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

    .main-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
      position: absolute;
      right: var(--space-x);
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      background-color: var(--surface-2);
    }

    .nav-list.active {
      max-height: 500px;
      padding: 1rem 0;
    }

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

    .nav-list a {
      display: block;
      padding: 1rem var(--space-x);
      border-radius: 0;
      text-align: center;
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background-color: var(--surface-light);
    }

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

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

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

  /* Small adjustment for very small screens */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }

    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-logo-nav {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 1.2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact address ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .contact-address {
        font-style: normal;
    }
    .footer-contact a {
        color: #4a5568;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #718096;
    }
    .legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #a0aec0;
        margin: 0;
        max-width: 800px;
        align-self: center;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo-nav, .footer-contact {
            width: 100%;
        }
        .footer-nav ul {
            gap: 1.2rem;
        }
        .footer-legal {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .legal-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

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

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

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

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

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

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

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

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  /* Burger Menu Button (Hidden on Desktop) */
  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover span,
  .burger-menu:focus span {
    background-color: var(--brand);
  }

  .burger-menu:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

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

    .main-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
      position: absolute;
      right: var(--space-x);
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      background-color: var(--surface-2);
    }

    .nav-list.active {
      max-height: 500px;
      padding: 1rem 0;
    }

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

    .nav-list a {
      display: block;
      padding: 1rem var(--space-x);
      border-radius: 0;
      text-align: center;
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background-color: var(--surface-light);
    }

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

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

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

  /* Small adjustment for very small screens */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }

    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .footer-logo-nav {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 1.2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact address ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }
    .contact-address {
        font-style: normal;
    }
    .footer-contact a {
        color: #4a5568;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #718096;
    }
    .legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #4a5568;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #a0aec0;
        margin: 0;
        max-width: 800px;
        align-self: center;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo-nav, .footer-contact {
            width: 100%;
        }
        .footer-nav ul {
            gap: 1.2rem;
        }
        .footer-legal {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .legal-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

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

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