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

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

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

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

  --overlay: rgba(255, 255, 255, 0.85);
  --anim-duration: 200ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --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: #1e293b;

  --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, #f8fafc 0%, #ffffff 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #7c3aed 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);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(0.65rem) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.is-active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    margin-top: 3rem;
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .legal-links {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contact p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #dee2e6;
        color: #333;
        text-decoration: none;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.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;
        color: white;
        background: rgba(0,0,0,0.7);
        padding: var(--space-y);
        border-radius: var(--radius-lg);
    }

    .index-hero p {
        max-width: 60ch;
        margin: 0 auto 1.25rem;
        color: white;
        background: rgba(0,0,0,0.7);
        padding: 14px;
        border-radius: var(--radius-lg);
    }

    .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;
        background: var(--input-bg);
        color: var(--input-fg);
        border-color: var(--input-border);
    }

    .index-hero input::placeholder {
        color: var(--input-placeholder);
    }

    .index-hero button {
        padding: .95rem 1.3rem;
        border-radius: var(--radius-md);
        background: var(--btn-primary-bg);
        color: var(--btn-primary-fg);
        border: 0;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .index-hero button:hover {
        background-color: var(--btn-primary-bg-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: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(24px, 4vw, 64px) clamp(16px, 3vw, 40px);
    }

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

    .index-cta .index-cta__cta {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 3vw, 28px);
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .index-cta .index-cta__btn:hover {
        background: var(--bg-primary-hover);
    }

    .index-cta h3 {
        margin: 0 0 .25rem;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        color: var(--neutral-900);
    }

    .index-cta p {
        margin: 0;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        max-width: 60ch;
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__cta {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

.subscribe--light-v6 {
        font-family: var(--font-family);
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .subscribe__inner {
        max-width: 520px;
        margin: 0 auto;
        text-align: center;
    }

    .subscribe__inner h2 {
        margin: 0 0 var(--space-y);
        font-size: clamp(22px, 3.5vw, 28px);
        font-weight: 600;
        color: var(--neutral-800);
        line-height: 1.3;
    }

    .subscribe__inner > p {
        margin: 0 auto var(--space-y);
        color: var(--neutral-600);
        font-size: 1rem;
        line-height: var(--line-height-base);
        max-width: 90%;
    }

    .subscribe__form {
        margin-top: calc(var(--space-y) * 1.5);
    }

    .subscribe__input-group {
        display: flex;
        flex-direction: column;
        gap: var(--gap);
        margin-bottom: var(--gap);
    }

    @media (min-width: 480px) {
        .subscribe__input-group {
            flex-direction: row;
        }
    }

    .subscribe__input-group input {
        flex-grow: 1;
        padding: 14px 18px;
        border: 1px solid var(--input-border);
        background-color: var(--input-bg);
        color: var(--input-fg);
        border-radius: var(--radius-lg);
        font-family: var(--font-family);
        font-size: 1rem;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }

    .subscribe__input-group input:focus {
        outline: none;
        border-color: var(--ring);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    }

    .subscribe__input-group input::placeholder {
        color: var(--input-placeholder);
    }

    .subscribe__button {
        padding: 14px 28px;
        background-color: var(--btn-primary-bg);
        color: var(--btn-primary-fg);
        border: none;
        border-radius: var(--radius-lg);
        font-family: var(--font-family);
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: var(--shadow-md);
    }

    .subscribe__button:hover {
        background-color: var(--btn-primary-bg-hover);
    }

    .subscribe__note {
        margin: 0;
        font-size: 0.85rem;
        color: var(--neutral-600);
        line-height: 1.5;
    }

    .subscribe__note a {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
    }

    .subscribe__note a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

    }

    .index-features {
        background: linear-gradient(45deg, var(--bg-primary) 0%, var(--bg-accent) 50%, var(--accent) 100%);
        background-size: 400% 400%;
        animation: gradientWave 8s ease infinite;
    }

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

    .index-features__h {
        margin-bottom: 2rem;
    }

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

    .index-features .index-features__steps {
        display: grid;
        gap: var(--space-x);
        counter-reset: step;
    }

    .index-features .index-features__steps .step {
        list-style: none;
        display: grid;
        grid-template-columns:auto 1fr;
        gap: 16px;
        align-items: start;
        background: var(--card-bg-dark);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

    .index-features .index-features__n {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

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

    .index-features p {
        margin: 0;
    }

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(0.65rem) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.is-active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    margin-top: 3rem;
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .legal-links {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contact p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #dee2e6;
        color: #333;
        text-decoration: none;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .about-team .about-team__row {
        display: grid;
        gap: 16px;
        grid-template-columns: 120px 1fr;
        align-items: center;
        padding: .8rem 0;
        border-bottom: 1px solid var(--ring);
    }

    .about-team img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
    }

    .about-team .about-team__social a {
        display: inline-block;
        margin-right: .5rem;
        text-decoration: none;
        padding: .35rem .6rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    @media (max-width: 767px) {
        .about-team .about-team__row {
            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(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__card:hover {
        transform: scale(1.03);
        transition: 0.5s
    }

    .advantages .advantages__card {
        text-align: center;
        padding: clamp(28px, 4.5vw, 40px) clamp(20px, 3vw, 28px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .advantages .advantages__card:hover {
        box-shadow: var(--shadow-md);
    }

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

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

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

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

    .about-timeline .about-timeline__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .about-timeline time {
        opacity: .9;
    }

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

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

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1.2fr);
    gap: 24px;
    align-items: center;
}

.mission__headline h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,30px);
}

.mission__headline p {
    margin: 0;
    color: var(--neutral-600);
    line-height: 1.7;
}

.mission__stats {
    display: grid;
    gap: 10px;
}

.mission__stat {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
}

.mission__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-600);
}

.mission__stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.mission__stat--success .mission__stat-value {
    color: var(--success);
}

.mission__stat--brand .mission__stat-value {
    color: var(--bg-primary);
}

.mission__stat--warning .mission__stat-value {
    color: var(--warning);
}

@media (max-width: 768px) {
    .mission__inner {
        grid-template-columns: minmax(0,1fr);
    }
}

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(0.65rem) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.is-active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    margin-top: 3rem;
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .legal-links {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contact p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #dee2e6;
        color: #333;
        text-decoration: none;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .services-pricing .services-pricing__toggle {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .services-pricing .services-pricing__toggle button {
        padding: .6rem .9rem;
        border-radius: 999px;
        border: 1px solid var(--ring);
        background: var(--bg-page);
        cursor: pointer;
    }

    .services-pricing .services-pricing__toggle .services-pricing__on {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .services-pricing .services-pricing__plans {
        display: grid;
        gap: var(--space-x);
    }

    .services-pricing .services-pricing__plan {
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        background: var(--bg-page);
        box-shadow: var(--shadow-sm);
        text-align: center;
    }

    .services-pricing__price {
        font-size: calc(var(--font-size-base) * 2);
        margin-bottom: 1rem;
    }

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

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

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

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

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

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

.process__header {
    text-align: center;
    margin-bottom: 20px;
}

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

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

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

.process__step {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 12px;
    align-items: flex-start;
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.process__step--highlight {
    border-color: var(--bg-primary);
}
.process__step--success {
    border-color: var(--success);
}

.process__step-index {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.process__step-body h3 {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

.process__step-body p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

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

    }

    .index-features {
        background: linear-gradient(45deg, var(--bg-primary) 0%, var(--bg-accent) 50%, var(--accent) 100%);
        background-size: 400% 400%;
        animation: gradientWave 8s ease infinite;
    }

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

    .index-features__h {
        margin-bottom: 2rem;
    }

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

    .index-features .index-features__steps {
        display: grid;
        gap: var(--space-x);
        counter-reset: step;
    }

    .index-features .index-features__steps .step {
        list-style: none;
        display: grid;
        grid-template-columns:auto 1fr;
        gap: 16px;
        align-items: start;
        background: var(--card-bg-dark);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

    .index-features .index-features__n {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

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

    .index-features p {
        margin: 0;
    }

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

.partners--colored-v5 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.partners__header {
    text-align: center;
    margin-bottom: 20px;
}

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

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

.partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 12px;
}

.partners__logo {
    border-radius: var(--radius-xl);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__logo--gold {
    border-color: var(--warning);
}
.partners__logo--prime {
    border-color: var(--bg-primary);
}
.partners__logo--trusted {
    border-color: var(--success);
}

.partners__logo-text {
    font-size: 0.9rem;
    color: var(--neutral-0);
}

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(0.65rem) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.is-active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    margin-top: 3rem;
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .legal-links {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contact p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #dee2e6;
        color: #333;
        text-decoration: none;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

.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: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-on-surface);
    }

    .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(--input-border);
        border-radius: var(--radius-md);
        background: var(--input-bg);
        color: var(--input-fg);
        box-sizing: border-box;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

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

    .contact-form .fl input::placeholder, .contact-form .fl textarea::placeholder {
        color: transparent;
    }

    .contact-form .fl label {
        position: absolute;
        top: .95rem;
        left: 1rem;
        font-size: .95rem;
        color: var(--input-placeholder);
        transition: all var(--anim-duration) var(--anim-ease);
        pointer-events: none;
        background-color: var(--input-bg);
        padding: 0 0.25rem;
        margin-left: -0.25rem;
    }

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

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

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

    .contact-form .agree a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-form .agree a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

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

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

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(0.65rem) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.is-active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    margin-top: 3rem;
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .legal-links {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contact p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #dee2e6;
        color: #333;
        text-decoration: none;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

.contacts--colored-v5 {
    font-family: var(--font-family);
    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.contacts__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 24px;
}

.contacts__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.7);
    box-shadow: var(--shadow-lg);
}

.contacts__title {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

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

.contacts__rows {
    display: grid;
    gap: 10px;
}

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

.contacts__icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-0);
    font-size: 0.85rem;
}

.contacts__icon--primary {
    background: var(--bg-primary);
}

.contacts__icon--accent {
    background: var(--accent);
}

.contacts__icon--danger {
    background: var(--danger);
}

.contacts__label {
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.contacts__value {
    font-size: 0.95rem;
    color: var(--neutral-0);
}

.contacts__side {
    display: grid;
    align-content: center;
    gap: 10px;
}

.contacts__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--warning);
    color: var(--warning-contrast);
    font-size: 0.8rem;
}

.contacts__text {
    margin: 0;
    color: var(--neutral-300);
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .contacts__inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(0.65rem) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.is-active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    margin-top: 3rem;
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .legal-links {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contact p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #dee2e6;
        color: #333;
        text-decoration: none;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.terms-items--colored-v5 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

.terms-items__list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 10px;
}

.terms-items__item h3 {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

.terms-items__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(0.65rem) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.is-active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    margin-top: 3rem;
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .legal-links {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contact p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #dee2e6;
        color: #333;
        text-decoration: none;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thank--colored-v5 {
    font-family: var(--font-family);
    padding: 80px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
    text-align: center;
}

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

.thank__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: var(--success);
    color: var(--success-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

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

.thank__text {
    margin: 0 0 16px;
    color: var(--neutral-300);
}

.thank__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.header {
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--bg-alt);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(0.65rem) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    border-left: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.is-active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    margin-top: 3rem;
  }
  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: auto;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .legal-links {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-contact a,
    .legal-links a,
    .social-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-contact a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contact p {
        margin: 0 0 0.5rem 0;
        line-height: 1.5;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #e9ecef;
        border-radius: 50%;
        font-weight: bold;
    }

    .social-links a:hover {
        background-color: #dee2e6;
        color: #333;
        text-decoration: none;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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