:root {
  --font-family: "Playfair Display", sans-serif;
  --font-size-base: 17.3px;
  --line-height-base: 1.35;

  --max-w: 1300px;
  --space-x: 1.37rem;
  --space-y: 1.5rem;
  --gap: 1.1rem;

  --radius-xl: 1.19rem;
  --radius-lg: 0.88rem;
  --radius-md: 0.6rem;
  --radius-sm: 0.34rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.22);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.29);
  --shadow-lg: 0 26px 60px rgba(0,0,0,0.35);

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

  --brand: #8B5E3C;
  --brand-contrast: #FFFFFF;
  --accent: #D4A373;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F0;
  --neutral-300: #C0B8A8;
  --neutral-600: #6B5E4E;
  --neutral-800: #3A3328;
  --neutral-900: #1A1A1A;

  --bg-page: #F5F5F0;
  --fg-on-page: #1A1A1A;

  --bg-alt: #E8E3D8;
  --fg-on-alt: #1A1A1A;

  --surface-1: #FFFFFF;
  --surface-2: #F0EDE5;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #C0B8A8;

  --surface-light: #FAF8F4;
  --fg-on-surface-light: #1A1A1A;
  --border-on-surface-light: #D6CFC0;

  --bg-primary: #8B5E3C;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #734E30;
  --ring: #8B5E3C;

  --bg-accent: #D4A373;
  --fg-on-accent: #1A1A1A;
  --bg-accent-hover: #C18E5A;

  --link: #8B5E3C;
  --link-hover: #734E30;

  --gradient-hero: linear-gradient(135deg, #3A3328 0%, #6B5E4E 50%, #8B5E3C 100%);
  --gradient-accent: linear-gradient(135deg, #D4A373 0%, #C18E5A 100%);

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

.values-ladder-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-ladder-l4__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .values-ladder-l4__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-ladder-l4__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows {
        display: grid;
        gap: .8rem;
    }

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

    .values-ladder-l4__step {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ladder-l4__rows h3 {
        margin: 0;
    }

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

    .values-ladder-l4__rows span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

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

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

    .bloglist-fresh-v4 .head p {
        margin: .35rem 0 0;
        opacity: .9;
    }

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

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

    .bloglist-fresh-v4 img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .bloglist-fresh-v4 .text {
        padding: .85rem;
    }

    .bloglist-fresh-v4 h3 {
        margin: 0 0 .4rem;
    }

    .bloglist-fresh-v4 h3 a {
        text-decoration: none;
        color: var(--brand-contrast);
    }

    .bloglist-fresh-v4 p {
        margin: 0;
        opacity: .9;
    }

    .bloglist-fresh-v4 .meta {
        margin-top: .5rem;
        font-size: .84rem;
    }

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

.why-choose {

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

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

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

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

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

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

.visual-wave-c5 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .visual-wave-c5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .visual-wave-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

    .visual-wave-c5__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

    .bloglist-fresh-v4 .head p {
        margin: .35rem 0 0;
        opacity: .9;
    }

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

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

    .bloglist-fresh-v4 img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .bloglist-fresh-v4 .text {
        padding: .85rem;
    }

    .bloglist-fresh-v4 h3 {
        margin: 0 0 .4rem;
    }

    .bloglist-fresh-v4 h3 a {
        text-decoration: none;
        color: var(--brand-contrast);
    }

    .bloglist-fresh-v4 p {
        margin: 0;
        opacity: .9;
    }

    .bloglist-fresh-v4 .meta {
        margin-top: .5rem;
        font-size: .84rem;
    }

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.blog-item {

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

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

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

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

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

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

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

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

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

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

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

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

.author {

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

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

    .author .author__wrapper {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .author .author__image {
        width: clamp(160px, 24vw, 240px);
        height: clamp(160px, 24vw, 240px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--border-on-surface);
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__name {
        font-size: clamp(28px, 5vw, 40px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.5rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.blog-item {

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

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

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

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

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

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

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

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

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .blogitem-fresh-v3 .shell {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .blogitem-fresh-v3 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .blogitem-fresh-v3 h1 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .blogitem-fresh-v3 img {
        width: 100%;
        aspect-ratio: 21/9;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v3 .lead {
        margin: 0;
        max-width: 72ch;
        color: var(--fg-on-surface-light);
    }

    .blogitem-fresh-v3 .columns {
        columns: 2;
        column-gap: calc(var(--gap) * 1.5);
    }

    .blogitem-fresh-v3 .columns p {
        break-inside: avoid;
        margin: 0 0 .9rem;
    }

    @media (max-width: 780px) {
        .blogitem-fresh-v3 .columns {
            columns: 1;
        }
    }

.articles {

        color: var(--fg-on-page);
        background: var(--bg-alt);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .articles .articles__title {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 clamp(32px, 5vw, 48px);
        color: var(--fg-on-alt);
    }

    .articles .articles__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .articles .articles__card {
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .articles .articles__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .articles .articles__image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content {
        padding: clamp(20px, 3vw, 24px);
    }

    .articles .articles__content h3 {
        font-size: clamp(18px, 3vw, 22px);
        margin: 0 0 0.75rem;
    }

    .articles .articles__content h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .articles .articles__content h3 a:hover {
        color: var(--link-hover);
    }

    .articles .articles__content p {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 0.75rem;
    }

    .articles .articles__date {
        font-size: clamp(12px, 1.8vw, 14px);
        color: var(--neutral-600);
    }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.support-ux7 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-ux7__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-ux7__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux7__list {
        display: grid;
        gap: 10px;
    }

    .support-ux7__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-ux7__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-ux7__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-ux7__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

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

.plans-ux4{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--bg-primary);color:var(--fg-on-primary)}.plans-ux4__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux4__head p{margin:8px 0 12px;color:rgba(255,255,255,.86)}.plans-ux4__stack{display:grid;gap:10px}.plans-ux4__stack article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.1);padding:12px}.plans-ux4__line{display:flex;justify-content:space-between;gap:8px}.plans-ux4__line span{font-size:.84rem}.plans-ux4__stack p{margin:7px 0}.plans-ux4__chips{display:flex;flex-wrap:wrap;gap:6px}.plans-ux4__chips i{font-style:normal;border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:4px 8px}.plans-ux4 button{margin-top:8px;background:var(--bg-accent);color:var(--fg-on-accent);border:0;border-radius:var(--radius-sm);padding:8px 10px}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

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

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

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

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-poster-c7__embed iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

.frm-lx2{padding:calc(var(--space-y)*2.9) var(--space-x)}
.frm-lx2 .frm-shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.frm-lx2 .frm-intro{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx2 h2{margin:0;font-size:clamp(1.85rem,3.5vw,2.65rem)}
.frm-lx2 .frm-intro p{margin:.45rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx2 .frm-panel{padding:1.1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);box-shadow:var(--shadow-md);display:grid;gap:.75rem}
.frm-lx2 .frm-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.frm-lx2 label{display:grid;gap:.28rem}
.frm-lx2 span{font-size:.84rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx2 input,.frm-lx2 textarea{width:100%;padding:.78rem .82rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.frm-lx2 input:focus,.frm-lx2 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 20%, transparent)}
.frm-lx2 textarea{min-height:128px;resize:vertical}
.frm-lx2 button{justify-self:start;padding:.82rem 1.1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx2 button:hover{background:var(--bg-primary-hover)}
@media (max-width:920px){.frm-lx2 .frm-shell,.frm-lx2 .frm-grid{grid-template-columns:1fr}}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.thx-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.thx-lx6 .thx-grid{max-width:980px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.thx-lx6 .thx-main{grid-column:1/-1;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.thx-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.52rem)}
.thx-lx6 .thx-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx6 article:not(.thx-main){padding:.88rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.thx-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.thx-lx6 article p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:700px){.thx-lx6 .thx-grid{grid-template-columns:1fr}}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: var(--space-y) var(--space-x);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: var(--space-y) calc(var(--space-x) * 0.5);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 1001;
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-left {
    flex: 1 1 250px;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #c0392b;
  }
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-policy {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #ecf0f1;
  }
  .footer-contact {
    margin-bottom: 1rem;
    text-align: right;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #3498db;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.5rem;
    text-align: right;
    max-width: 500px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      text-align: center;
      align-items: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }