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

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

  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.375rem;

  --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: #1a365d;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

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

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

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

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #cbd5e1;

  --bg-primary: #1a365d;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2d4a7c;
  --ring: #3b82f6;

  --bg-accent: #fef3c7;
  --fg-on-accent: #78350f;
  --bg-accent-hover: #b45309;

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

  --gradient-hero: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  --gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.hero--colored-v5 {
        padding: 96px 20px;
        background: var(--gradient-accent);
        color: var(--brand);
        text-align: center;
    }

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

    .hero__eyebrow {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.9;
        margin: 0 0 0.5rem;
        color: var(--neutral-900);
    }

    .hero__title {
        margin: 0 0 8px;
        font-size: clamp(28px, 5vw, 40px);
        color: var(--neutral-900);
    }

    .hero__subtitle {
        margin: 0 0 20px;
        color: var(--neutral-800);
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 22px;
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
    }

    .hero__btn {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease),
        background-color var(--anim-duration) var(--anim-ease);
    }

    .hero__btn:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

    .hero__btn--primary {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero__btn--ghost {
        background: transparent;
        color: var(--fg-on-primary);
        border: 1px solid rgba(191, 219, 254, 0.9);
        color: var(--neutral-900);
        border-color: var(--neutral-900);
    }

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

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

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

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

    .value-list ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .value-list li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .value-list .head {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .value-list .head strong {
        display: inline-flex;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    .value-list h3 {
        margin: 0;
    }

    .value-list li p {
        margin: 8px 0 6px;
        color: var(--neutral-600);
    }

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

.social-c1 {

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

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

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

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

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

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

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

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

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

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: 14px;
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

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

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

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

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

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

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

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

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

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

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

.next-check {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-check .wrap {
        max-width: 780px;
        margin: 0 auto;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 18px;
        padding: clamp(18px, 3vw, 28px);
    }

    .next-check .k {
        margin: 0;
        color: var(--bg-primary);
        font-weight: 600;
    }

    .next-check h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.2vw, 44px);
    }

    .next-check .text {
        margin: 0;
        color: var(--fg-on-accent);
    }

    .next-check ul {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .next-check li a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-2);
        border-radius: 10px;
        padding: 9px 12px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.post-list--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.post-list__inner {
    max-width: 720px;
    margin: 0 auto;
}

.post-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.post-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.post-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.8fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.post-list__row:first-child {
    border-top: none;
}

.post-list__row-title {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.post-list__row-meta {
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.post-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.post-item {

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

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

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

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

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
    }

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

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

    }

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.post-item {

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

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

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

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

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
        color: var(--fg-on-surface-light);
    }

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

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

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

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

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

.plans-c2 {

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

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

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

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

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

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

    .plans-c2__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    /* spotlight */
    .plans-c2__card::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--sx, 50%) var(--sy, 35%),
        rgba(255, 107, 53, 0.28), transparent 60%);

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

    .plans-c2__card.is-hot {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .plans-c2__card.is-hot::before {
        opacity: 1;
    }

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

    .plans-c2__name {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .plans-c2__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, .92);
        font-weight: 900;
        white-space: nowrap;
    }

    .plans-c2__price {
        margin-top: 12px;
        font-size: clamp(20px, 3vw, 34px);
        font-weight: 900;
        letter-spacing: -.02em;
    }

    .plans-c2__bullets {
        margin-top: 12px;
        display: grid;
        gap: 8px;
        color: rgba(255, 255, 255, .84);
        line-height: var(--line-height-base);
    }

    .plans-c2__btn {
        margin-top: 14px;
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.14);
        color: var(--fg-on-primary);
        font-weight: 900;
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .plans-c2__btn:hover {
        background: rgba(255, 255, 255, 0.20);
    }

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

.article-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .article-list h3 a {
        color: var(--fg-on-surface-light);
        text-decoration: none;
    }

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

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

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

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

.clarifications-l2 {

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

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

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

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

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

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

    /* constante scan */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

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

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

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

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

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

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

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

    /* JS añadirá el resaltado "flotante" de la fila activa */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

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

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

body {
        margin: 0;
        padding: 0;
        font-family: var(--font-family);
        box-sizing: border-box;
    }

    * {
        box-sizing: border-box;
    }

    .contact-hub {
        padding: clamp(56px, 8vw, 96px) 16px;
        background:
            radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.35), transparent 55%),
            linear-gradient(135deg, var(--bg-accent), var(--bg-accent-hover));
        color: var(--fg-on-accent);
        position: relative;
        overflow: hidden;
    }

    .contact-hub::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
        background-size: 140px 140px;
        opacity: 0.25;
        pointer-events: none;
    }

    .contact-hub .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .contact-hub .lead {
        margin-bottom: 14px;
        margin-right: 4rem;
        max-width: 380px;
    }

    .contact-hub .lead h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        letter-spacing: -0.02em;
        text-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }

    .contact-hub .lead p {
        margin: 10px 0 0;
    }

    .contact-hub .layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        min-width: 320px;
    }

    .contact-hub .meta {
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.18);
        padding: 16px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(10px);
    }

    .contact-hub h3 {
        margin: 0 0 10px;
    }

    .contact-hub article {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 0;
    }

    .contact-hub article:last-child {
        border-bottom: 0;
    }

    .contact-hub article p {
        margin: 0 0 5px;
    }

    .contact-hub .k {
        font-size: .8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: .8;
    }

    .contact-hub .social {
        margin-top: 10px;
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
    }

    .contact-hub .social p {
        margin: 0;
    }

    .contact-hub .social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: grid;
        place-items: center;
        color: var(--fg-on-primary);
        text-decoration: none;
        background: rgba(0, 0, 0, 0.2);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .contact-hub .social a:hover {
        transform: translateY(-2px);
        background: rgba(0, 0, 0, 0.35);
    }

    @media (max-width: 860px) {
        .contact-hub .wrap {
            flex-direction: column;
        }

        .contact-hub .lead {
            margin-right: 0;
            max-width: none;
        }
    }

.contact-support--light-v4 {
        padding: 56px 20px;
        background:
                radial-gradient(120% 120% at 0% 0%, rgba(59, 130, 246, 0.15), transparent 55%),
                radial-gradient(120% 120% at 100% 20%, rgba(16, 185, 129, 0.15), transparent 55%),
                #fff;
        color: var(--fg-on-page);

    }

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

    .contact-support__columns {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-support__col {
        padding: 20px 22px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--ring);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
        position: relative;
        overflow: hidden;
    }

    .contact-support__col::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(59, 130, 246, 0.08), transparent 60%);
        pointer-events: none;
    }

    .contact-support__col h4 {
        margin: 0 0 6px;
        font-size: 1.05rem;

    }

    .contact-support__col p {
        margin: 0;
        color: var(--neutral-600);
    }

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

.form-split {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(150deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .form-split .wrap {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
    }

    .form-split .left,
    .form-split .right {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 14px;
    }

    .form-split h2 {
        margin: 0;
        font-size: clamp(26px, 3.8vw, 38px);
    }

    .form-split .left p {
        margin: 8px 0 0;
        opacity: .9;
    }

    .form-split label {
        display: grid;
        gap: 6px;
        margin-bottom: 8px;
    }

    .form-split input:not([type="checkbox"]),
    .form-split textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-split .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-split button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 9px 12px;
        cursor: pointer;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .form-split button:hover {
        background: var(--accent-hover);
    }

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

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

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

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

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

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

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

    .policy-table .rows {
        display: grid;
        gap: 8px;
    }

    .policy-table .row {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        gap: 10px;
        align-items: start;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px;
    }

    .policy-table .left {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--bg-alt);
        display: grid;
        place-items: center;
        color: var(--neutral-800);
        font-weight: 600;
    }

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

    .policy-table p {
        margin: 0;
        color: var(--neutral-600);
    }

    .policy-table .right {
        color: var(--neutral-600);
        font-size: .9rem;
    }

    @media (max-width: 640px) {
        .policy-table .row {
            grid-template-columns: 1fr;
        }
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

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

    .terms-columns header {
        margin-bottom: 14px;
    }

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

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

    .terms-columns .cols {
        column-count: 2;
        column-gap: 12px;
    }

    .terms-columns article {
        break-inside: avoid;
        margin-bottom: 10px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
    }

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

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

    @media (max-width: 800px) {
        .terms-columns .cols {
            column-count: 1;
        }
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

    .th-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: var(--space-x);
        padding: clamp(18px, 3vw, 30px);
    }

    .th-core-f h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 32px);
    }

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    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-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-lg);
        font-size: calc(var(--font-size-base) * 1.1);
    }

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

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

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

    .header-container::after {
        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: 998;
    }

    .main-nav.active + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-bottom a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover,
  .footer-bottom a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .footer-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .footer-social a:hover {
    background-color: #3498db;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-bottom a {
    margin: 0 0.3rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      text-align: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

.cookie-mini {
        position: fixed;
        inset: auto 12px 12px auto;
        z-index: 1200;
        width: min(320px, calc(100% - 24px));
    }

    .cookie-mini .inner {
        border: 1px solid var(--border-on-surface);
        border-radius: 14px;
        background: var(--neutral-0);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-lg);
        padding: 12px;
    }

    .cookie-mini h2 {
        margin: 0;
        font-size: 1rem;
    }

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

    .cookie-mini .actions {
        margin-top: 10px;
        display: flex;
        gap: 8px;
    }

    .cookie-mini a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        padding: 7px 10px;
        color: var(--fg-on-page);
        background: var(--surface-2);
    }

    .cookie-mini a[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--neutral-0);
    }

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

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

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

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

    .nf-core-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-page);
        text-decoration: none;
    }