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

  --max-w: 940px;
  --space-x: 1.59rem;
  --space-y: 1.5rem;
  --gap: 0.97rem;

  --radius-xl: 1.28rem;
  --radius-lg: 0.98rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.37rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 3px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);

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

  --brand: #2c5282;
  --brand-contrast: #ffffff;
  --accent: #805ad5;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f7fafc;
  --neutral-300: #cbd5e0;
  --neutral-600: #718096;
  --neutral-800: #2d3748;
  --neutral-900: #1a202c;

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

  --bg-alt: #f7fafc;
  --fg-on-alt: #2d3748;

  --surface-1: #ffffff;
  --surface-2: #f7fafc;
  --fg-on-surface: #2d3748;
  --border-on-surface: #e2e8f0;

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #2d3748;
  --border-on-surface-light: rgba(226, 232, 240, 0.7);

  --bg-primary: #2c5282;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2a4365;
  --ring: rgba(44, 82, 130, 0.4);

  --bg-accent: #faf5ff;
  --fg-on-accent: #553c9a;
  --bg-accent-hover: #6b46c1;

  --link: #2c5282;
  --link-hover: #2a4365;

  --gradient-hero: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  --gradient-accent: linear-gradient(90deg, #faf5ff 0%, #e6fffa 100%);

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

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

    .hero--compact {
        min-height: 400px;
    }

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

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

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

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

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

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

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

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

    .value-lanes .wrap {
        max-width: 960px;
        margin: 0 auto;
    }

    .value-lanes header {
        margin-bottom: 14px;
    }

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

    .value-lanes header p {
        margin: 10px 0 0;
        opacity: 0.9;
    }

    .value-lanes .lanes {
        display: grid;
        gap: 10px;
    }

    .value-lanes article {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 10px;
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: 12px;
    }

    .value-lanes .step {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: grid;
        place-items: center;
        font-weight: 600;
    }

    .value-lanes h3 {
        margin: 0 0 6px;
    }

    .value-lanes article p {
        margin: 0 0 6px;
        opacity: 0.9;
    }

    .value-lanes article span {
        font-size: .85rem;
        opacity: 0.8;
    }

.why-choose {

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

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

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

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

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

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

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

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

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

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

    /* динамический glow через CSS переменные */
    .why-choose__card::after {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--gx, 50%) var(--gy, 50%),
        rgba(0, 85, 183, 0.20), transparent 60%);

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

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

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

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

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

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

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

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

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

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

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

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

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

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

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

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 56px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

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

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.post-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.post-item {

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

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

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

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--neutral-900);
    }

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

    .post-item .post-item__content {
        background: var(--surface-1);
        backdrop-filter: none;
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-surface);
        margin-bottom: var(--space-y);
        border: 1px solid var(--border-on-surface);
    }

    .post-item .post-item__comments {
        background: var(--surface-1);
        backdrop-filter: none;
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--neutral-900);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: var(--surface-2);
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--neutral-900);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: var(--neutral-800);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        outline: none;
        min-height: 100px;
        background: var(--surface-2);
        color: var(--fg-on-surface);
        font-family: var(--font-family);
    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        background: var(--bg-primary-hover);
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.post-item {

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

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

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

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

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--neutral-800);
        font-family: var(--font-family);
    }

    .post-item .post-item__reply-form textarea::placeholder {
        color: var(--neutral-600);
    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-primary);
        color: var(--brand-contrast);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        background: var(--bg-primary-hover);
    }

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

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    @media (max-width: 820px) {
        .identity-lv6__wrap {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.post-item {

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

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

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

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

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

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

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

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

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

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.article-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clarifications-l2 {

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

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

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

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

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

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

    /* постоянный скан */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

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

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

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

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

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

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

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

    /* JS добавит “плавающее” выделение активного ряда */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

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

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

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

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .connect .connect__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
        color: var(--neutral-800);
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 28px;
        padding: 14px 32px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .thank-mode-a a:hover {
        background: var(--bg-primary-hover);
    }

.site-header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--btn-ghost-bg);
}

.menu-toggle:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.menu-toggle-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  position: relative;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  left: 0;
  transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
  top: -0.5rem;
}

.menu-toggle-icon::after {
  bottom: -0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transition: transform var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: 5rem 2rem 2rem;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link::after {
    left: 1rem;
    right: 1rem;
  }

  .site-header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 998;
  }

  .site-header[data-nav-visible="true"]::after {
    opacity: 1;
    visibility: visible;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 0 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        margin-top: auto;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.6rem;
    }
    .footer-nav a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .contact-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .contact-info li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-bottom-left {
        flex: 2;
        min-width: 300px;
    }
    .disclaimer {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    .disclaimer a {
        color: #0066cc;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-bottom-right {
        flex: 1;
        text-align: right;
        min-width: 200px;
    }
    .social-links {
        display: flex;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
    }
    .social-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-bottom-left, .footer-bottom-right {
            text-align: center;
            width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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