:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 16.8px;
  --line-height-base: 1.66;

  --max-w: 940px;
  --space-x: 1.51rem;
  --space-y: 1.5rem;
  --gap: 0.78rem;

  --radius-xl: 0.67rem;
  --radius-lg: 0.45rem;
  --radius-md: 0.36rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.09);
  --shadow-lg: 0 14px 26px rgba(0,0,0,0.11);

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

  --brand: #0A4B7A;
  --brand-contrast: #FFFFFF;
  --accent: #00B4D8;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F1F5F9;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --bg-page: #F8FAFC;
  --fg-on-page: #1E293B;

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

  --surface-1: #FFFFFF;
  --surface-2: #F1F5F9;
  --fg-on-surface: #1E293B;
  --border-on-surface: #E2E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #CBD5E1;

  --bg-primary: #0A4B7A;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #083C63;
  --ring: #00B4D8;

  --bg-accent: #E0F7FA;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #0096C7;

  --link: #0A4B7A;
  --link-hover: #00B4D8;

  --gradient-hero: linear-gradient(135deg, #0A4B7A 0%, #00B4D8 100%);
  --gradient-accent: linear-gradient(135deg, #00B4D8 0%, #0096C7 100%);

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

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

    .nfintro-v11 h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
    }

    .nfintro-v11 p {
        font-size: clamp(16px, 2.5vw, 20px);
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .nfintro-v11__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .nfintro-v11__btn {
        display: inline-block;
        padding: 12px 26px;
        border-radius: var(--radius-md);
        text-align: center;
        text-decoration: none;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .nfintro-v11__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .nfintro-v11__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

.values-ranks-l10 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-ranks-l10__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-ranks-l10__head {
        margin-bottom: 1.1rem;
        text-align: center;
    }

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

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

    .values-ranks-l10__head span {
        display: block;
        margin-top: .75rem;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ranks-l10__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ranks-l10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ranks-l10__rows h3 {
        margin: 0;
    }

    .values-ranks-l10__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.nfsocial-v7 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .nfsocial-v7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .nfsocial-v7__head {
        margin-bottom: 14px;
    }

    .nfsocial-v7 h2 {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
    }

    .nfsocial-v7__head p {
        margin: 10px 0 0;
        max-width: 70ch;
        opacity: .92;
    }

    .nfsocial-v7__logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__logos div {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .1);
        min-height: 80px;
        height: 320px;
        display: grid;
        place-items: center;
        padding: 10px;
    }

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
    }

    .nfsocial-v7__stats {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__stats article {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nfsocial-v7__stats strong,
    .nfsocial-v7__stats span {
        display: block;
    }

    .nfsocial-v7__stats span {
        margin-top: 5px;
        opacity: .92;
    }

.why-choose-light-alt {

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

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose-light-alt .why-choose-light-alt__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
        position: relative;
        display: inline-block;
    }

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
        position: relative;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.visual-path-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

    .visual-path-c3__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-path-c3__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

    .visual-path-c3__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-path-c3__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

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

    @media (max-width: 680px) {
        .visual-path-c3__content {
            grid-template-columns: 1fr;
        }
    }

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.post-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

.articles--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.articles__badge {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(55,65,81,0.9);
}

.articles__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

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

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.article-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .clarifications-c1 {

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

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

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

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

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.map-note-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

    .map-note-c3__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .map-note-c3__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-note-c3__notes div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    @media (max-width: 840px) {
        .map-note-c3__wrap {
            grid-template-columns: 1fr;
        }
    }

.contact-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-page), var(--surface-2));
        color: var(--fg-on-page);
    }

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

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

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

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

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

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

    .social-follow {
        text-align: center;
    }

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

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-a .card {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .1);
    }

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

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

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

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

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.terms-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

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

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .policy-layout-c .section-head {
        margin-bottom: 14px;
    }

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .thank-mode-e a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

header {
    position: relative;
    z-index: 100;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 105;
    padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: var(--font-size-base);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }

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

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
    z-index: 104;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      width: auto;
      height: auto;
      background: none;
      box-shadow: none;
      transform: none;
      padding: 0;
      overflow: visible;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap);
    }

    .nav-list a {
      padding: calc(var(--space-y) * 0.5) var(--space-x);
    }

    .overlay {
      display: none;
    }
  }

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 280px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }
  .footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    flex: 0 0 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #e67e22;
    text-decoration: underline;
  }
  .footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left {
      text-align: center;
      padding-right: 0;
    }
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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