:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1200px;
  --space-x: 1.5rem;
  --space-y: 1rem;
  --gap: 1rem;

  --radius-xl: 1rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

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

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #00A86B;
  --accent-contrast: #FFFFFF;

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

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: #E9ECEF;

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: #0056B3;

  --bg-accent: #E6F7F0;
  --fg-on-accent: #003D29;
  --bg-accent-hover: #008F5A;

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

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #00A86B 100%);
  --gradient-accent: linear-gradient(90deg, #E6F7F0 0%, #FFFFFF 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

.intro-rail {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-rail .wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 12px 1fr;
        gap: 16px;
        align-items: start;
    }

    .intro-rail .rail {
        background: var(--bg-primary);
        border-radius: 999px;
        min-height: 180px;
    }

    .intro-rail .badge {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .intro-rail h1 {
        margin: 0 0 10px;
        font-size: clamp(32px, 5.2vw, 54px);
    }

    .intro-rail .subtitle,
    .intro-rail .lead {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .intro-rail .actions {
        margin-top: 12px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .intro-rail .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

    .value-grid .header {
        text-align: center;
        margin-bottom: 14px;
    }

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

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

    .value-grid .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 12px;
    }

    .value-grid article {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: 14px;
    }

    .value-grid .icon {
        margin: 0 0 8px;
        font-size: 1.5rem;
    }

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

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

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

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

    .touch-column .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-column .head {
        margin-bottom: 14px;
    }

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

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

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .touch-column article a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

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

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

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

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;
        color: rgba(255, 255, 255, .86);
    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

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

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

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

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

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

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

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

.blog-list__card h3 {
    margin: 0;
    font-size: 1rem;
}

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

.blog-item {

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

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

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

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

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

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

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

    .blog-item .blog-item__content h2 {
        color: var(--fg-on-page);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .blog-item .blog-item__content ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

    .blog-item .blog-item__content li {
        margin-bottom: 0.5rem;
    }

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

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

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

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

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

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

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

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 32px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0 0 24px;
    font-size: 0.9rem;
    color: var(--neutral-300);
    border-bottom: 1px solid var(--neutral-600);
    padding-bottom: 16px;
}

.blog-item__body {
    line-height: var(--line-height-base);
    margin-bottom: 32px;
}

.blog-item__body p {
    margin-bottom: 16px;
}

.blog-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    padding-top: 16px;
    border-top: 1px solid var(--neutral-600);
}

.tag {
    background: var(--neutral-800);
    color: var(--neutral-300);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.blog-item__navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.nav-link {
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand-contrast);
    border-bottom-color: var(--brand-contrast);
}

.service-block-section {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

.service-block--flip {
    direction: rtl;
}

.service-block--flip > * {
    direction: ltr;
}

.service-block__image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.service-block__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block__content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-y);
}

.service-block__content ul {
    margin-left: 1.5rem;
    color: var(--neutral-600);
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

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

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

.blog-item__title {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
}

.blog-item__meta {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.blog-item__text {
    margin: 0;
    font-size: 0.98rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

.faq-tiles {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .faq-tiles .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .faq-tiles header {
        margin-bottom: 14px;
    }

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

    .faq-tiles header p {
        margin: 10px 0 0;
        color: rgba(6, 95, 70, .85);
    }

    .faq-tiles .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 10px;
    }

    .faq-tiles .tile {
        border: 1px solid rgba(6, 95, 70, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .75);
        padding: 12px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .faq-tiles .tile:hover {
        transform: translateY(-2px);
    }

    .faq-tiles .meta {
        margin: 0 0 6px;
        font-size: .85rem;
        color: rgba(6, 95, 70, .8);
    }

    .faq-tiles h3 {
        margin: 0 0 8px;
    }

    .faq-tiles .tile p {
        margin: 0;
        color: rgba(6, 95, 70, .88);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

.contact-support--light-v1 {
        padding: 56px 20px;
        background:
                linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 250, 255, 1));
        color: var(--fg-on-page);

    }

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

    .contact-support__grid {
        display: grid;
        gap: 16px;
    }

    .contact-support__card {
        display: grid;
        gap: 8px;
        padding: 18px 20px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--ring);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
        text-decoration: none;
        color: inherit;
        transition: transform var(--anim-duration) var(--anim-ease),
            box-shadow var(--anim-duration) var(--anim-ease);
        position: relative;
        overflow: hidden;
    }

    .contact-support__card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: var(--bg-primary);
    }

    .contact-support__card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
    }

    .contact-support__card h4 {
        margin: 0;
        font-size: 1rem;

    }

    .contact-support__card p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.92rem;
    }

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

.index-recommendations {
        background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .index-recommendations__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

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

    .index-recommendations__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations__card {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.65;
        pointer-events: none;
    }

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

    .index-recommendations__icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex: 0 0 auto;
    }

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

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

    .index-recommendations__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

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

    .index-recommendations__cta::after {
        content: '->';
        font-size: 12px;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

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

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

    .contact-rail .intro {
        margin-bottom: 18px;
        max-width: 720px;
    }

    .contact-rail h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        letter-spacing: -0.02em;
    }

    .contact-rail .intro p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .contact-rail .layout {
        display: grid;
        grid-template-columns: minmax(260px, 1fr) minmax(220px, 320px);
        gap: 16px;
        position: relative;
    }

    .contact-rail .layout::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 0;
        width: 3px;
        height: 100%;
        background: var(--bg-primary);
        border-radius: 999px;
        opacity: 0.25;
    }

    .contact-rail .info,
    .contact-rail .social-box {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

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

    .contact-rail .items {
        display: grid;
        gap: 10px;
    }

    .contact-rail .item {
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .contact-rail .label {
        display: block;
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--neutral-600);
        margin-bottom: 6px;
    }

    .contact-rail .value {
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .contact-rail .value a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-rail .value a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .contact-rail .social-title {
        margin: 0 0 10px;
        font-weight: 600;
        color: var(--fg-on-page);
    }

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

    .contact-rail .social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border-on-surface);
        border-radius: 50%;
        color: var(--fg-on-page);
        text-decoration: none;
        background: var(--surface-2);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-rail .social a:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 860px) {
        .contact-rail .layout {
            grid-template-columns: 1fr;
        }

        .contact-rail .layout::before {
            display: none;
        }
    }

.form-layers {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-hero);
    }

    .form-layers .wrap {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .form-layers .intro h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--brand-contrast);
    }

    .form-layers .intro p {
        margin: 10px 0 0;
        color: var(--brand-contrast);
    }

    .form-layers .layers {
        border: 1px solid var(--neutral-300);
        border-radius: 16px;
        background: var(--neutral-0);
        padding: 12px;
        display: grid;
        gap: 10px;
        color: var(--fg-on-surface);
    }

    .form-layers fieldset {
        border: 1px solid var(--neutral-300);
        border-radius: 12px;
        padding: 10px;
        display: grid;
        gap: 8px;
    }

    .form-layers legend {
        padding: 0 6px;
    }

    .form-layers label {
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    .form-layers input:not([type="checkbox"]),
    .form-layers textarea {
        width: 100%;
        border: 1px solid var(--neutral-300);
        border-radius: 8px;
        background: var(--neutral-0);
        color: var(--neutral-900);
        padding: 9px;
        font: inherit;
    }

    .form-layers .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 0.9em;
    }

    .form-layers button {
        justify-self: start;
        border: 0;
        border-radius: 10px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 16px 32px;
        margin: 0 auto;
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-layers button:hover {
        background: var(--bg-accent-hover);
    }

    .form-layers .notes {
        border: 1px solid var(--neutral-600);
        border-radius: 14px;
        background: var(--fg-on-primary);
        padding: 12px;
    }

    .form-layers .notes p {
        margin: 0 0 6px;
    }

.connect {
        color: var(--fg-on-page);
        background: var(--surface-light);
        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(48px, 7vw, 72px);
    }

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

    .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(125px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

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

    .connect .connect__item:hover {
        transform: translateY(-4px);
    }

    .connect .connect__icon {
        font-size: clamp(44px, 7.5vw, 68px);
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__icon {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item span {
        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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

.policy-zigzag {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-zigzag .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .policy-zigzag .lead {
        margin: 10px 0 14px;
    }

    .policy-zigzag .list {
        display: grid;
        gap: 10px;
    }

    .policy-zigzag article {
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
    }

    .policy-zigzag article:nth-child(even) {
        margin-left: 24px;
    }

    .policy-zigzag article:nth-child(odd) {
        margin-right: 24px;
    }

    .policy-zigzag .meta {
        margin: 0;
        font-size: .85rem;
        color: var(--neutral-300);
    }

    .policy-zigzag h3 {
        margin: 6px 0;
    }

    .policy-zigzag article p {
        margin: 0;
    }

    @media (max-width: 680px) {
        .policy-zigzag article:nth-child(even),
        .policy-zigzag article:nth-child(odd) {
            margin: 0;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

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

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

    .terms-panels header {
        margin-bottom: 16px;
    }

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

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

    .terms-panels .panel {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .9);
        padding: 14px;
    }

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

    .terms-panels p, .terms-panels 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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

.th-core-a {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-surface);
    }

    .th-core-a .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .th-core-a h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
        color: var(--accent);
    }

    .th-core-a p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--neutral-800);
    }

    .th-core-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        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);
    }

    .th-core-a a:hover {
        background-color: var(--bg-primary-hover);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    flex-shrink: 0;
}

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

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

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:hover {
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.6rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 1.5rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

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

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

.nf-core-f {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf-core-f .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 20px;
        padding: clamp(18px, 3vw, 30px);
    }

    .nf-core-f h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .nf-core-f p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf-core-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 12px;
        background: var(--bg-primary);
        color: var(--neutral-0);
        text-decoration: none;
    }