:root {
  --font-family: "Alegreya", sans-serif;
  --font-size-base: 13.4px;
  --line-height-base: 1.3;

  --max-w: 1000px;
  --space-x: 0.59rem;
  --space-y: 0.82rem;
  --gap: 0.65rem;

  --radius-xl: 0.78rem;
  --radius-lg: 0.66rem;
  --radius-md: 0.36rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.11);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.13);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 140ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #00e5ff;
  --brand-contrast: #0a0a0a;
  --accent: #00bcd4;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #bdbdbd;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #0a0a0a;
  --fg-on-page: #e0e0e0;

  --bg-alt: #1a1a1a;
  --fg-on-alt: #b0bec5;

  --surface-1: #1e1e1e;
  --surface-2: #2a2a2a;
  --fg-on-surface: #e0e0e0;
  --border-on-surface: #333333;

  --surface-light: #fafafa;
  --fg-on-surface-light: #212121;
  --border-on-surface-light: #e0e0e0;

  --bg-primary: #00e5ff;
  --fg-on-primary: #0a0a0a;
  --bg-primary-hover: #00b8d4;
  --ring: #00e5ff;

  --bg-accent: #00bcd4;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #0097a7;

  --link: #00e5ff;
  --link-hover: #00b8d4;

  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  --gradient-accent: linear-gradient(135deg, #00e5ff 0%, #00bcd4 100%);

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.hero-arc-v6 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.5);
    }

    .hero-arc-v6 .top {
        display: grid;
        grid-template-columns:1fr minmax(260px, .82fr);
        gap: var(--gap);
        align-items: stretch;
    }

    .hero-arc-v6 .copy {
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v6 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.3vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-arc-v6 .subtitle {
        margin: 0;
        max-width: 50ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .hero-arc-v6 .actions a {
        padding: .64rem .95rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v6 .actions a:hover {
        background: var(--bg-primary-hover);
    }

    .hero-arc-v6 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v6 .image {
        overflow: hidden;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v6 img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v6 .bottom {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v6 .bottom article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v6 .bottom p {
        margin: .3rem 0 0;
        opacity: .92;
    }

    @media (max-width: 960px) {
        .hero-arc-v6 .top {
            grid-template-columns:1fr;
        }

        .hero-arc-v6 .bottom {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.cta-struct-v6 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

    .cta-struct-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .cta-struct-v6 h2, .cta-struct-v6 h3, .cta-struct-v6 p {
        margin: 0
    }

    .cta-struct-v6 a {
        text-decoration: none
    }

    .cta-struct-v6 .center, .cta-struct-v6 .banner, .cta-struct-v6 .stack, .cta-struct-v6 .bar, .cta-struct-v6 .split, .cta-struct-v6 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v6 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v6 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v6 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v6 .actions a, .cta-struct-v6 .center a, .cta-struct-v6 .banner > a, .cta-struct-v6 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v6 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v6 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v6 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v6 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v6 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v6 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v6 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v6 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v6 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v6 .split, .cta-struct-v6 .bar, .cta-struct-v6 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v6 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v6 .numbers {
            grid-template-columns:1fr
        }
    }

.clar-ux9{padding:clamp(20px,3vw,44px);background:var(--neutral-100);color:var(--neutral-900)}.clar-ux9__wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:12px}.clar-ux9__left p{margin:8px 0 0;color:var(--neutral-600)}.clar-ux9__right{display:grid;gap:10px}.clar-ux9__right article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.clar-ux9__right span{display:inline-flex;font-size:.84rem;color:var(--brand)}.clar-ux9__right h3{margin:6px 0}.clar-ux9__right p{margin:0;color:var(--neutral-800)}@media(max-width:780px){.clar-ux9__wrap{grid-template-columns:1fr}}

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

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

    }

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

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

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

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

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

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

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

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

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

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .touch-gridline .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .touch-gridline .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);

    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

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

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;

        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;

    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;

    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {

    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

.feedback-ux4 {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .feedback-ux4__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

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

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

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

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

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

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

    .feedback-ux4__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .feedback-ux4__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .feedback-ux4__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .feedback-ux4__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .feedback-ux4__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .feedback-ux4__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .feedback-ux4__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

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

    .feedback-ux4__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

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

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

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

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

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

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .touch-gridline .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .touch-gridline .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.support-ux9 {
        padding: clamp(50px, 7vw, 88px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

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

    .support-ux9__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

    .support-ux9__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        padding: 12px;
    }

    .support-ux9__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-ux9__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-ux9__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-ux9__grid {
            grid-template-columns: 1fr;
        }
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.contacts-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .contacts-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u9 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u9 article,.contacts-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u9 p{margin:0} .contacts-u9 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u9 .media{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)} .contacts-u9 .media img{width:100%;height:100%;min-height:280px;object-fit:cover;border-radius:var(--radius-xl)} .contacts-u9 .grid{display:grid;gap:.5rem;margin-top:.55rem} .contacts-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u9 .split,.contacts-u9 .media,.contacts-u9 .grid,.contacts-u9 .cards,.contacts-u9 .bento,.contacts-u9 .foot{grid-template-columns:1fr}}

.support-ux9 {
        padding: clamp(50px, 7vw, 88px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

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

    .support-ux9__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

    .support-ux9__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        padding: 12px;
    }

    .support-ux9__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-ux9__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-ux9__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-ux9__grid {
            grid-template-columns: 1fr;
        }
    }

.form-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .form-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u7 .sub{margin:.35rem 0 0;opacity:.9;} .form-u7 .panel,.form-u7 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u7 form{display:grid;gap:.75rem} .form-u7 .field{display:grid;gap:.28rem} .form-u7 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u7 input,.form-u7 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u7 input:focus,.form-u7 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u7 textarea{min-height:120px;resize:vertical} .form-u7 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u7 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u7 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u7 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u7 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u7 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u7 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u7 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u7 .media img,.form-u7 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u7 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u7 .full{grid-column:1/-1} @media (max-width:860px){.form-u7 .split,.form-u7 .media,.form-u7 .frame{grid-template-columns:1fr} .form-u7 .grid,.form-u7 .bar{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.policyitems-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .policyitems-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u5 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u5 article,.policyitems-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u5 p{margin:0} .policyitems-u5 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u5 .cards{padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem} @media (max-width:860px){.policyitems-u5 .split,.policyitems-u5 .media,.policyitems-u5 .grid,.policyitems-u5 .cards,.policyitems-u5 .bento,.policyitems-u5 .foot{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

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

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.thank-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .thank-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u9 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u9 article,.thank-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u9 p{margin:0} .thank-u9 a{text-decoration:none;color:inherit;font-weight:700} .thank-u9 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .thank-u9 .bento article:nth-child(1){grid-column:span 6} .thank-u9 .bento article:nth-child(2){grid-column:span 3} .thank-u9 .bento article:nth-child(3){grid-column:span 3} .thank-u9 .bento article:nth-child(4){grid-column:span 4} .thank-u9 .bento article:nth-child(5){grid-column:span 4} .thank-u9 .bento article:nth-child(6){grid-column:span 4} .thank-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .thank-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.thank-u9 .split,.thank-u9 .media,.thank-u9 .grid,.thank-u9 .cards,.thank-u9 .bento,.thank-u9 .foot{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        letter-spacing: 0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: 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(6px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
        align-items: center;
    }
    .nav-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .nav-link.active:hover {
        background: var(--bg-primary-hover);
    }
    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
    }
    .cta-secondary:hover {
        background: var(--bg-accent-hover);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        }
        .nav.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-list {
            flex-direction: column;
            gap: calc(var(--gap) / 2);
            align-items: stretch;
        }
        .nav-link {
            display: block;
            text-align: center;
            padding: 12px 16px;
        }
        .cta-secondary {
            display: none;
        }
    }
    @media (min-width: 768px) {
        .nav {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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