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

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

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

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);

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

  --brand: #8B4513;
  --brand-contrast: #FFFFFF;
  --accent: #D2691E;
  --accent-contrast: #FFFFFF;

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

  --bg-page: #FFFFFF;
  --fg-on-page: #343A40;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #495057;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #343A40;
  --border-on-surface: #DEE2E6;

  --surface-light: #FFF8DC;
  --fg-on-surface-light: #8B4513;
  --border-on-surface-light: #F4E4BC;

  --bg-primary: #8B4513;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #A0522D;
  --ring: #D2691E;

  --bg-accent: #FFF8DC;
  --fg-on-accent: #8B4513;
  --bg-accent-hover: #CD853F;

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

  --link: #8B4513;
  --link-hover: #A0522D;

  --gradient-hero: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  --gradient-accent: linear-gradient(135deg, #FFF8DC 0%, #F4E4BC 100%);

  --btn-primary-bg: var(--bg-primary);
  --btn-primary-fg: var(--fg-on-primary);
  --btn-primary-bg-hover: var(--bg-primary-hover);

  --btn-ghost-bg: transparent;
  --btn-ghost-fg: var(--fg-on-page);
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);

  --card-bg-dark: var(--surface-1);
  --card-fg-dark: var(--fg-on-surface);
  --card-border-dark: var(--border-on-surface);

  --card-bg-light: var(--surface-light);
  --card-fg-light: var(--fg-on-surface-light);
  --card-border-light: var(--border-on-surface-light);

  --chip-bg: rgba(255,255,255,0.08);
  --chip-fg: var(--fg-on-page);

  --input-bg: var(--surface-2);
  --input-fg: var(--fg-on-surface);
  --input-border: var(--border-on-surface);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);}

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

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--fg-on-surface);
    text-decoration: none;
}

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

.header__nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
    }

    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

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

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

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

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

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: #333;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

.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-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/3184398/pexels-photo-3184398.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .index-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--overlay);
    }

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

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

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

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

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

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

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

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

.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 .columns {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

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

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

.index-faq {
        font-family: var(--font-family);
        background: var(--bg-page);
        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__list {
        display: grid;
        gap: var(--space-x);
    }

    .index-faq .index-faq__list .li {
        list-style: none;
        display: grid;
        grid-template-columns: auto;
        gap: 14px;
        align-items: start;
        border-bottom: 1px dashed var(--ring);
        padding-bottom: .8rem;
    }

    .index-faq h4 {
        margin: 0
    }

    .index-faq .index-faq__badge {
        font-family: monospace;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--bg-page);
        font-weight: 700;
    }

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

    @media (max-width: 767px) {
        .index-faq .index-faq__list .li {
            grid-template-columns: 1fr;
        }
    }

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

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--fg-on-surface);
    text-decoration: none;
}

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

.header__nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
    }

    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

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

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

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

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

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: #333;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

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

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

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

    .about-timeline .about-timeline__zig {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__zig .item {
        list-style: none;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-on-surface);
    }

    .about-timeline .about-timeline__zig .item h4 {
        color: var(--brand);
        margin-bottom: var(--gap);
        font-size: 1.2rem;
    }

    .about-timeline .about-timeline__zig .item time {
        display: inline-block;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: 4px 12px;
        border-radius: var(--radius-sm);
        margin-bottom: var(--gap);
        font-size: 0.9rem;
    }

    .about-timeline .about-timeline__zig .item p {
        line-height: var(--line-height-base);
        color: var(--neutral-600);
    }

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

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

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--fg-on-surface);
    text-decoration: none;
}

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

.header__nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
    }

    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

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

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

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

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

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: #333;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

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

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

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

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

    .services-pricing__h h2, .services-pricing__h p {
        color: black
    }

    .services-pricing .services-pricing__plan {
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 28px);
        box-shadow: var(--shadow-sm);
        transform: scale(1);
        transition: transform .25s;
    }

    .services-pricing .services-pricing__plan.services-pricing__featured {
        transform: scale(1.04);
        box-shadow: var(--shadow-lg);
    }

    .services-pricing .services-pricing__price {
        font-size: clamp(22px, 4.5vw, 40px);
        font-weight: 700;
        margin: .2rem 0 .6rem;
    }

    .services-pricing .services-pricing__price span {
        font-size: .55em;
        color: var(--neutral-600);
    }

    .services-pricing .services-pricing__feat {
        margin: 0 0 .8rem;
        padding: 0;
        list-style: none;
        display: grid;
        gap: .35rem;
    }

    .services-pricing .services-pricing__btn {
        display: inline-block;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        padding: .8rem 1.1rem;
        border-radius: var(--radius-lg);
    }

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

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

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

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--fg-on-surface);
    text-decoration: none;
}

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

.header__nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
    }

    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

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

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

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

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

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: #333;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

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

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

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

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

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

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

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

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

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

    .connect .connect__item span {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--fg-on-surface);
    text-decoration: none;
}

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

.header__nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
    }

    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

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

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

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

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

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: #333;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

.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: 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 h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: var(--fg-on-page);
        text-align: center;
    }

    .policy-items__wrapper {
        display: grid;
        gap: 1.25rem;
    }

    .policy-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        align-items: start;
    }

    .policy-items__icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

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

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

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

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

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--fg-on-surface);
    text-decoration: none;
}

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

.header__nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
    }

    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

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

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

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

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

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: #333;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

.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 h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

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

    .terms-items__card h3 {
        margin: 0 0 1rem;
        font-size: clamp(18px, 2.5vw, 22px);
    }

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

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

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

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

    }

    .policy-contacts .policy-contacts__banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
    }

    .policy-contacts .policy-contacts__btn {
        background: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .policy-contacts .policy-contacts__txt {
        margin: .8rem 0 0;
        opacity: .9;
    }