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

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

  --brand: #4A6B8A;
  --brand-contrast: #FFFFFF;
  --accent: #8A6B4A;
  --accent-contrast: #FFFFFF;

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

  --bg-page: #FEFEFE;
  --fg-on-page: #2D3748;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #4A5568;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #2D3748;
  --border-on-surface: #E2E8F0;

  --surface-light: rgba(255,255,255,0.9);
  --fg-on-surface-light: #4A5568;
  --border-on-surface-light: rgba(226,232,240,0.8);

  --bg-primary: #4A6B8A;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #3A5B7A;
  --ring: #4A6B8A;

  --bg-accent: #F8F4F0;
  --fg-on-accent: #5C4A36;
  --bg-accent-hover: #A68562;

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

  --link: #4A6B8A;
  --link-hover: #3A5B7A;

  --gradient-hero: linear-gradient(135deg, #4A6B8A 0%, #6A8BAA 100%);
  --gradient-accent: linear-gradient(135deg, #8A6B4A 0%, #AA8B6A 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: 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);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: bold;
  color: var(--brand);
  text-decoration: none;
}

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

.header__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);
  display: block;
}

.header__nav-link:hover {
  background: var(--bg-alt);
  color: var(--link-hover);
}

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

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  
  .header__nav {
    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(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .header__nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.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 {
    margin-bottom: 30px;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

.footer-nav a:hover {
    color: #2c3e50;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 6vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

    .index-hero .index-hero__eyebrow {
        display: inline-block;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        margin-bottom: .75rem;
    }

    .index-hero h1 {
        font-size: clamp(30px, 6.5vw, 72px);
        margin: .1em 0 .3em;
    }

    .index-hero p {
        max-width: 60ch;
        margin: 0 auto 1.25rem;
        color: var(--neutral-600);
    }

    .index-hero .index-hero__form {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .index-hero input {
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        min-width: 260px;
        outline: none;
    }

    .index-hero button {
        padding: .95rem 1.3rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        box-shadow: var(--shadow-md);
    }

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

    @media (max-width: 767px) {
        .index-hero .index-hero__form {
            flex-direction: column;
        }
        
        .index-hero input {
            min-width: auto;
            width: 100%;
        }
    }

.index-cta {
        font-family: var(--font-family);
        color: white;
        background: var(--bg-primary);
        padding: clamp(28px, 5vw, 72px) clamp(16px, 3vw, 40px);
    }

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

    .index-cta .index-cta__row {
        text-align: center;
    }

    .index-cta h2 {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .3rem;
    }

    .index-cta p {
        color: var(--fg-on-page);
        margin: 2rem 0;
    }

    .index-cta .index-cta__actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        text-decoration: none;
        padding: .85rem 1.2rem;
        border-radius: var(--radius-lg);
        transition: transform .2s;
        background: var(--bg-accent)
    }

    .index-cta .index-cta__btn.index-cta__primary {
        background: #fff;
        color: black;
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn.index-cta__ghost {
        border: 1px solid rgba(255, 255, 255, .5);
        color: var(--fg-on-page);
    }

    .index-cta .index-cta__btn:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__actions {
            flex-direction: column;
        }
        
        .index-cta .index-cta__btn {
            width: 100%;
            text-align: center;
        }
    }

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

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

    .subscribe .subscribe__split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(40px, 6vw, 64px);
        align-items: center;
    }

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

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

    .subscribe h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-weight: 700;
        line-height: 1.1;
    }

    .subscribe .subscribe__left p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0 0 clamp(24px, 4vw, 32px);
        line-height: 1.6;
    }

    .subscribe .subscribe__benefits {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

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

    .subscribe .subscribe__benefit {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
        color: var(--fg-on-page);
    }

    .subscribe .subscribe__benefit-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        flex-shrink: 0;
    }

    .subscribe .subscribe__right {
        background: var(--card-bg-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .subscribe .subscribe__form h3 {
        margin: 0 0 clamp(24px, 4vw, 32px);
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .subscribe .subscribe__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 24px);
    }

    .subscribe .subscribe__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .subscribe .subscribe__form-group input[type="email"] {
        padding: 1rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .subscribe .subscribe__form-group input[type="email"]:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .subscribe .subscribe__form-group input[type="checkbox"] {
        margin-right: 0.5rem;
    }

    .subscribe .subscribe__form-group label span {
        font-weight: 400;
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .subscribe .subscribe__form button {
        width: 100%;
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .subscribe .subscribe__form button:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.header {
  background: 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);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: bold;
  color: var(--brand);
  text-decoration: none;
}

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

.header__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);
  display: block;
}

.header__nav-link:hover {
  background: var(--bg-alt);
  color: var(--link-hover);
}

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

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  
  .header__nav {
    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(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .header__nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.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 {
    margin-bottom: 30px;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

.footer-nav a:hover {
    color: #2c3e50;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.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(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

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

    .advantages .advantages__card {
        text-align: center;
        padding: clamp(28px, 4.5vw, 40px) clamp(20px, 3vw, 28px);
    }

    .advantages .advantages__icon {
        font-size: clamp(52px, 8.5vw, 88px);
        margin: 0 auto clamp(20px, 3vw, 28px);
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        background: var(--surface-1);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

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

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

.our-story {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-alt);
        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__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
    }

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

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

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

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

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

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

.header {
  background: 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);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: bold;
  color: var(--brand);
  text-decoration: none;
}

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

.header__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);
  display: block;
}

.header__nav-link:hover {
  background: var(--bg-alt);
  color: var(--link-hover);
}

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

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  
  .header__nav {
    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(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .header__nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.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 {
    margin-bottom: 30px;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

.footer-nav a:hover {
    color: #2c3e50;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

    .index-features-v5 .index-features-v5__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .index-features-v5 h2 {
        font-size: clamp(24px, 4vw, 30px);
        font-weight: 700;
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

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

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

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

    .index-features-v5 .index-features-v5__card {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .index-features-v5 .index-features-v5__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .index-features-v5 .index-features-v5__icon {
        font-size: clamp(24px, 3vw, 48px);
        margin-bottom: 1rem;
        line-height: 1;
    }

    .index-features-v5 .index-features-v5__icon img {
        width: 48px;
        height: 48px;
    }

    .index-features-v5 h3 {
        font-size: clamp(18px, 2.2vw, 20px);
        font-weight: 600;
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .index-features-v5 p {
        font-size: clamp(14px, 1.8vw, 16px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

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

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

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

    .services-pricing .services-pricing__cmp {
        width: 100%;
        border-collapse: collapse;
        box-shadow: var(--shadow-sm);
    }

    .services-pricing th, .services-pricing td {
        border: 1px solid var(--ring);
        padding: .7rem .8rem;
        text-align: left;
        background: var(--card-bg-dark);
    }

    .services-pricing thead th {
        background: var(--bg-accent);
        color: var(--bg-page);
    }

.header {
  background: 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);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: bold;
  color: var(--brand);
  text-decoration: none;
}

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

.header__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);
  display: block;
}

.header__nav-link:hover {
  background: var(--bg-alt);
  color: var(--link-hover);
}

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

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  
  .header__nav {
    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(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .header__nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.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 {
    margin-bottom: 30px;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

.footer-nav a:hover {
    color: #2c3e50;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

    .contact-form .fl input, .contact-form .fl textarea {
        width: 100%;
        padding: 1.1rem 1rem .9rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        box-sizing: border-box;
    }

    .contact-form .fl label {
        position: absolute;
        top: .95rem;
        left: 1rem;
        font-size: .95rem;
        color: var(--neutral-300);
        transition: .15s;
    }

    .contact-form .fl input:focus + label, .contact-form .fl input:not(:placeholder-shown) + label,
    .contact-form .fl textarea:focus + label, .contact-form .fl textarea:not(:placeholder-shown) + label {
        top: .35rem;
        font-size: .75rem;
        opacity: .8;
    }

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

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

    .contact-form button {
        align-self: start;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
    }

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

.connect {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--surface-light);
        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(48px, 7vw, 72px);
    }

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

    .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(160px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

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

    .connect .connect__item:hover {
        transform: translateY(-4px);
    }

    .connect .connect__icon {
        font-size: clamp(44px, 7.5vw, 68px);
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__item span {
        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: 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);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: bold;
  color: var(--brand);
  text-decoration: none;
}

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

.header__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);
  display: block;
}

.header__nav-link:hover {
  background: var(--bg-alt);
  color: var(--link-hover);
}

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

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  
  .header__nav {
    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(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .header__nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.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 {
    margin-bottom: 30px;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

.footer-nav a:hover {
    color: #2c3e50;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

.header {
  background: 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);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: bold;
  color: var(--brand);
  text-decoration: none;
}

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

.header__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);
  display: block;
}

.header__nav-link:hover {
  background: var(--bg-alt);
  color: var(--link-hover);
}

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

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  
  .header__nav {
    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(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  
  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .header__nav-list {
    flex-direction: column;
    padding: var(--space-y);
  }
  
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.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 {
    margin-bottom: 30px;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

.footer-nav a:hover {
    color: #2c3e50;
}

address p {
    margin-bottom: 8px;
    color: #555;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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