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

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

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

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

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

  --brand: #2E7D32;
  --brand-contrast: #FFFFFF;
  --accent: #FF9800;
  --accent-contrast: #212121;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #FFFFFF;
  --fg-on-page: #212121;

  --bg-alt: #F9F9F9;
  --fg-on-alt: #424242;

  --surface-1: #FFFFFF;
  --surface-2: #F5F5F5;
  --fg-on-surface: #212121;
  --border-on-surface: #E0E0E0;

  --surface-light: rgba(46, 125, 50, 0.05);
  --fg-on-surface-light: #2E7D32;
  --border-on-surface-light: rgba(46, 125, 50, 0.2);

  --bg-primary: #2E7D32;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #388E3C;
  --ring: rgba(46, 125, 50, 0.5);

  --bg-accent: #FFF3E0;
  --fg-on-accent: #E65100;
  --bg-accent-hover: #FFB74D;

  --success: #4CAF50;
  --success-contrast: #FFFFFF;
  --warning: #FF9800;
  --warning-contrast: #212121;
  --danger: #F44336;
  --danger-contrast: #FFFFFF;

  --link: #1B5E20;
  --link-hover: #2E7D32;

  --gradient-hero: linear-gradient(135deg, #2E7D32 0%, #66BB6A 100%);
  --gradient-accent: linear-gradient(90deg, #FF9800 0%, #FFB74D 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);}

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

.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);
    white-space: nowrap;
}

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

.burger-menu {
    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;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

.site-footer {
  background-color: #2d5016;
  color: #f0f0f0;
  padding: 2.5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  color: #c1ff72;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.footer-section h4 {
  color: #a3d95a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.legal-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.legal-links a:hover,
.footer-contact a:hover {
  color: #c1ff72;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 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: #3f6a1f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: #a3d95a;
  color: #2d5016;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3f6a1f;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
@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: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

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

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

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

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

.hero--light-v6 {
    font-family: var(--font-family);
    padding: 80px 20px;
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
}

    .hero--light-v6 {
        background: linear-gradient(45deg, var(--fg-on-page) 0%, var(--fg-on-primary) 50%, var(--accent) 100%);
        background-size: 400% 400%;
        animation: gradientWave 6s ease infinite;
    }

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

.hero__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    margin: 0 0 8px;
    font-size: clamp(28px, 5vw, 40px);
}

.hero__subtitle {
    margin: 0;
    color: var(--neutral-600);
}

.index-cta {
        font-family: var(--font-family);
        color: white;
        padding: clamp(28px, 5vw, 72px) clamp(16px, 3vw, 40px);
        background: linear-gradient(120deg, var(--bg-primary), var(--bg-accent), var(--ring));
        background-size: 300% 300%;
        animation: gradientFlow 8s ease-in-out infinite;
    }
    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

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

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

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

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

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

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

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

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

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

    @media (max-width: 767px) {
        .index-cta .index-cta__actions {
            flex-direction: column;
        }

        .index-cta .index-cta__btn {
            width: 100%;
            text-align: center;
        }
    }

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

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

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

    .contact-support .qa .question {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        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);
    }

    .contact-support .qa .question:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

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

.subscribe {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
    }

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

    .subscribe .subscribe__wrapper {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: clamp(40px, 6vw, 64px);
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
    }

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

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

    .subscribe .subscribe__content {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .subscribe .subscribe__badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: fit-content;
        margin-bottom: 0.5rem;
    }

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

    .subscribe .subscribe__content p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
        line-height: 1.6;
    }

    .subscribe .subscribe__form {
        margin: clamp(8px, 1.5vw, 16px) 0;
    }

    .subscribe .subscribe__input-wrapper {
        display: flex;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        padding: 0.5rem;
        backdrop-filter: blur(8px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .subscribe .subscribe__input-wrapper:focus-within {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.25);
    }

    .subscribe .subscribe__input-wrapper input {
        flex: 1;
        padding: 0.875rem 1.25rem;
        border: none;
        background: transparent;
        color: var(--fg-on-primary);
        font-size: 1rem;
        outline: none;
        min-width: 0;
    }

    .subscribe .subscribe__input-wrapper input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .subscribe .subscribe__input-wrapper button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .subscribe .subscribe__input-wrapper button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .subscribe .subscribe__features {
        display: flex;
        gap: clamp(16px, 2.5vw, 24px);
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

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

    .subscribe .subscribe__feature {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .subscribe .subscribe__illustration {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
    }

    .subscribe .subscribe__icon {
        font-size: clamp(80px, 12vw, 120px);
        opacity: 0.3;
        line-height: 1;
    }

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

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

    @media (max-width: 767px) {
        .subscribe .subscribe__input-wrapper {
            flex-direction: column;
        }

        .subscribe .subscribe__input-wrapper button {
            width: 100%;
        }
    }

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

.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);
    white-space: nowrap;
}

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

.burger-menu {
    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;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

.site-footer {
  background-color: #2d5016;
  color: #f0f0f0;
  padding: 2.5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  color: #c1ff72;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.footer-section h4 {
  color: #a3d95a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.legal-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.legal-links a:hover,
.footer-contact a:hover {
  color: #c1ff72;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 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: #3f6a1f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: #a3d95a;
  color: #2d5016;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3f6a1f;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
@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: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

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

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

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

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

    .about-mission .about-mission__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

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

    .about-mission p {
        color: rgba(255, 255, 255, .9);
    }

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

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

.timeline__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

.timeline__list--light {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.timeline__row:first-child {
    border-top: none;
}

.timeline__row-time {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

.timeline__row-label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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);
    white-space: nowrap;
}

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

.burger-menu {
    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;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

.site-footer {
  background-color: #2d5016;
  color: #f0f0f0;
  padding: 2.5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  color: #c1ff72;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.footer-section h4 {
  color: #a3d95a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.legal-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.legal-links a:hover,
.footer-contact a:hover {
  color: #c1ff72;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 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: #3f6a1f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: #a3d95a;
  color: #2d5016;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3f6a1f;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
@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: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

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

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

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

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

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

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

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

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

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

.pricing--colored-v5 {
    font-family: var(--font-family);
    padding: 64px 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

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

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

.pricing__header p {
    margin: 0;
    opacity: 0.9;
}

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

.pricing__card {
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    background: rgba(15,23,42,0.92);
    border: 1px solid rgba(191,219,254,0.7);
}

.pricing__card--pro {
    border-color: var(--success);
}
.pricing__card--enterprise {
    border-color: var(--warning);
}

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

.pricing__price {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing__desc {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.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);
    white-space: nowrap;
}

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

.burger-menu {
    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;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

.site-footer {
  background-color: #2d5016;
  color: #f0f0f0;
  padding: 2.5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  color: #c1ff72;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.footer-section h4 {
  color: #a3d95a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.legal-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.legal-links a:hover,
.footer-contact a:hover {
  color: #c1ff72;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 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: #3f6a1f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: #a3d95a;
  color: #2d5016;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3f6a1f;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
@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: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

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

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

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

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

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

.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-sizing: border-box;
}

.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;
    min-height: 120px;
}

.form-button {
    display: inline-block;
    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: var(--gap);
}

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

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

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

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

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

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

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

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

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

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

    .connect .connect__

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

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

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

    .contact-support .qa .question {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        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);
    }

    .contact-support .qa .question:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

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

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

.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);
    white-space: nowrap;
}

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

.burger-menu {
    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;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

.site-footer {
  background-color: #2d5016;
  color: #f0f0f0;
  padding: 2.5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  color: #c1ff72;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.footer-section h4 {
  color: #a3d95a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.legal-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.legal-links a:hover,
.footer-contact a:hover {
  color: #c1ff72;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 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: #3f6a1f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: #a3d95a;
  color: #2d5016;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3f6a1f;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
@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: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

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

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

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

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

    .contact-support .qa .question {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        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);
    }

    .contact-support .qa .question:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

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

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

.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);
    white-space: nowrap;
}

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

.burger-menu {
    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;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

.site-footer {
  background-color: #2d5016;
  color: #f0f0f0;
  padding: 2.5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  color: #c1ff72;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.footer-section h4 {
  color: #a3d95a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.legal-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.legal-links a:hover,
.footer-contact a:hover {
  color: #c1ff72;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 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: #3f6a1f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: #a3d95a;
  color: #2d5016;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3f6a1f;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
@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: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

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

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

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

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

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

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

    .terms-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

    .terms-items__item:hover {
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

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

.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);
    white-space: nowrap;
}

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

.burger-menu {
    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;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

.site-footer {
  background-color: #2d5016;
  color: #f0f0f0;
  padding: 2.5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  color: #c1ff72;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.footer-section h4 {
  color: #a3d95a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.legal-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.legal-links a:hover,
.footer-contact a:hover {
  color: #c1ff72;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 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: #3f6a1f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: #a3d95a;
  color: #2d5016;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3f6a1f;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
@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: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

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

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

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

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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);
    white-space: nowrap;
}

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

.burger-menu {
    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;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

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

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

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

.site-footer {
  background-color: #2d5016;
  color: #f0f0f0;
  padding: 2.5rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  color: #c1ff72;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.footer-section h4 {
  color: #a3d95a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.legal-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.legal-links a:hover,
.footer-contact a:hover {
  color: #c1ff72;
  text-decoration: underline;
}
.footer-contact p {
  margin: 0.4rem 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: #3f6a1f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: #a3d95a;
  color: #2d5016;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3f6a1f;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
@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: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

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

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

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

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

    .error-404-light__bubble {
        width: 210px;
        height: 210px;
        border-radius: 50%;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .error-404-light__code {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0.16em;
    }

    .error-404-light__text {
        margin-top: 0.4rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.7;
    }

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

    .error-404-light__content p {
        margin: 0 0 1.75rem;
        color: var(--fg-on-alt);
        opacity: 0.9;
    }

    .error-404-light__actions {
        display: flex;
        flex-wrap: wrap;
        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(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }

    .error-404-light__btn--primary:hover {
        background: var(--bg-primary-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__layout {
            grid-template-columns: minmax(0, 1fr);
        }

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

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

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