:root {
  --font-family: "Oswald", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;

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

  --radius-xl: 12px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 0.3s;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #2c5282;
  --brand-contrast: #ffffff;
  --accent: #3182ce;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f7fafc;
  --neutral-300: #e2e8f0;
  --neutral-600: #718096;
  --neutral-800: #2d3748;
  --neutral-900: #1a202c;

  --bg-page: #ffffff;
  --fg-on-page: #2d3748;

  --bg-alt: #f7fafc;
  --fg-on-alt: #4a5568;

  --surface-1: #ffffff;
  --surface-2: #f7fafc;
  --fg-on-surface: #2d3748;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #4a5568;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #2c5282;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2a4365;
  --ring: #3182ce;

  --bg-accent: #ebf8ff;
  --fg-on-accent: #2c5282;
  --bg-accent-hover: #2b6cb0;

  --success: #38a169;
  --success-contrast: #ffffff;
  --warning: #d69e2e;
  --warning-contrast: #ffffff;
  --danger: #e53e3e;
  --danger-contrast: #ffffff;

  --link: #3182ce;
  --link-hover: #2c5282;

  --gradient-hero: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
  --gradient-accent: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 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);}

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--bg-primary);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: clamp(20px, 4vw, 48px);
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }

    .index-hero h1 {
        font-size: clamp(28px, 6vw, 64px);
        line-height: 1.05;
        margin: 0 0 .35em;
    }

    .index-hero p {
        font-size: clamp(16px, 2.4vw, 22px);
        opacity: .9;
        margin: 0 0 1.25rem;
    }

    .index-hero .index-hero__actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-hero .index-hero__btn {
        display: inline-block;
        padding: .9rem 1.4rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow .3s;
    }

    .index-hero .index-hero__btn.index-hero__primary {
        background: var(--fg-on-page);
        color: var(--bg-page);
        box-shadow: var(--shadow-md);
    }

    .index-hero .index-hero__btn.index-hero__ghost {
        border: 1px solid var(--fg-on-primary);
        color: var(--fg-on-primary);
    }

    .index-hero .index-hero__btn:hover {
        transform: translateY(-2px);
    }

    .index-hero .index-hero__art img {
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
    }
    @media (max-width: 767px) {
        .index-hero .index-hero__c {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

    .index-cta .index-cta__ribbon {
        position: relative;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 24px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: var(--shadow-lg);
    }

    .index-cta .index-cta__btn {
        background-color: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .8rem 1.1rem;
        border-radius: var(--radius-md);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .index-cta .index-cta__btn:hover {
        background-color: var(--neutral-800);
    }

    .index-cta h4 {
        margin: 0;
        font-size: clamp(1.25rem, 2vw, 1.75rem);
        font-weight: 600;
        line-height: 1.2;
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__ribbon {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .index-cta__c {
            grid-template-columns: auto;
        }
    }

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

    .contact-support .c {
        max-width: var(--max-w);
        margin: 0 auto;
    }
    .contact-support .qa {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: .6rem;
    }

    .contact-support .qa .question {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        padding: .7rem 1rem;
        border-radius: var(--radius-lg);
        flex-direction: column;
    }

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

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

    .index-features h2 {
        color: var(--bg-primary)
    }

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

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

    .index-features .index-features__feat {
        border: 1px dashed var(--ring);
        border-radius: var(--radius-md);
        padding: clamp(12px, 2vw, 20px);
        background: var(--bg-page);
    }

    .index-features .index-features__badge {
        background: var(--bg-accent);
        color: var(--neutral-600);
        border-radius: 999px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .index-features h3 {
        margin: .25rem 0 .35rem;
    }

    .index-features p {
        color: var(--neutral-600);
    }

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

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.project-list {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

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

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

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

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

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

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

    .project-list .project-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .project-list .project-list__card {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .project-list .project-list__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .project-list .project-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

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

    .project-list h3 a {
        color: var(--card-fg-light);
        text-decoration: none;
    }

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

    .project-list p {
        margin: 0.5rem 0 1rem;
        color: var(--fg-on-page);
    }

    .project-list .project-list__tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .project-list .project-list__tag {
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-size: 0.875rem;
    }

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

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

    .slider .slider__container {
        position: relative;
        min-height: 280px;
    }

    .slider .slider__slide {
        display: none;
        padding: clamp(32px, 5vw, 48px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-align: center;
    }

    .slider .slider__slide:first-child {
        display: block;
    }

    .slider .slider__quote {
        font-size: clamp(48px, 8vw, 72px);
        line-height: 1;
        color: var(--bg-accent);
        margin-bottom: clamp(16px, 3vw, 24px);
    }

    .slider .slider__text {
        font-size: clamp(18px, 3vw, 22px);
        line-height: 1.7;
        color: var(--fg-on-page);
        margin: 0 0 clamp(24px, 4vw, 32px);
    }

    .slider .slider__author h4 {
        font-size: clamp(18px, 3vw, 22px);
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
    }

    .slider .slider__author p {
        font-size: clamp(14px, 2vw, 16px);
        color: var(--neutral-600);
        margin: 0;
    }

    .slider .slider__dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: clamp(24px, 4vw, 32px);
    }

    .slider .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--neutral-300);
        cursor: pointer;
        transition: background 0.3s;
    }

    .slider .dot.active {
        background: var(--bg-accent);
    }

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

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

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

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

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

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        text-align: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(16px, 3vw, 24px);
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__item h3 {
        font-size: clamp(18px, 3vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

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

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.project-item {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

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

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

    .testimonials .testimonials__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

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

    .testimonials .testimonials__grid {
        display: grid;
        gap: var(--space-x);
    }

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

    @media (min-width: 768px) {
        .testimonials .testimonials__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .testimonials .testimonials__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .testimonials .testimonials__card {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        position: relative;
    }

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

    .testimonials .testimonials__quote {
        font-size: 4rem;
        color: var(--bg-primary);
        opacity: 0.3;
        line-height: 1;
    }

    .testimonials .testimonials__text {
        color: var(--fg-on-page);
        line-height: 1.8;
        margin: 0 0 1.5rem;
        font-style: italic;
    }

    .testimonials .testimonials__author {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

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

    .testimonials .testimonials__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .testimonials h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
    }

    .testimonials .testimonials__role {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.project-item {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.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;
        color: var(--brand);
    }

    .about-mission .about-mission__txt {
        margin: 0;
        max-width: var(--max-w);
        line-height: var(--line-height-base);
        color: var(--neutral-800);
    }

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

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

    .about-team .about-team__grid {
        display: grid;
        gap: var(--space-x);
        text-align: center;
    }

    .about-team .about-team__cell img {
        width: 96px;
        height: 96px;
        border-radius: 999px;
        object-fit: cover;
        margin: 0 auto .5rem;
        box-shadow: var(--shadow-sm);
    }

    .about-team .about-team__cell {
        background-color: var(--bg-page);
        border: 1px solid var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: 2rem 1rem;
        box-shadow: var(--shadow-sm);
    }

    .about-team .about-team__cell p {
        margin: .1rem 0 0;
        color: var(--neutral-600);
    }

    .about-team__cell h4 {
        color: var(--fg-on-page)
    }

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

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

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

    .advantages .advantages__header {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

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

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

    .advantages .advantages__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: clamp(24px, 4vw, 40px);
    }

    .advantages .advantages__item {
        text-align: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .advantages .advantages__icon {
        font-size: clamp(48px, 8vw, 80px);
        margin: 0 auto clamp(16px, 3vw, 24px);
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .advantages .advantages__item h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

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

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

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

    .about-timeline .about-timeline__tbl {
        width: 100%;
        border-collapse: collapse;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }

    .about-timeline .about-timeline__tbl td {
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        vertical-align: top;
    }

    .about-timeline .about-timeline__tbl td:first-child {
        color: var(--brand);
        font-weight: bold;
        width: 100px;
    }

    .about-timeline .about-timeline__tbl td:nth-child(2) {
        font-weight: bold;
        color: var(--neutral-800);
        width: 200px;
    }

    .about-timeline .about-timeline__tbl td:last-child {
        color: var(--neutral-600);
    }

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.contact-map {
        font-family: var(--font-family);
        background: var(--bg-page);
        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: 2.5rem;
    }

    .contact-map .h h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

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

    .contact-map .content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

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

    .contact-map .info-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.5vw, 28px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .info-card h3 {
        margin: 0 0 1.5rem;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .contact-map .items {
        display: grid;
        gap: 1.5rem;
    }

    .contact-map .item {
        display: grid;
        gap: .5rem;
    }

    .contact-map .item strong {
        display: block;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-map .item span {
        display: block;
        font-size: 1.05rem;
        color: var(--fg-on-accent);
    }

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

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

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

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

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

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-sm);
    }

    .contact-form .row {
        display: grid;
        gap: 6px;
    }

    .contact-form label {
        font-size: .9rem;
        opacity: .85;
    }

    .contact-form input:not([type="checkbox"]), .contact-form textarea {
        width: 100%;
        padding: .85rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        transition: box-shadow .2s, transform .15s;
        box-sizing: border-box;
    }

    .contact-form input:focus, .contact-form textarea:focus {
        box-shadow: 0 0 0 3px var(--bg-accent);
        transform: translateY(-1px);
        outline: none;
    }

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

    .contact-form button {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        transition: transform .2s;
    }

    .contact-form button:hover {
        transform: translateY(-2px);
    }

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

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

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

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

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

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

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

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

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

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

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.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__h {
        text-align: center;
        margin-bottom: 3rem;
    }

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

    .policy-items__h p {
        margin: 0;
        font-size: var(--gap);
        color: var(--neutral-600);
    }

    .policy-items__list {
        display: grid;
        gap: 2rem;
    }

    .policy-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
    }

    .policy-items__num {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 1.25rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    .policy-items__content h3 {
        margin: 0 0 .75rem;
        font-size: clamp(18px, 3vw, 24px);
        color: var(--fg-on-page);
    }

    .policy-items__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .policy-items__item {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .policy-items__num {
            width: 2.5rem;
            height: 2.5rem;
            font-size: 1rem;
        }
    }

.header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  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-link {
  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-link:hover {
  color: var(--brand-contrast);
}

.navigation {
  display: flex;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-y);
  gap: 4px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  transition: all var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .burger-menu {
    display: flex;
  }
  
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  
  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  border-top: 1px solid #e9ecef;
  font-family: Arial, sans-serif;
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 8px 0;
  color: #6c757d;
}

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #007bff;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #007bff;
}

.footer-disclaimer p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal a {
    display: block;
    margin: 8px 0;
  }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    .cookie-banner__buttons {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .terms-items__h {
        text-align: center;
        margin-bottom: 3rem;
    }

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

    .terms-items__h p {
        margin: 0;
        font-size: var(--gap);
        color: var(--neutral-600);
    }

    .terms-items__items {
        display: grid;
        gap: 1.5rem;
    }

    .terms-items__item {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .terms-items__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .terms-items__marker {
        width: 8px;
        height: 8px;
        background: var(--fg-on-accent);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .terms-items__header h3 {
        margin: 0;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .terms-items__body p {
        margin: 0;
        font-size: 1rem;
        color: var(--fg-on-accent);
        opacity: .95;
        line-height: 1.7;
    }

    @media (max-width: 767px) {
        .terms-items__item {
            padding: 1.5rem;
        }
    }

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

    .policy-contacts .policy-contacts__mini {
        margin-bottom: 1rem;
        align-items: center;
    }

    .policy-contacts .policy-contacts__mini label:not(.policy-contacts__agree) {
        display: grid;
        gap: 6px;
        color: black
    }

    .policy-contacts .policy-contacts__mini input {
        padding: .7rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
    }

    .policy-contacts .policy-contacts__agree {
        display: flex;
        align-items: center;
        gap: .5rem;
        color: var(--neutral-600);
        margin: 1rem 0
    }

    .policy-contacts button {
        padding: .75rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
    }

    .policy-contacts .item {
        color: black
    }