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

  --max-w: 1060px;
  --space-x: 1.54rem;
  --space-y: 1.5rem;
  --gap: 0.7rem;

  --radius-xl: 0.75rem;
  --radius-lg: 0.63rem;
  --radius-md: 0.31rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 0px 1px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.11);
  --shadow-lg: 0 14px 24px rgba(0,0,0,0.13);

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

  --brand: #1a365d;
  --brand-contrast: #ffffff;
  --accent: #2d7dd2;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #e9ecef;

  --bg-primary: #1a365d;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #152a4a;
  --ring: #2d7dd2;

  --bg-accent: #e8f2fc;
  --fg-on-accent: #1a4f8c;
  --bg-accent-hover: #1c6bc5;

  --link: #1c6bc5;
  --link-hover: #1a4f8c;

  --gradient-hero: linear-gradient(135deg, #1a365d 0%, #2d7dd2 100%);
  --gradient-accent: linear-gradient(90deg, #e8f2fc 0%, #ffffff 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;}

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

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

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

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

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.social-l2 {

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

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

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

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

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

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

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

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

.cta-struct-v3 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.capabilities-light-alt {

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

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

    .capabilities-light-alt .capabilities-light-alt__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

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

    .capabilities-light-alt .capabilities-light-alt__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 4vw, 48px);
        position: relative;
    }

    .capabilities-light-alt .capabilities-light-alt__step {
        position: relative;

        transform: translateY(30px);
    }

    .capabilities-light-alt .capabilities-light-alt__number {
        width: 56px;
        height: 56px;
        background: var(--brand);
        color: var(--fg-on-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 2;
    }

    .capabilities-light-alt .capabilities-light-alt__number::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: var(--brand);
        opacity: 0.2;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }
        100% {
            transform: scale(1.5);

        }
    }

    .capabilities-light-alt .capabilities-light-alt__box {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        text-align: center;
        position: relative;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .capabilities-light-alt .capabilities-light-alt__step:hover .capabilities-light-alt__box {
        border-color: var(--brand);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .capabilities-light-alt .capabilities-light-alt__box h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

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

    .capabilities-light-alt .capabilities-light-alt__arrow {
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        font-size: 32px;
        color: var(--brand);
        opacity: 0.5;
    }

    .capabilities-light-alt .capabilities-light-alt__step:last-child .capabilities-light-alt__arrow {
        display: none;
    }

    @media (min-width: 768px) {
        .capabilities-light-alt .capabilities-light-alt__arrow {
            bottom: auto;
            top: 50%;
            left: auto;
            right: -40px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--fg-on-surface);
    }

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

    .touch-orbit .header {
        margin-bottom: 14px;
        text-align: center;
    }

    .touch-orbit h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .touch-orbit .header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
        color: var(--neutral-800);
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
        margin-top: 40px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .85);
        padding: 20px;
        animation: orbitIn 420ms ease both;
        color: var(--neutral-800);
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .touch-orbit .badge {
        display: inline-block;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 4px 10px;
        border-radius: var(--radius-sm);
        font-size: 0.85rem;
        font-weight: bold;
        margin-bottom: 12px;
    }

    .touch-orbit .card h3 {
        color: var(--neutral-900);
        font-size: 1.3rem;
    }

    .touch-orbit .card p {
        color: var(--neutral-600);
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .touch-orbit .card a {
        color: var(--link);
        text-decoration: underline;
        font-weight: bold;
    }

    .touch-orbit .card a:hover {
        color: var(--link-hover);
    }

    .touch-orbit .main-form button:hover {
        background: var(--bg-primary-hover);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

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

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

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

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

    .identity-cv5__overlay h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 42px);
    }

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

    .identity-cv5__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    @media (max-width: 800px) {
        .identity-cv5__grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.article-list--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.article-list__header {
    margin-bottom: 20px;
}

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

.article-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

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

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

.article-list__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

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

.article-list__link {
    font-size: 0.85rem;
    color: var(--bg-accent);
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    .education-struct-v6 article, .education-struct-v6 .row, .education-struct-v6 details, .education-struct-v6 .program {
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v6 .grid a, .education-struct-v6 .tiers a, .education-struct-v6 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v6 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v6 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v6 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v6 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

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

    .education-struct-v6 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v6 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v6 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v6 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v6 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v6 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v6 .grid, .education-struct-v6 .tiers, .education-struct-v6 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v6 .grid, .education-struct-v6 .tiers, .education-struct-v6 .combo, .education-struct-v6 .row {
            grid-template-columns:1fr
        }
    }

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--fg-on-surface);
    }

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

    .touch-orbit .header {
        margin-bottom: 14px;
        text-align: center;
    }

    .touch-orbit h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .touch-orbit .header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
        color: var(--neutral-800);
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
        margin-top: 40px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .85);
        padding: 20px;
        animation: orbitIn 420ms ease both;
        color: var(--neutral-800);
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .touch-orbit .badge {
        display: inline-block;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 4px 10px;
        border-radius: var(--radius-sm);
        font-size: 0.85rem;
        font-weight: bold;
        margin-bottom: 12px;
    }

    .touch-orbit .card h3 {
        color: var(--neutral-900);
        font-size: 1.3rem;
    }

    .touch-orbit .card p {
        color: var(--neutral-600);
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .touch-orbit .card a {
        color: var(--link);
        text-decoration: underline;
        font-weight: bold;
    }

    .touch-orbit .card a:hover {
        color: var(--link-hover);
    }

    .touch-orbit .main-form button:hover {
        background: var(--bg-primary-hover);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.contacts-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .contacts-fresh-v5 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    }

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

    .contacts-fresh-v5 a {
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

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

    .form-fresh-v6 button {
        justify-self: start;
        padding: .68rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 720px) {
        .form-fresh-v6 label {
            grid-template-columns:1fr;
        }
    }

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.thank-mode-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: relative;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.25);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--link);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-button {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
}

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

.burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}

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

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

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

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav-link::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-container {
    position: relative;
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .footer-tagline {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .legal-links {
        color: #95a5a6;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }

    .contact-section address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-section strong {
        color: #2c3e50;
        display: block;
        margin-top: 0.8rem;
    }

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
        text-align: center;
        color: #95a5a6;
        font-size: 0.85rem;
    }

    .copyright {
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 0 auto;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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