:root {
  --font-family: "Lato", 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.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

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

  --brand: #4A6FA5;
  --brand-contrast: #FFFFFF;
  --accent: #E9B44C;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #E9ECEF;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #FFFFFF;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #E9ECEF;

  --surface-light: rgba(255, 255, 255, 0.7);
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: rgba(233, 236, 239, 0.5);

  --bg-primary: #4A6FA5;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #5A7FB5;
  --ring: rgba(74, 111, 165, 0.3);

  --bg-accent: rgba(233, 180, 76, 0.1);
  --fg-on-accent: #8B6B2D;
  --bg-accent-hover: #F2C56E;

  --success: #28A745;
  --success-contrast: #FFFFFF;
  --warning: #FFC107;
  --warning-contrast: #212529;
  --danger: #DC3545;
  --danger-contrast: #FFFFFF;

  --link: #4A6FA5;
  --link-hover: #3A5F95;

  --gradient-hero: linear-gradient(135deg, #4A6FA5 0%, #6A8FC5 100%);
  --gradient-accent: linear-gradient(135deg, #E9B44C 0%, #F2C56E 100%);

  --btn-primary-bg: var(--bg-primary);
  --btn-primary-fg: var(--fg-on-primary);
  --btn-primary-bg-hover: var(--bg-primary-hover);

  --btn-ghost-bg: transparent;
  --btn-ghost-fg: var(--fg-on-page);
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);

  --card-bg-dark: var(--surface-1);
  --card-fg-dark: var(--fg-on-surface);
  --card-border-dark: var(--border-on-surface);

  --card-bg-light: var(--surface-light);
  --card-fg-light: var(--fg-on-surface-light);
  --card-border-light: var(--border-on-surface-light);

  --chip-bg: rgba(255,255,255,0.08);
  --chip-fg: var(--fg-on-page);

  --input-bg: var(--surface-2);
  --input-fg: var(--fg-on-surface);
  --input-border: var(--border-on-surface);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);}

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.nav-link:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.burger-menu span {
    display: block;
    height: 3px;
    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);
}

@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-1);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #f1c40f;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.footer-nav, .social-links, address p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .social-links li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .social-links a, address a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .social-links a:hover, address a:hover {
  color: #f1c40f;
}
address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-nav, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav li, .social-links li {
    margin-bottom: 0;
  }
}

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.hero--light-v6 {
    font-family: var(--font-family);
    padding: 80px 20px;
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
}

    .hero--light-v6 {
        background: linear-gradient(45deg, var(--fg-on-page) 0%, var(--fg-on-primary) 50%, var(--accent) 100%);
        background-size: 400% 400%;
        animation: gradientWave 6s ease infinite;
    }

    @keyframes gradientWave {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

.hero__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    margin: 0 0 8px;
    font-size: clamp(28px, 5vw, 40px);
}

.hero__subtitle {
    margin: 0;
    color: var(--neutral-600);
}

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: linear-gradient(120deg, var(--bg-primary), var(--fg-on-accent), var(--ring));
        padding: clamp(28px, 5vw, 80px) clamp(16px, 3vw, 40px);
        background-size: 300% 300%;

        animation: gradientFlow 8s ease-in-out infinite;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0 50%;
        }
    }

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

    .index-cta .index-cta__stack {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-cta .index-cta__stack .stack {
        list-style: none;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 22px);
        box-shadow: var(--shadow-sm);
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        margin-top: .6rem;
        background: #fff;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-800);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .index-cta .index-cta__btn:hover {
        background-color: var(--neutral-100);
        transform: translateY(-2px);
    }

    .index-cta .stack h5 {
        color: var(--neutral-0);
        margin-bottom: var(--gap);
        font-size: 1.25rem;
    }

    .index-cta .stack p {
        color: var(--neutral-100);
        line-height: var(--line-height-base);
    }

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

.faq--light-v6 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.faq__inner h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--fg-on-page);
}

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

.faq__card {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
}

.faq__card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.faq__card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.index-features {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .index-features .index-features__h h2 {
        font-size: clamp(24px, 4vw, 44px);
        margin: 0 .35em;
    }

    .index-features .index-features__h p {
        color: var(--neutral-300);
        margin: 0 0 1.2rem;
    }

    .index-features .index-features__grid {
        display: grid;
        gap: var(--space-x);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .index-features .index-features__grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .index-features .index-features__card {
        background: var(--card-bg-dark);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2.2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .index-features .index-features__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .index-features .index-features__icon img {
        width: 40px;
        height: 40px;
    }

    .index-features h3 {
        margin: 1.5rem 0 .35rem;
        font-size: clamp(18px, 2.8vw, 22px);
    }

    @media (max-width: 767px) {
        .index-features .index-features__grid {
            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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.nav-link:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.burger-menu span {
    display: block;
    height: 3px;
    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);
}

@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-1);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #f1c40f;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.footer-nav, .social-links, address p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .social-links li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .social-links a, address a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .social-links a:hover, address a:hover {
  color: #f1c40f;
}
address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-nav, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav li, .social-links li {
    margin-bottom: 0;
  }
}

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.about-timeline {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .about-timeline .about-timeline__tl {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__tl .timeline {
        list-style: none;
        border-left: 3px solid var(--bg-primary);
        padding: .4rem .6rem .4rem 1rem;
    }

    .about-timeline time {
        display: block;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .about-timeline p {
        margin: .25rem 0 0;
        color: var(--neutral-600);
    }

.about-mission {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
    }

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

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.nav-link:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.burger-menu span {
    display: block;
    height: 3px;
    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);
}

@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-1);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #f1c40f;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.footer-nav, .social-links, address p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .social-links li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .social-links a, address a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .social-links a:hover, address a:hover {
  color: #f1c40f;
}
address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-nav, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav li, .social-links li {
    margin-bottom: 0;
  }
}

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.services-pricing {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-primary);
        padding: clamp(16px, 3vw, 40px);
    }

    .services-pricing .services-pricing__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .services-pricing .services-pricing__row {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .services-pricing .services-pricing__card {
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        text-align: center;
    }

    .services-pricing .services-pricing__price {
        font-size: clamp(22px, 4vw, 36px);
        margin: .4rem 0 .7rem;
    }

    .services-pricing .services-pricing__btn {
        display: inline-block;
        background: var(--fg-on-page);
        color: var(--bg-page);
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
    }

    .services-pricing .services-pricing__price {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition:
                transform var(--anim-duration) var(--anim-ease),
                box-shadow var(--anim-duration) var(--anim-ease),
                background-color var(--anim-duration) var(--anim-ease);
    }

    .services-pricing .services-pricing__price:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

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

.index-features {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .index-features .index-features__h h2 {
        font-size: clamp(24px, 4vw, 44px);
        margin: 0 .35em;
    }

    .index-features .index-features__h p {
        color: var(--neutral-300);
        margin: 0 0 1.2rem;
    }

    .index-features .index-features__grid {
        display: grid;
        gap: var(--space-x);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .index-features .index-features__grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .index-features .index-features__card {
        background: var(--card-bg-dark);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2.2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .index-features .index-features__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .index-features .index-features__icon img {
        width: 40px;
        height: 40px;
    }

    .index-features h3 {
        margin: 1.5rem 0 .35rem;
        font-size: clamp(18px, 2.8vw, 22px);
    }

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

.services-process {
        font-family: var(--font-family);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(16px, 3vw, 40px);
    }

    .services-process .services-process__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .services-process .services-process__grid {
        display: grid;
        gap: var(--space-x);
    }

    .services-process .services-process__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        text-align: center;
    }

    .services-process .services-process__bubble {
        margin: 0 auto .4rem;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-weight: 800;
    }

    .services-process p {
        margin: .25rem 0 0;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 767px) {
        .services-process .services-process__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.nav-link:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.burger-menu span {
    display: block;
    height: 3px;
    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);
}

@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-1);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #f1c40f;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.footer-nav, .social-links, address p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .social-links li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .social-links a, address a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .social-links a:hover, address a:hover {
  color: #f1c40f;
}
address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-nav, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav li, .social-links li {
    margin-bottom: 0;
  }
}

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

.contact-form {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .contact-form .c {
        max-width: min(820px, var(--max-w));
        margin: 0 auto;
    }

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-lg);
    }

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

    .contact-form .fl {
        position: relative;
    }

    .contact-form .fl input, .contact-form .fl textarea {
        width: 100%;
        padding: 1.1rem 1rem .9rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        box-sizing: border-box;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        color: var(--fg-on-page);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .contact-form .fl input:focus, .contact-form .fl textarea:focus {
        outline: none;
        border-color: var(--brand);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .contact-form .fl label {
        position: absolute;
        top: .95rem;
        left: 1rem;
        font-size: .95rem;
        color: var(--neutral-600);
        transition: all var(--anim-duration) var(--anim-ease);
        pointer-events: none;
        background-color: #fff;
        padding: 0 4px;
        margin-left: -4px;
    }

    .contact-form .fl input:focus + label, .contact-form .fl input:not(:placeholder-shown) + label,
    .contact-form .fl textarea:focus + label, .contact-form .fl textarea:not(:placeholder-shown) + label {
        top: -.5rem;
        font-size: .75rem;
        color: var(--brand);
        opacity: 1;
    }

    .contact-form .fl.wide textarea {
        min-height: 120px;
        resize: vertical;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .9rem;
        color: var(--neutral-600);
        cursor: pointer;
    }

    .contact-form .agree input[type="checkbox"] {
        width: 1rem;
        height: 1rem;
        cursor: pointer;
    }

    .contact-form button {
        align-self: start;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--btn-primary-bg);
        color: var(--btn-primary-fg);
        border: 0;
        font-family: var(--font-family);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .contact-form button:hover {
        background: var(--btn-primary-bg-hover);
    }

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

.contact-support {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .contact-support .grid {
        display: grid;
        gap: var(--space-x);
    }

    .contact-support .card {
        display: block;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        text-decoration: none;
        color: inherit;
        box-shadow: var(--shadow-sm);
        transition: transform .2s;
    }
    .contact-support .card {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition:
                transform var(--anim-duration) var(--anim-ease),
                box-shadow var(--anim-duration) var(--anim-ease),
                background-color var(--anim-duration) var(--anim-ease);
    }

    .contact-support .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

    .contact-support .card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    @media (max-width: 767px) {
        .contact-support .grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.nav-link:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.burger-menu span {
    display: block;
    height: 3px;
    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);
}

@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-1);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #f1c40f;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.footer-nav, .social-links, address p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .social-links li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .social-links a, address a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .social-links a:hover, address a:hover {
  color: #f1c40f;
}
address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-nav, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav li, .social-links li {
    margin-bottom: 0;
  }
}

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.policy-items {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .policy-items h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

    .policy-items__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .policy-items__card {
        padding: 1.75rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .policy-items__card h3 {
        margin: 0 0 1rem;
        font-size: clamp(18px, 2.5vw, 22px);
        color: var(--fg-on-page);
    }

    .policy-items__text {
        font-size: .95rem;
        color: var(--neutral-600);
        line-height: 1.7;
    }

    @media (max-width: 1023px) {
        .policy-items__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.nav-link:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.burger-menu span {
    display: block;
    height: 3px;
    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);
}

@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-1);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #f1c40f;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.footer-nav, .social-links, address p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .social-links li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .social-links a, address a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .social-links a:hover, address a:hover {
  color: #f1c40f;
}
address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-nav, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav li, .social-links li {
    margin-bottom: 0;
  }
}

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.terms-items {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .terms-items h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

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

    .terms-items__card {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

    .terms-items__card:hover {
        box-shadow: var(--shadow-md);
    }

    .terms-items__card h3 {
        margin: 0 0 1rem;
        font-size: clamp(18px, 2.5vw, 22px);
        color: var(--neutral-900);
    }

    .terms-items__text {
        font-size: .95rem;
        color: var(--neutral-600);
        line-height: 1.7;
    }

    @media (max-width: 1023px) {
        .terms-items__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.nav-link:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.burger-menu span {
    display: block;
    height: 3px;
    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);
}

@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-1);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #f1c40f;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.footer-nav, .social-links, address p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .social-links li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .social-links a, address a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .social-links a:hover, address a:hover {
  color: #f1c40f;
}
address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-nav, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav li, .social-links li {
    margin-bottom: 0;
  }
}

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thank--light-v6 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    text-align: center;
}

.thank__inner {
    max-width: 480px;
    margin: 0 auto;
}

.thank__inner h1 {
    margin: 0 0 6px;
    font-size: clamp(26px,4.5vw,34px);
}

.thank__inner p {
    margin: 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

.nav-link:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.burger-menu span {
    display: block;
    height: 3px;
    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);
}

@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-1);
        padding: 80px var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #f1c40f;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
.footer-nav, .social-links, address p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li, .social-links li {
  margin-bottom: 0.7rem;
}
.footer-nav a, .social-links a, address a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .social-links a:hover, address a:hover {
  color: #f1c40f;
}
address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-nav, .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav li, .social-links li {
    margin-bottom: 0;
  }
}

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.not-found--colored-v5 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.25), transparent),
                radial-gradient(circle at bottom right, rgba(139,92,246,0.3), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.not-found__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.not-found__code {
    font-size: clamp(64px, 18vw, 120px);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--bg-accent);
}

.not-found__title {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 32px);
    color: var(--brand-contrast);
}

.not-found__text {
    margin: 0 0 18px;
    color: var(--neutral-300);
}

.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.not-found__btn {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.not-found__btn--primary {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

.not-found__btn--primary:hover {
    background: var(--bg-primary-hover);
}

.not-found__btn--ghost {
    background: transparent;
    color: var(--brand-contrast);
    border: 1px solid rgba(148,163,184,0.7);
}

    .not-found__btn--ghost {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

.not-found__btn--ghost:hover {
    background: rgba(15,23,42,0.8);
}

@media (max-width: 768px) {
    .not-found__inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
        justify-items: center;
    }
}