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

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

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

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

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

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #7c3aed;
  --accent-contrast: #ffffff;

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

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

  --bg-alt: #f8fafc;
  --fg-on-alt: #475569;

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #f1f5f9;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #f5f3ff;
  --fg-on-accent: #7c3aed;
  --bg-accent-hover: #6d28d9;

  --success: #10b981;
  --success-contrast: #ffffff;
  --warning: #f59e0b;
  --warning-contrast: #ffffff;
  --danger: #ef4444;
  --danger-contrast: #ffffff;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 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-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.burger-line {
  width: 24px;
  height: 2px;
  background-color: 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-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    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);
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-sm);
  }
  
  .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: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-nav ul,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.legal-links li {
    margin-bottom: 8px;
}

.footer-nav a,
.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

.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-page);
        background: radial-gradient(60% 120% at 10% 0%, var(--bg-accent), transparent), var(--bg-page);
        padding: clamp(28px, 5vw, 80px) clamp(16px, 4vw, 40px);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 32px;
        grid-template-columns: 1.2fr .8fr;
        align-items: center;
    }

    .index-hero h1 {
        font-size: clamp(34px, 7vw, 80px);
        letter-spacing: -.02em;
        margin: 0 0 .3em;
        color: inherit;
        background: inherit;
    }

    .index-hero p {
        font-size: clamp(16px, 2.2vw, 22px);
        opacity: .9;
        margin: 0 0 1.1rem;
        color: inherit;
        background: inherit;
    }

    .index-hero .index-hero__btn {
        display: inline-block;
        padding: 1rem 1.3rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        box-shadow: var(--shadow-lg);
    }

    .index-hero .index-hero__right {
        display: grid;
        gap: 12px;
    }

    .index-hero .index-hero__right .badge {
        list-style: none;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: .85rem 1rem;
        box-shadow: var(--shadow-sm);
    }

    @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 h4 {
        margin: 0;
        font-size: clamp(1.25rem, 2vw, 1.5rem);
        font-weight: 700;
    }

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

    @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;
        }
    }

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

    .index-features .index-features__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: clamp(18px, 3vw, 32px);
    }

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

    .index-features .index-features__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        background: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.4vw, 28px);
        backdrop-filter: blur(8px);
    }

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

    .index-features .index-features__row:nth-child(even) {
        grid-auto-flow: dense;
        direction: rtl;
    }

    .index-features .index-features__row:nth-child(even) .index-features__txt {
        direction: ltr;
    }

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

    .index-features h3 {
        margin: 0 0 .4rem;
        font-size: clamp(20px, 3vw, 28px);
        color: var(--bg-primary)
    }

    .index-features p {
        margin: 0;
        color: var(--bg-primary)
    }

    @media (max-width: 767px) {
        .index-features .index-features__row {
            grid-template-columns: 1fr;
        }

        .index-features .index-features__row:nth-child(even) {
            direction: ltr;
        }
    }

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.burger-line {
  width: 24px;
  height: 2px;
  background-color: 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-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    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);
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-sm);
  }
  
  .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: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-nav ul,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.legal-links li {
    margin-bottom: 8px;
}

.footer-nav a,
.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

.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: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

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

    .our-story .our-story__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .our-story .our-story__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.25rem;
    }

    @media (max-width: 768px) {
        .our-story .our-story__content {
            grid-template-columns: 1fr;
        }
    }

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

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

    .advantages .advantages__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(40px, 6vw, 64px);
        color: var(--fg-on-page);
    }

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

    .advantages .advantages__card {
        text-align: center;
        padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
    }

    .advantages .advantages__icon-wrapper {
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .advantages .advantages__icon {
        font-size: clamp(56px, 9vw, 96px);
        margin: 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: clamp(100px, 14vw, 140px);
        height: clamp(100px, 14vw, 140px);
        background: var(--gradient-accent);
        border-radius: 50%;
    }

    .advantages .advantages__card h3 {
        font-size: clamp(22px, 3.5vw, 28px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

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

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

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

    .about-team .about-team__mosaic {
        columns: 3 240px;
        column-gap: 16px;
    }

    .about-team figure {
        break-inside: avoid;
        margin: 0 0 16px;
        background: rgba(255, 255, 255, .1);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .about-team img {
        width: 100%;
        display: block;
    }

    .about-team figcaption {
        padding: .6rem .8rem;
        font-size: .95rem;
    }

    @media (max-width: 767px) {
        .about-team .about-team__mosaic {
            columns: 1;
        }
    }

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.burger-line {
  width: 24px;
  height: 2px;
  background-color: 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-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    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);
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-sm);
  }
  
  .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: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-nav ul,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.legal-links li {
    margin-bottom: 8px;
}

.footer-nav a,
.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

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

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

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

    .advantages .advantages__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(40px, 6vw, 64px);
        color: var(--fg-on-page);
    }

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

    .advantages .advantages__card {
        text-align: center;
        padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
    }

    .advantages .advantages__icon-wrapper {
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .advantages .advantages__icon {
        font-size: clamp(56px, 9vw, 96px);
        margin: 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: clamp(100px, 14vw, 140px);
        height: clamp(100px, 14vw, 140px);
        background: var(--gradient-accent);
        border-radius: 50%;
    }

    .advantages .advantages__card h3 {
        font-size: clamp(22px, 3.5vw, 28px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

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

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

    .index-features .index-features__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: clamp(18px, 3vw, 32px);
    }

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

    .index-features .index-features__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        background: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.4vw, 28px);
        backdrop-filter: blur(8px);
    }

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

    .index-features .index-features__row:nth-child(even) {
        grid-auto-flow: dense;
        direction: rtl;
    }

    .index-features .index-features__row:nth-child(even) .index-features__txt {
        direction: ltr;
    }

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

    .index-features h3 {
        margin: 0 0 .4rem;
        font-size: clamp(20px, 3vw, 28px);
        color: var(--bg-primary)
    }

    .index-features p {
        margin: 0;
        color: var(--bg-primary)
    }

    @media (max-width: 767px) {
        .index-features .index-features__row {
            grid-template-columns: 1fr;
        }

        .index-features .index-features__row:nth-child(even) {
            direction: ltr;
        }
    }

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.burger-line {
  width: 24px;
  height: 2px;
  background-color: 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-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    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);
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-sm);
  }
  
  .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: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-nav ul,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.legal-links li {
    margin-bottom: 8px;
}

.footer-nav a,
.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

.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: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-form h2 {
        color: black
    }

    .contact-form .grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-form .f {
        display: grid;
        gap: 10px;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .contact-form .f label:not(.agree) {
        display: grid;
        gap: 6px;
    }

    .contact-form .f input {
        padding: .8rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: var(--bg-page);
        box-sizing: border-box;
    }

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

    .contact-form .info {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: .5rem;

        color: var(--fg-on-page)
    }

    .form-submit {
        padding: 1rem;
        background: var(--bg-primary);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        border: 1px solid var(--bg-accent)
    }

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

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.burger-line {
  width: 24px;
  height: 2px;
  background-color: 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-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    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);
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-sm);
  }
  
  .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: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-nav ul,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.legal-links li {
    margin-bottom: 8px;
}

.footer-nav a,
.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

.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 h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

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

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

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

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

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

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

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.burger-line {
  width: 24px;
  height: 2px;
  background-color: 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-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    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);
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-sm);
  }
  
  .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: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-nav ul,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.legal-links li {
    margin-bottom: 8px;
}

.footer-nav a,
.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

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

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.burger-line {
  width: 24px;
  height: 2px;
  background-color: 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-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    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);
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-sm);
  }
  
  .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: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-nav ul,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.legal-links li {
    margin-bottom: 8px;
}

.footer-nav a,
.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

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

.thanks-light {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
    }

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

    .thanks-light__card {
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 4vw, 40px);
        box-shadow: var(--shadow-md);
        text-align: center;
        border: 1px solid var(--border-on-surface-light);
    }

    .thanks-light__mark {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: 1.6rem;
    }

    .thanks-light h1 {
        font-size: clamp(26px, 4.5vw, 38px);
        margin: 0 0 0.75rem;
    }

    .thanks-light p {
        margin: 0 0 0.75rem;
        opacity: 0.9;
    }

    .thanks-light__note {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 2rem;
    }

    .thanks-light__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .thanks-light__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.85rem 1.3rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease),
        color var(--anim-duration) var(--anim-ease),
        transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease);
    }

    .thanks-light__btn--primary {
        background: var(--btn-primary-bg);
        color: var(--btn-primary-fg);
        box-shadow: var(--shadow-sm);
    }

    .thanks-light__btn--primary:hover {
        background: var(--btn-primary-bg-hover);
        transform: translateY(-2px);
    }

    .thanks-light__btn--ghost {
        background: var(--btn-ghost-bg);
        color: var(--btn-ghost-fg);
        border: 1px solid var(--input-border);
    }

    .thanks-light__btn--ghost:hover {
        background: var(--btn-ghost-bg-hover);
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .thanks-light__card {
            padding: 20px;
        }

        .thanks-light__actions {
            flex-direction: column;
        }

        .thanks-light__btn {
            width: 100%;
            text-align: center;
        }
    }

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.burger-line {
  width: 24px;
  height: 2px;
  background-color: 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-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    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);
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-sm);
  }
  
  .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: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-nav ul,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.legal-links li {
    margin-bottom: 8px;
}

.footer-nav a,
.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

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

.error-404 {
        font-family: var(--font-family);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: clamp(36px, 7vw, 80px) clamp(16px, 4vw, 56px);
    }

    .error-404__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .error-404__grid {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
    }

    .error-404__content h1 {
        font-size: clamp(30px, 5vw, 46px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-accent);
    }

    .error-404__content p {
        margin: 0 0 1.8rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
    }

    .error-404__eyebrow {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 0.5rem;
        opacity: 0.85;
    }

    .error-404__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .error-404__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.85rem 1.3rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease),
        background var(--anim-duration) var(--anim-ease),
        color var(--anim-duration) var(--anim-ease);
    }

    .error-404__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .error-404__btn--primary:hover {
        transform: translateY(-2px);
        background: var(--bg-primary-hover);
    }

    .error-404__btn--ghost {
        background: rgba(255,255,255,0.08);
        color: var(--fg-on-accent);
        border: 1px solid rgba(255,255,255,0.4);
    }

    .error-404__btn--ghost:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.14);
    }

    .error-404__visual {
        display: flex;
        justify-content: center;
    }

    .error-404__bubble {
        position: relative;
        padding: 2.5rem 2rem;
        border-radius: 32px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        box-shadow: var(--shadow-lg);
        text-align: center;
        min-width: 220px;
    }

    .error-404__code {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 0.25rem;
    }

    .error-404__label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        opacity: 0.8;
    }

    @media (max-width: 767px) {
        .error-404__grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .error-404__actions {
            flex-direction: column;
        }

        .error-404__btn {
            width: 100%;
            text-align: center;
        }

        .error-404__visual {
            order: -1;
        }
    }