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

  --max-w: 1340px;
  --space-x: 1.44rem;
  --space-y: 1.5rem;
  --gap: 1.67rem;

  --radius-xl: 1.04rem;
  --radius-lg: 0.92rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.12);
  --shadow-md: 0 10px 26px rgba(0,0,0,0.15);
  --shadow-lg: 0 18px 44px rgba(0,0,0,0.19);

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

  --brand: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #F59E0B;
  --accent-contrast: #1F2937;

  --neutral-0: #FFFFFF;
  --neutral-100: #F3F4F6;
  --neutral-300: #D1D5DB;
  --neutral-600: #4B5563;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #F9FAFB;
  --fg-on-page: #1F2937;

  --bg-alt: #E5E7EB;
  --fg-on-alt: #374151;

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

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #1F2937;
  --border-on-surface-light: rgba(209, 213, 219, 0.6);

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #003F7A;
  --ring: #3B82F6;

  --bg-accent: #FEF3C7;
  --fg-on-accent: #92400E;
  --bg-accent-hover: #D97706;

  --link: #2563EB;
  --link-hover: #1D4ED8;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #003F7A 100%);
  --gradient-accent: linear-gradient(90deg, #F59E0B 0%, #D97706 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-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v5 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v5 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v5 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

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

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

    .plans-lv4__line h3 {
        margin: 0;
    }

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

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

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

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

.why-choose {

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

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

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

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

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

.next-route-l6 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-oute-l6__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .next-route-l6__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-route-l6__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-route-l6__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-route-l6__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-route-l6__line i {
        font-style: normal;
    }

    .next-route-l6__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

    .next-route-l6__cta {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.product-list {

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

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 40px);
    }

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .product-list .product-list__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 40px);
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex: 1;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 0.875rem;
    }

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

    .product-list .product-list__view-toggle {
        display: flex;
        gap: 0.5rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: 0.25rem;
        background: var(--bg-page);
    }

    .product-list .product-list__view-btn {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
    }

    .product-list .product-list__view-btn.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .product-list .product-list__container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: clamp(16px, 2.5vw, 24px);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-list .product-list__container > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--bg-primary);
    }

    .product-list .product-list__image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: var(--bg-alt);
    }

    .product-list .product-list__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image {
        transform: scale(1.15);
    }

    .product-list .product-list__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__overlay {
        opacity: 1;
    }

    .product-list .product-list__quick-view {
        padding: 0.75rem 1.5rem;
        background: var(--bg-page);
        color: var(--fg-on-page);
        text-decoration: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transform: translateY(10px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__quick-view {
        transform: translateY(0);
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .product-list .product-list__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(16px, 2vw, 18px);
        color: var(--fg-on-page);
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }

    .product-list .product-list__wishlist {
        width: 32px;
        height: 32px;
        border: 1px solid var(--ring);
        border-radius: 50%;
        background: var(--bg-page);
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-list .product-list__wishlist:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        transform: scale(1.1);
    }

    .product-list .product-list__price {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0;
    }

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .index-recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .index-recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .index-recommendations-split__link::after {
        content: '->';
    }

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

.features-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

    .features-struct-v1 h2, .features-struct-v1 h3, .features-struct-v1 p {
        margin: 0
    }

    .features-struct-v1 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

    .features-struct-v1 .grid {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .features-struct-v1 article {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v1 a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .features-struct-v1 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v1 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v1 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v1 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v1 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v1 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v1 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

    .features-struct-v1 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .5rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .features-struct-v1 .side img, .features-struct-v1 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v1 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v1 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v1 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v1 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v1 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v1 .grid, .features-struct-v1 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v1 .layout, .features-struct-v1 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v1 .grid, .features-struct-v1 .cards, .features-struct-v1 .row {
            grid-template-columns:1fr
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .index-recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .index-recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .index-recommendations-split__link::after {
        content: '->';
    }

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

.contacts-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .contacts-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contacts-fresh-v4 h2 {
        margin: 0 0 1rem;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .contacts-fresh-v4 .grid {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .contacts-fresh-v4 .tag {
        margin: 0;
        font-size: .86rem;
        opacity: .9;
    }

    .contacts-fresh-v4 .value {
        margin: .45rem 0 .8rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .contacts-fresh-v4 a {
        color: var(--brand-contrast);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contacts-fresh-v4 .grid {
            grid-template-columns:1fr;
        }
    }

.form-fresh-v3 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .form-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v3 .band {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v3 .band h2 {
        margin: 0 0 .35rem;
    }

    .form-fresh-v3 .band p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 .row {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .form-fresh-v3 label {
        display: grid;
        gap: .3rem;
        min-width: 190px;
        flex: 1 1 220px;
    }

    .form-fresh-v3 span {
        font-size: .84rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 input {
        padding: .65rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v3 button {
        padding: .7rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        align-self: end;
    }

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .policy-layout-a .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-layout-a .section-head {
        margin-bottom: 16px;
    }

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .policy-layout-e .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--gradient-hero);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand-contrast);
    text-shadow: var(--shadow-sm);
  }

  .contact-cta {
    display: flex;
    align-items: center;
  }

  .cta-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
  }

  .cta-link:hover,
  .cta-link:focus {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background-color: var(--bg-page);
  }

  .main-nav {
    flex-grow: 1;
  }

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

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

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

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      padding-top: 5rem;
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

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

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

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

    .nav-link:last-child {
      border-bottom: none;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .header-top,
    .header-bottom {
      padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 0.75);
    }
  }

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand h3 {
        color: #f39c12;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }

    .brand p {
        line-height: 1.6;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-nav h4,
    .contact-info h4 {
        color: #f39c12;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .legal-links a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #f39c12;
        text-decoration: underline;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .contact-info address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        color: #bdc3c7;
        font-style: normal;
    }

    .contact-info a {
        color: #3498db;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .disclaimer {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #4a6572;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #95a5a6;
    }

    #currentYear {
        font-weight: bold;
    }

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

        .legal-links {
            align-items: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .err-slab-d p {
        margin: 12px 0 0;
        color: var(--neutral-100);
    }

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }