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

  --max-w: 1280px;
  --space-x: 1.5rem;
  --space-y: 1.25rem;
  --gap: 1rem;

  --radius-xl: 1rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

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

  --brand: #2a7c3f;
  --brand-contrast: #ffffff;
  --accent: #d4a017;
  --accent-contrast: #1a1a1a;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #1a1a1a;

  --bg-page: #fefefe;
  --fg-on-page: #1a1a1a;

  --bg-alt: #f5f5f5;
  --fg-on-alt: #2d2d2d;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #1a1a1a;
  --border-on-surface: #e9ecef;

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #2a7c3f;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #236b36;
  --ring: rgba(42, 124, 63, 0.4);

  --bg-accent: rgba(212, 160, 23, 0.1);
  --fg-on-accent: #8a6a0f;
  --bg-accent-hover: #b88a14;

  --success: #28a745;
  --success-contrast: #ffffff;
  --warning: #ffc107;
  --warning-contrast: #1a1a1a;
  --danger: #dc3545;
  --danger-contrast: #ffffff;

  --link: #2a7c3f;
  --link-hover: #236b36;

  --gradient-hero: linear-gradient(135deg, rgba(42, 124, 63, 0.9) 0%, rgba(67, 97, 45, 0.85) 100%);
  --gradient-accent: linear-gradient(90deg, #2a7c3f 0%, #d4a017 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);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.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: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-line {
  display: block;
  height: 2px;
  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__nav {
  display: flex;
  align-items: center;
}

.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: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--surface-2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-x);
    gap: 0.5rem;
  }

  .header__nav-link {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding-bottom: 1.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;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a,
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-section a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        font-weight: bold;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .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 {
        position: relative;
        font-family: var(--font-family);
        color: var(--fg-on-page);
        padding: clamp(48px, 8vw, 140px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

    .index-hero {
        background:
                repeating-linear-gradient(
                        45deg,
                        var(--bg-primary) 0px,
                        var(--fg-on-primary) 20px,
                        var(--bg-page) 20px,
                        var(--fg-on-page) 40px,
                        var(--bg-accent) 40px,
                        var(--fg-on-accent) 60px,
                        var(--ring) 60px
                );
        background-size: 200% 200%;
        animation: stripesMove 10s linear infinite;
    }

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

    .index-hero .index-hero__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.05);
    }

    .index-hero .index-hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .index-hero .index-hero__c {
        position: relative;
        max-width: var(--max-w);
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.6);
        border-radius: var(--radius-lg);
        padding: var(--space-x);
    }

    .index-hero .index-hero__center {
        text-align: center;
        color: white;
    }

    .index-hero h1 {
        font-size: clamp(34px, 7vw, 84px);
        margin: .1em 0 .2em;
        color: inherit;
        background: inherit;
    }

    .index-hero p {
        max-width: 65ch;
        margin: 0 auto 1.2rem;
        color: inherit;
        background: inherit;
    }

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

.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: 600;
        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: clamp(1rem, 1.5vw, 1.125rem);
        line-height: var(--line-height-base);
    }

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

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

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

.support__header {
    text-align: center;
    margin-bottom: 24px;
}

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

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

.support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.support__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.support__card--priority {
    border-color: var(--danger);
}

.support__card--standard {
    border-color: var(--success);
}

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

.support__card p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.support__label {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

.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: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-line {
  display: block;
  height: 2px;
  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__nav {
  display: flex;
  align-items: center;
}

.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: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--surface-2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-x);
    gap: 0.5rem;
  }

  .header__nav-link {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding-bottom: 1.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;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a,
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-section a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        font-weight: bold;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

.our-story {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--surface-light);
        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(32px, 5vw, 56px);
        align-items: center;
    }

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

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

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

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

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

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

.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-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-bottom: 1px solid var(--border-on-surface);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.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: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-line {
  display: block;
  height: 2px;
  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__nav {
  display: flex;
  align-items: center;
}

.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: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--surface-2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-x);
    gap: 0.5rem;
  }

  .header__nav-link {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding-bottom: 1.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;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a,
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-section a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        font-weight: bold;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

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

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

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

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

    @media (max-width: 768px) {
        .partners .partners__item {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

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

    .index-features .index-features__h p {
        color: var(--neutral-600);
        margin: 0 0 1.2rem;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        max-width: 700px;
    }

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

    /* Pokud randomNumber je sudé (2) - první dítě dostane order: 2 */
    .index-features .index-features__grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

    .index-features .index-features__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: var(--bg-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
    }

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

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

    .index-features .index-features__card p {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        margin: 0;
    }

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

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

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

.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: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-line {
  display: block;
  height: 2px;
  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__nav {
  display: flex;
  align-items: center;
}

.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: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--surface-2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-x);
    gap: 0.5rem;
  }

  .header__nav-link {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding-bottom: 1.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;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a,
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-section a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        font-weight: bold;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

    .contact-map .header-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }

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

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

    .contact-map .map-section {
        margin-bottom: 2.5rem;
    }

    .contact-map .map-wrapper {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 3px solid var(--bg-accent);
    }

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

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

    .contact-map .contact-card {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2vw, 20px);
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: transform .2s;
        border: 1px solid var(--border-on-surface);
    }

    .contact-map .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .contact-card .icon {
        font-size: 2rem;
        margin-bottom: .75rem;
    }

    .contact-map .contact-card h4 {
        margin: 0 0 .5rem;
        font-size: .95rem;
        opacity: .9;
        color: var(--neutral-800);
    }

    .contact-map .contact-card p {
        margin: 0;
        font-size: .9rem;
        color: var(--neutral-600);
        line-height: 1.5;
    }

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

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

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

.form__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.form__title {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--neutral-900);
}

.form__text {
    margin: 0 0 var(--space-y);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
}

.contact-form {
    text-align: left;
    margin-bottom: var(--space-y);
}

.form-group {
    margin-bottom: var(--gap);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--neutral-800);
    font-size: 0.95rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    background-color: var(--input-bg);
    color: var(--input-fg);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: border-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--input-placeholder);
}

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

.form-textarea {
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    margin-top: 0.5rem;
}

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

.form-note {
    margin: var(--space-y) 0 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: var(--line-height-base);
}

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

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

.support__header {
    text-align: center;
    margin-bottom: 24px;
}

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

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

.support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.support__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.support__card--priority {
    border-color: var(--danger);
}

.support__card--standard {
    border-color: var(--success);
}

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

.support__card p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.support__label {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

.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: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-line {
  display: block;
  height: 2px;
  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__nav {
  display: flex;
  align-items: center;
}

.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: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--surface-2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-x);
    gap: 0.5rem;
  }

  .header__nav-link {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding-bottom: 1.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;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a,
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-section a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        font-weight: bold;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

.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: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-line {
  display: block;
  height: 2px;
  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__nav {
  display: flex;
  align-items: center;
}

.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: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--surface-2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-x);
    gap: 0.5rem;
  }

  .header__nav-link {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding-bottom: 1.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;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a,
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-section a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        font-weight: bold;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

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

    }

    .policy-contacts .policy-contacts__card {
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .policy-contacts .policy-contacts__list {
        list-style: none;
        padding: 0;
        display: grid;
        gap: .4rem;
        margin: 1rem 0;
        color: black
    }

    .policy-contacts .policy-contacts__list {
        position: relative;
    }

    .policy-contacts .policy-contacts__list::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--gradient-hero);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .policy-contacts .policy-contacts__list:hover::after {
        transform: scaleX(1);
    }

    .policy-contacts__grid {
        display: grid;
        gap: var(--gap);
    }

    @media (min-width: 768px) {
        .policy-contacts__grid {
            grid-template-columns: 1fr 1fr;
            align-items: start;
        }
    }

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

.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: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-line {
  display: block;
  height: 2px;
  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__nav {
  display: flex;
  align-items: center;
}

.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: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--surface-2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-x);
    gap: 0.5rem;
  }

  .header__nav-link {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding-bottom: 1.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;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a,
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-section a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        font-weight: bold;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .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);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.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: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.header__burger-line {
  display: block;
  height: 2px;
  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__nav {
  display: flex;
  align-items: center;
}

.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: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--surface-2);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-x);
    gap: 0.5rem;
  }

  .header__nav-link {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding-bottom: 1.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;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    .footer-nav a,
    .footer-section a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover,
    .footer-section a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    address p {
        margin: 0.3rem 0;
        font-style: normal;
        line-height: 1.5;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        font-weight: bold;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

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

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

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

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

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

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

    .error-404-light__code {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

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

    .error-404-light p {
        margin: 0 0 2rem;
        color: var(--fg-on-surface-light);
        opacity: 0.9;
    }

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

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

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

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

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

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

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

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

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