:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 15.9px;
  --line-height-base: 1.54;

  --max-w: 1180px;
  --space-x: 1rem;
  --space-y: 1.19rem;
  --gap: 0.93rem;

  --radius-xl: 0.87rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.46rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 7px 18px rgba(0,0,0,0.13);
  --shadow-lg: 0 10px 32px rgba(0,0,0,0.15);

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

  --brand: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #E63946;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F1F5F9;
  --fg-on-alt: #1E293B;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #E9ECEF;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #DEE2E6;

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004080;
  --ring: rgba(0, 86, 163, 0.4);

  --bg-accent: #FFE5E7;
  --fg-on-accent: #A4161A;
  --bg-accent-hover: #C1121F;

  --link: #0056A3;
  --link-hover: #004080;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #0077CC 100%);
  --gradient-accent: linear-gradient(90deg, #E63946 0%, #FF6B6B 100%);

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

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

.intro-cinema-c1 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cinema-c1__frame {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1.25rem;
        align-items: stretch;
    }

    .intro-cinema-c1__copy, .intro-cinema-c1__stamp {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-cinema-c1__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .75);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .intro-cinema-c1__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.9rem);
        line-height: 1;
    }

    .intro-cinema-c1__copy span {
        display: block;
        margin-top: 1rem;
        max-width: 38rem;

    }

    .intro-cinema-c1__links {
        margin-top: 1.2rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-cinema-c1__links a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-cinema-c1__links a:first-child {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .intro-cinema-c1__stamp {
        display: grid;
        align-content: end;
        gap: .7rem;
        text-align: right;
    }

    .intro-cinema-c1__stamp strong {
        color: rgba(255, 255, 255, .78);
    }

    .intro-cinema-c1__stamp div {
        font-size: clamp(2.8rem, 5vw, 4.2rem);
        font-weight: 700;
    }

    .intro-cinema-c1__stamp p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

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

    .intro-cinema-c1 {
        overflow: hidden;
    }

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

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .values-grid-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

    .values-grid-l2__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

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

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-grid-l2__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-grid-l2__grid span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
        font-weight: 500;
    }

.capabilities {

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

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

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

    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .visual-wave-c5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

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

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

    .visual-wave-c5__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-wave-c5__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

.blog-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.blog-list__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
    display: grid;
    gap: 8px;
}

.blog-list__card h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--neutral-0);
}

.blog-list__card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

.blog-list__tag {
    font-size: 0.8rem;
    color: rgba(191,219,254,0.95);
}

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

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

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

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

.blog-item {

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

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

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

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__content h2 {
        margin-top: 2rem;
        color: var(--neutral-800);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--link);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

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

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

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

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

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

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

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

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

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .support-cv5__grid p {
        margin: 0;
        color: var(--neutral-700, var(--neutral-600));
    }
    .support-cv5__grid a {
        color: var(--link);
        text-decoration: underline;
    }
    .support-cv5__grid a:hover {
        color: var(--link-hover);
    }
    .support-cv5__grid strong {
        color: var(--neutral-900);
    }

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

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-steps__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

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

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

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

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

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

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

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

    .index-recommendations-steps__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

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

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

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

    .plans-cv1__head p {
        margin: 8px 0 0;
        opacity: .9;
        max-width: 72ch;
    }

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

    .plans-cv1__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.36);
        color: var(--fg-on-page);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

    .plans-cv1__line h3 {
        margin: 0;
    }

    .plans-cv1__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .plans-cv1__price {
        margin: 10px 0 6px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--brand);
    }

    .plans-cv1__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-cv1__card ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

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

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

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

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

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

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

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

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

  .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-weight: 700;
    font-size: 1.8rem;
    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 {
    background-color: var(--bg-accent-hover);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

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

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

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .burger-menu {
      display: flex;
    }

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

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

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

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

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

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(3, 1fr);
      align-items: start;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 0.9rem;
    }
  }

  .nav-list a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-list a:hover {
    color: #2980b9;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .contact-item {
    margin-bottom: 0.6rem;
    color: #444;
  }

  .contact-item strong {
    color: #2c3e50;
    font-weight: 600;
  }

  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #ddd;
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    grid-column: 1 / -1;
  }

  .legal-links {
    margin-bottom: 1rem;
  }

  .legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }

  .legal-links a:hover {
    text-decoration: underline;
    color: #2980b9;
  }

  .copyright {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.8rem;
    color: #888;
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

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

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