:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1200px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

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

  --brand: #0066cc;
  --brand-contrast: #ffffff;
  --accent: #00a8a8;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #0f172a;

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

  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --fg-on-surface: #0f172a;
  --border-on-surface: #e2e8f0;

  --surface-light: #f8fafc;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #cbd5e1;

  --bg-primary: #0066cc;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0052a3;
  --ring: #0066cc;

  --bg-accent: #e6f7f7;
  --fg-on-accent: #003d3d;
  --bg-accent-hover: #008b8b;

  --link: #0066cc;
  --link-hover: #0052a3;

  --gradient-hero: linear-gradient(135deg, #0066cc 0%, #00a8a8 100%);
  --gradient-accent: linear-gradient(90deg, #e6f7f7 0%, #f0f9ff 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --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);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.hero {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        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__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero--left .hero__content {
        text-align: left;
        max-width: 720px;
    }

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

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

.next-arrow {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .next-arrow .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

    .next-arrow h2 {
        margin: 0;
        font-size: clamp(30px, 4.5vw, 46px);
    }

    .next-arrow p {
        margin: 10px auto 0;
        max-width: 62ch;
    }

    .next-arrow .flow {
        margin-top: 16px;
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-arrow .flow a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid var(--chip-bg);
        border-radius: 999px;
        background: var(--chip-bg);
        padding: 9px 13px;
        display: inline-flex;
        gap: 6px;
        align-items: center;
    }

    .next-arrow .flow .final {
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
        border-color: var(--fg-on-primary);
    }

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

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

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

    .faq-rows .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .faq-rows ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .faq-rows li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .faq-rows h3 {
        margin: 0 0 8px;
        font-size: 1.05rem;
    }

    .faq-rows p {
        margin: 0;
        color: var(--neutral-600);
    }

.clarifications-c2 {

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

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

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

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

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

    .clarifications-c2__rail {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

    .clarifications-c2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 720px) {
        .clarifications-c2__row {
            grid-template-columns:1fr
        }

        .clarifications-c2__tag {
            justify-self: start
        }
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.review-list--colored-v5 {

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

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

.review-list__header {
    text-align: center;
    margin-bottom: 24px;
}

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

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

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

.review-list__card {
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    box-shadow: var(--shadow-md);
}

.review-list__top {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.review-list__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-list__meta h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.review-list__meta p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.review-list__stars {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-list__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.add-review {

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

    .add-review .add-review__c {
        max-width: 600px;
        margin: 0 auto;
    }

    .add-review .add-review__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .add-review h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 0.5rem;
    }

    .add-review .add-review__form {
        background: var(--surface-2);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .add-review .add-review__rating {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .add-review .add-review__rating label:first-child {
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .add-review .add-review__stars {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 0.25rem;
    }

    .add-review .add-review__stars input {
        display: none;
    }

    .add-review .add-review__stars label {
        font-size: 2rem;
        color: var(--neutral-300);
        cursor: pointer;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .add-review .add-review__stars input:checked ~ label,
    .add-review .add-review__stars label:hover,
    .add-review .add-review__stars label:hover ~ label {
        color: #ffd700;
    }

    .add-review .add-review__form input,
    .add-review .add-review__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-family: var(--font-family);
        outline: none;
    }

    .add-review .add-review__form input::placeholder,
    .add-review .add-review__form textarea::placeholder {
        color: var(--input-placeholder);
    }

    .add-review .add-review__form input:focus,
    .add-review .add-review__form textarea:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .add-review .add-review__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .add-review .add-review__form button:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.review-item {

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

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

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.about-mission {

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-mission figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .about-mission p {
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__row {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.review-item {

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

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

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.identity-aurora {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .identity-aurora::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 99, 71, 0.35), transparent 40%);
        opacity: 0.8;
        pointer-events: none;
    }

    .identity-aurora__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .identity-aurora__h {
        text-align: center;
        margin-bottom: clamp(48px, 6vw, 80px);

        transform: translateY(-20px);
    }

    .identity-aurora__eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 0.85rem;
        color: var(--link);
        margin: 0 0 0.75rem;
    }

    .identity-aurora h2 {
        font-size: clamp(36px, 5vw, 60px);
        margin: 0 0 1rem;
    }

    .identity-aurora__lead {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(18px, 2.4vw, 22px);
    }

    .identity-aurora__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .identity-aurora__card {
        background: rgba(8, 16, 42, 0.6);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(3, 6, 26, 0.45);
        backdrop-filter: blur(16px);
        transform: translateY(30px);
    }

    .identity-aurora__card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
        
        
        mask-composite: exclude;
        pointer-events: none;
    }

    .identity-aurora__icon {
        width: 64px;
        height: 64px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 1.25rem;
    }

    .identity-aurora__meta {
        margin-bottom: 0.75rem;
    }

    .identity-aurora__tag {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .identity-aurora__card h3 {
        margin: 0.35rem 0 0.75rem;
        font-size: clamp(20px, 2.4vw, 26px);
    }

    .identity-aurora__body {
        margin: 0 0 1.25rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .identity-aurora__foot {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        color: var(--link);
    }

    .identity-aurora__foot::before {
        content: "";
        width: 36px;
        height: 2px;
        background: linear-gradient(90deg, transparent, currentColor);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.review-item {

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

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

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(24px, 4vw, 32px);
        color: var(--fg-on-page);
    }

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

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(46px, 8vw, 70px);
        width: clamp(95px, 13.5vw, 135px);
        height: clamp(95px, 13.5vw, 135px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-2);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

.articles {

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

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

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

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

    .articles .articles__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 32px);
    }

    .articles .articles__item {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .articles .articles__image {
        width: 100%;
        height: 150px;
        border-radius: var(--radius-md);
        overflow: hidden;
    }

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

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

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

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

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

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

    @media (max-width: 768px) {
        .articles .articles__item {
            grid-template-columns: 1fr;
        }
    }

.contact-map {

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

    .contact-map .c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-map .h {
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-map .h h2 {
        margin: 0 0 .5rem;
        font-size: clamp(22px, 4vw, 36px);
        color: black;
    }

    .contact-map .h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        margin-bottom: 2rem;
    }

    .contact-map .map-container iframe {
        display: block;
        width: 100%;
        height: 400px;
        border: 0;
    }

    .contact-map .info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-map .item {
        padding: 1rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
    }

    .contact-map .item strong {
        display: block;
        margin-bottom: .5rem;
        color: var(--fg-on-page);
        font-size: .95rem;
    }

    .contact-map .item p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .contact-map .info {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

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

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

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.team-gallery {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
    }

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

    .team-gallery__h {
        text-align: center;
        margin-bottom: clamp(40px, 5vw, 72px);

        transform: translateY(-16px);
    }

    .team-gallery__h h2 {
        margin: 0 0 0.75rem;
        font-size: clamp(34px, 4.8vw, 58px);
    }

    .team-gallery__h p {
        margin: 0 auto;
        max-width: 680px;
        color: rgba(19, 32, 75, 0.7);
    }

    .team-gallery__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(18px, 3vw, 28px);
    }

    .team-gallery__card {
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        padding: clamp(18px, 3vw, 26px);
        border: 1px solid rgba(19, 32, 75, 0.08);
        display: flex;
        gap: 1rem;
        align-items: center;
        box-shadow: 0 20px 40px rgba(15, 24, 51, 0.08);

        transform: translateY(18px);
    }

    .team-gallery__photo {
        width: 72px;
        height: 72px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        border: 2px solid rgba(19, 32, 75, 0.08);
    }

    .team-gallery__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .team-gallery__info h3 {
        margin: 0;
        font-size: 1.25rem;
        color: var(--bg-primary);
    }

    .team-gallery__role {
        margin: 0.15rem 0 0.5rem;
        color: rgba(19, 32, 75, 0.6);
        font-weight: 600;
    }

    .team-gallery__info p {
        margin: 0 0 0.75rem;
        color: rgba(19, 32, 75, 0.72);
    }

    .team-gallery__exp {
        display: inline-flex;
        padding: 0.35rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 139, 92, 0.12);
        color: var(--bg-accent);
        font-weight: 700;
    }

.form-split {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(150deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .form-split .wrap {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
    }

    .form-split .left,
    .form-split .right {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 14px;
    }

    .form-split h2 {
        margin: 0;
        font-size: clamp(26px, 3.8vw, 38px);
    }

    .form-split .left p {
        margin: 8px 0 0;
        opacity: .9;
    }

    .form-split label {
        display: grid;
        gap: 6px;
        margin-bottom: 8px;
    }

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

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

    .form-split button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 9px 12px;
    }

    @media (max-width: 860px) {
        .form-split .wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

    .contact-rail .intro {
        margin-bottom: 14px;
    }

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

    .contact-rail .intro p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .contact-rail .layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 12px;
    }

    .contact-rail .info,
    .contact-rail .form {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 14px;
    }

    .contact-rail h3 {
        margin: 0 0 10px;
    }

    .contact-rail .info p {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .contact-rail .social {
        display: flex;
        gap: 8px;
    }

    .contact-rail .social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border-on-surface);
        border-radius: 50%;
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .contact-rail .row {
        display: grid;
        gap: 6px;
        margin-bottom: 9px;
    }

    .contact-rail input,
    .contact-rail textarea,
    .contact-rail select {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .contact-rail button {
        border: 0;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        cursor: pointer;
    }

    @media (max-width: 860px) {
        .contact-rail .layout {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

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

    .policy-lines .wrap {
        max-width: 840px;
        margin: 0 auto;
    }

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

    .policy-lines .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .policy-lines ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .policy-lines li {
        border-left: 3px solid var(--ring);
        background: var(--surface-2);
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
        padding: 12px;
    }

    .policy-lines .head {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: baseline;
    }

    .policy-lines .head span {
        font-size: .9rem;
        color: var(--neutral-600);
    }

    .policy-lines li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.terms-panels {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(180deg, var(--bg-alt), var(--bg-page));
        color: var(--fg-on-page);
    }

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

    .terms-panels header {
        margin-bottom: 16px;
    }

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

    .terms-panels header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-panels .panel {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .9);
        padding: 14px;
    }

    .terms-panels h3, .terms-panels h4 {
        margin: 0 0 8px;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.th-core-a {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-surface);
    }

    .th-core-a .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .th-core-a h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
        color: var(--neutral-900);
    }

    .th-core-a p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--neutral-800);
        font-size: 1.125rem;
        line-height: 1.7;
    }

    .th-core-a a {
        display: inline-block;
        margin-top: 32px;
        padding: 14px 28px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .th-core-a a:hover {
        background: var(--bg-primary-hover);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 2.5rem 1rem;
  border-top: 1px solid #dee2e6;
  font-family: sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2c5aa0;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 0;
  line-height: 1.5;
}
.footer-contact a {
  color: #2c5aa0;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ddd;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
}
.footer-social a:hover {
  background-color: #2c5aa0;
  color: white;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #666;
}
.footer-legal {
  margin-top: 0.5rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  text-decoration: underline;
  color: #2c5aa0;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        color: var(--fg-on-primary);
    }

    .cookie-top .inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        background: var(--gradient-accent);
        border-radius: var(--space-x);
        margin-top: 1rem;
        padding: var(--space-y);
    }

    .cookie-top p {
        margin: 0;
    }

    .cookie-top .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-top button {
        border: 1px solid var(--chip-bg);
        border-radius: 8px;
        padding: 7px 11px;
        background: var(--chip-bg);
        color: var(--fg-on-primary);
    }

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

.nf-core-d {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf-core-d .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border: 1px dashed var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(18px, 3vw, 30px);
    }

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

    .nf-core-d p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

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