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

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

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

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

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

  --brand: #0066FF;
  --brand-contrast: #FFFFFF;
  --accent: #00D4AA;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8FAFC;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --bg-page: #FFFFFF;
  --fg-on-page: #0F172A;

  --bg-alt: #F8FAFC;
  --fg-on-alt: #1E293B;

  --surface-1: #FFFFFF;
  --surface-2: #F8FAFC;
  --fg-on-surface: #1E293B;
  --border-on-surface: #E2E8F0;

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

  --bg-primary: #0066FF;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0052CC;
  --ring: rgba(0, 102, 255, 0.4);

  --bg-accent: rgba(0, 212, 170, 0.1);
  --fg-on-accent: #005A4A;
  --bg-accent-hover: #00B894;

  --success: #10B981;
  --success-contrast: #FFFFFF;
  --warning: #F59E0B;
  --warning-contrast: #FFFFFF;
  --danger: #EF4444;
  --danger-contrast: #FFFFFF;

  --link: #0066FF;
  --link-hover: #0052CC;

  --gradient-hero: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  --gradient-accent: linear-gradient(90deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 170, 0.1) 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);
}
.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
    color: var(--accent);
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .social-links a,
    .legal-links a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .social-links {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 6vw, 96px) clamp(16px, 4vw, 40px);
        background-image: url('https://images.pexels.com/photos/669615/pexels-photo-669615.jpeg?auto=compress&cs=tinysrgb&w=1600');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .index-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.85) 0%, rgba(0, 212, 170, 0.85) 100%);
        z-index: 1;
    }

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

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

    .index-hero h1 {
        font-size: clamp(30px, 6.5vw, 72px);
        margin: .1em 0 .3em;
        color: var(--neutral-0);
        background: inherit;
        line-height: 1.1;
    }

    .index-hero p {
        max-width: 60ch;
        margin: 0 auto 1.25rem;
        color: var(--neutral-100);
        background: inherit;
        font-size: 1.125rem;
    }

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

    .index-hero input {
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--neutral-0);
        min-width: 260px;
        outline: none;
        background: rgba(255, 255, 255, 0.95);
        color: var(--neutral-900);
        font-size: 1rem;
    }

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

    .index-hero button {
        padding: .95rem 1.3rem;
        border-radius: var(--radius-md);
        background: var(--neutral-0);
        color: var(--brand);
        border: 0;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        font-weight: 600;
        font-size: 1rem;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .index-hero button:hover {
        transform: translateY(-2px);
        background: var(--neutral-100);
        box-shadow: var(--shadow-lg);
    }

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

        .index-hero input {
            min-width: auto;
            width: 100%;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .index-faq .index-faq__row {
        border-bottom: 1px solid var(--ring);
        padding: .8rem 0;
    }

    .index-faq .index-faq__q {
        font-size: 22px;
        cursor: pointer;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 0;
        width: 100%;
        text-align: left;
        padding: .8rem 1rem;
        border-radius: var(--radius-md);
    }

    .index-faq .index-faq__a {
        display: none;
        padding: .6rem 1rem;
        color: var(--neutral-600);
    }

.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);
}
.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
    color: var(--accent);
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .social-links a,
    .legal-links a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .social-links {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

    .about-team img {
        height: 120px;
        width: 120px;
        object-fit: cover;
        border-radius: 50%;
        margin: 0 auto 16px;
        display: block;
        border: 3px solid var(--surface-2);
    }

    .about-team__h h2 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        color: var(--neutral-900);
        margin-bottom: var(--space-y);
        text-align: center;
    }

    .about-team__h p {
        font-size: var(--font-size-base);
        color: var(--neutral-600);
        max-width: 600px;
        margin: 0 auto var(--space-y);
        text-align: center;
        line-height: var(--line-height-base);
    }

    .about-team__card h3 {
        color: var(--neutral-900);
        margin-bottom: 8px;
        font-size: 1.25rem;
    }

    .about-team__role {
        color: var(--brand);
        font-weight: 600;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .about-team__card p:last-of-type {
        color: var(--neutral-600);
        font-size: 0.95rem;
        line-height: var(--line-height-base);
    }

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

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

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

.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);
}
.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
    color: var(--accent);
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .social-links a,
    .legal-links a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .social-links {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

    .index-features p {
        margin: 0;
    }

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

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

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

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

    .services-process .services-process__bar {
        height: 8px;
        background: #fff;
        border-radius: 999px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }

    .services-process .services-process__bar span {
        display: block;
        height: 100%;
        background: var(--bg-primary);
    }

    .services-process p {
        margin: .3rem 0 0;
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .services-process .services-process__list {
            grid-template-columns: repeat(1, minmax(0, 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);
}
.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
    color: var(--accent);
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .social-links a,
    .legal-links a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .social-links {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

@keyframes pulseIn {
        from {
            transform: scale(.98);
            opacity: .6
        }
        to {
            transform: scale(1);
            opacity: 1
        }
    }

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

    .contact-form .c {
        max-width: 720px;
        margin: 0 auto;
    }

    .contact-form .glass {
        display: grid;
        gap: 12px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
    }

    .contact-form label {
        display: grid;
        gap: 6px;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-form input, .contact-form textarea {
        padding: .8rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .9);
        color: #000;
        box-sizing: border-box;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .contact-form .submit {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: #fff;
        color: var(--bg-page);
        border: 0;
        animation: pulseIn .35s ease;
    }

.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);
}
.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
    color: var(--accent);
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .social-links a,
    .legal-links a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .social-links {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

    .policy-items__items {
        display: grid;
        gap: 1.5rem;
    }

    .policy-items__item {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .policy-items__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .policy-items__marker {
        width: 8px;
        height: 8px;
        background: var(--fg-on-accent);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .policy-items__header h3 {
        margin: 0;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .policy-items__body p {
        margin: 0;
        font-size: 1rem;
        color: var(--fg-on-accent);
        opacity: .95;
        line-height: 1.7;
    }

    @media (max-width: 767px) {
        .policy-items__item {
            padding: 1.5rem;
        }
    }

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

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

    .contact-support .grid {
        display: grid;
        gap: var(--space-x);
    }

    .contact-support .card {
        display: block;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        text-decoration: none;
        color: inherit;
        box-shadow: var(--shadow-sm);
        transition: transform .2s;
    }

    .contact-support .card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    @media (max-width: 767px) {
        .contact-support .grid {
            grid-template-columns: repeat(1, minmax(0, 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);
}
.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
    color: var(--accent);
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .social-links a,
    .legal-links a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .social-links {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

    .terms-items__items {
        display: grid;
        gap: 1.5rem;
    }

    .terms-items__item {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .terms-items__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .terms-items__marker {
        width: 8px;
        height: 8px;
        background: var(--fg-on-accent);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .terms-items__header h3 {
        margin: 0;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .terms-items__body p {
        margin: 0;
        font-size: 1rem;
        color: var(--fg-on-accent);
        opacity: .95;
        line-height: 1.7;
    }

    @media (max-width: 767px) {
        .terms-items__item {
            padding: 1.5rem;
        }
    }

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

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

    .index-faq .index-faq__row {
        border-bottom: 1px solid var(--ring);
        padding: .8rem 0;
    }

    .index-faq .index-faq__q {
        font-size: 22px;
        cursor: pointer;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 0;
        width: 100%;
        text-align: left;
        padding: .8rem 1rem;
        border-radius: var(--radius-md);
    }

    .index-faq .index-faq__a {
        display: none;
        padding: .6rem 1rem;
        color: var(--neutral-600);
    }

.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);
}
.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
    color: var(--accent);
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .social-links a,
    .legal-links a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .social-links {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

    .thanks__chip {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 999px;
        background: var(--chip-bg);
        color: var(--chip-fg);
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .thanks__content h1 {
        font-size: clamp(26px, 4.5vw, 40px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
    }

    .thanks__content p {
        margin: 0 0 1.75rem;
        opacity: 0.9;
    }

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

    .thanks__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__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: var(--shadow-md);
    }

    .thanks__btn--primary:hover {
        transform: translateY(-2px);
    }

    .thanks__btn--ghost {
        background: transparent;
        color: var(--fg-on-primary);
        border: 1px solid rgba(0,0,0,0.12);
    }

    .thanks__btn--ghost:hover {
        background: rgba(0,0,0,0.04);
        transform: translateY(-2px);
    }

    .thanks__side {
        display: flex;
        justify-content: center;
    }

    .thanks__card {
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        padding: 1.4rem 1.6rem;
        box-shadow: var(--shadow-lg);
        min-width: 240px;
    }

    .thanks__label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        margin-bottom: 0.75rem;
        opacity: 0.7;
    }

    .thanks__row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .thanks__row--muted {
        opacity: 0.8;
        font-size: 0.9rem;
    }

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

        .thanks__actions {
            flex-direction: column;
        }

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

        .thanks__side {
            order: -1;
        }
    }

.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);
}
.header-logo .logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
    color: var(--accent);
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    .footer-section h3 {
        color: #f1c40f;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #f1c40f;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-top: 1rem;
    }
    .footer-nav {
        list-style: none;
        padding: 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .social-links a,
    .legal-links a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover,
    .footer-contact a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }
    .footer-contact p {
        margin-bottom: 0.5rem;
    }
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #bdc3c7;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .legal-links a {
        margin: 0 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .social-links {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

    .cookie-banner__text {
        flex: 1;
    }

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

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

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .error-404__badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 999px;
        background: var(--chip-bg);
        color: var(--chip-fg);
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .error-404 h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.5rem;
    }

    .error-404__subtitle {
        margin: 0 0 2rem;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        color: var(--neutral-100);
    }

    .error-404__code {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        letter-spacing: 0.1em;
        margin-bottom: 2.5rem;
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .error-404__actions {
            flex-direction: column;
        }

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