/* ЕТАП 0: Глобальні налаштування */
:root {
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Manrope', sans-serif;

    --color-bg: #F8FAFC;
    --color-text: #334155;
    --color-heading: #0F172A;
    --color-primary: #6366F1; /* Indigo */
    --color-primary-hover: #4F46E5;
    --color-white: #FFFFFF;
    --color-border: #E2E8F0;
    
    --container-width: 1200px;
    --header-height: 80px;
    --radius: 12px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* ЕТАП 1: ХЕДЕР */
.header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-heading);
    letter-spacing: -0.02em;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__list {
    display: flex;
    gap: 32px;
}

.header__link {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.header__link:hover {
    color: var(--color-primary);
}

.header__link:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-heading);
}

/* ЕТАП 2: ФУТЕР */
.footer {
    background-color: var(--color-heading); /* Темний фон */
    color: #94A3B8;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__link {
    font-size: 0.95rem;
}

.footer__link:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer__icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* Адаптив (Mobile First tweaks for desktop base) */
@media (max-width: 992px) {
    .header__btn {
        display: none; /* Ховаємо кнопку на планшетах для простоти, або переносимо в меню */
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header__burger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        padding: 20px;
    }

    .header__nav.active {
        left: 0;
    }

    .header__list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        font-size: 1.2rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 140px 0 80px; /* Відступ зверху враховує фіксований хедер */
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #F1F5F9; /* Трохи темніший за білий для контрасту */
    overflow: hidden;
}

/* Канвас на фоні */
.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Щоб не блокував кліки */
    opacity: 0.6;
}

.hero__container {
    position: relative;
    z-index: 2; /* Контент над канвасом */
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--color-heading);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__text {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__btn {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.hero__stat-desc {
    font-size: 0.85rem;
    color: #64748B;
}

.hero__visual {
    position: relative;
}

.hero__img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid rgba(255, 255, 255, 0.5);
    background-color: white; /* Підкладка під плейсхолдер */
}

/* Адаптив Hero */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }

    .hero__img {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .hero__btn {
        width: 100%;
        text-align: center;
    }
}

/* ЗАГАЛЬНІ СТИЛІ ДЛЯ СЕКЦІЙ (Reusable) */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-primary {
    color: var(--color-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: #64748B;
}

/* STRATEGIES SECTION */
.strategies {
    background-color: var(--color-white);
}

.strategies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.strategy-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%; /* Щоб всі картки були однакової висоти */
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Іконка в кружечку */
.strategy-card__icon-box {
    width: 60px;
    height: 60px;
    background-color: #EEF2FF; /* Світлий індиго */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    transition: var(--transition);
}

.strategy-card__icon-box svg {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

.strategy-card:hover .strategy-card__icon-box {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: rotate(5deg);
}

.strategy-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-heading);
    margin-bottom: 16px;
    font-weight: 700;
}

.strategy-card__text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

/* Адаптив */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .strategies__grid {
        grid-template-columns: 1fr; /* Одна колонка на мобільних */
        gap: 20px;
    }
    
    .strategy-card {
        padding: 30px 20px;
    }
}
/* INNOVATIONS SECTION */
.innovations {
    background-color: #F8FAFC; /* Трохи відрізняється від білого блоку стратегій */
    overflow: hidden;
}

.innovations__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Візуальна частина */
.innovations__visual {
    position: relative;
}

.innovations__img-wrapper {
    position: relative;
    z-index: 1;
}

.innovations__img {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Плаваюча картка "Швидкий старт" */
.innovations__card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
    z-index: 2;
    border: 1px solid var(--color-border);
}

.innovations__card-icon {
    color: var(--color-primary);
    width: 32px;
    height: 32px;
}

.innovations__card-title {
    display: block;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.innovations__card-desc {
    font-size: 0.85rem;
    color: #64748B;
}

/* Текстова частина */
.innovations__title {
    text-align: left; /* Перевизначаємо центрування */
    margin-bottom: 24px;
}

.innovations__text {
    margin-bottom: 32px;
}

.innovations__list {
    margin-bottom: 40px;
}

.innovations__item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.innovations__check {
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-white);
    margin-top: 2px; /* Вирівнювання по першому рядку тексту */
}

.innovations__check svg {
    width: 14px;
    height: 14px;
    stroke-width: 3px;
}

.innovations__item p {
    font-size: 1rem;
    color: #475569;
}

.innovations__item strong {
    color: var(--color-heading);
    font-weight: 600;
}

/* Адаптив */
@media (max-width: 992px) {
    .innovations__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .innovations__visual {
        order: 2; /* Картинка під текстом на мобільному, або прибери цю стрічку якщо хочеш картинку зверху */
        max-width: 600px;
        margin: 0 auto;
    }
    
    .innovations__card {
        right: 0;
        bottom: -20px;
    }
}

@media (max-width: 576px) {
    .innovations__card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
    }
}
/* ANALYTICS SECTION */
.analytics {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.analytics__wrapper {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

/* Фоновий декор */
.analytics__wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.analytics__content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.analytics__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #818CF8;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.analytics__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.analytics__text {
    color: #94A3B8; /* Світло-сірий для темного фону */
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.analytics__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.analytics__btn {
    background-color: var(--color-primary);
    border: 1px solid transparent;
}

.analytics__btn:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.analytics__info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748B;
}

.analytics__info svg {
    width: 14px;
    height: 14px;
}

/* Візуальна частина (Графік CSS) */
.analytics__visual {
    flex: 0 0 300px;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.analytics__graph {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 100%;
}

.analytics__bar {
    width: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px 6px 0 0;
    transition: height 1s ease;
    position: relative;
}

.analytics__bar.active {
    background-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* Адаптив */
@media (max-width: 992px) {
    .analytics__wrapper {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .analytics__actions {
        align-items: center;
    }
    
    .analytics__text {
        margin-left: auto;
        margin-right: auto;
    }

    .analytics__visual {
        width: 100%;
        height: 150px;
        flex: none;
    }
    
    .analytics__graph {
        margin: 0 auto;
    }
}
/* BLOG SECTION */
.blog {
    background-color: var(--color-white);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.blog-card__image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__date {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-heading);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card__date svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

.blog-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__tags {
    margin-bottom: 12px;
}

.blog-card__tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    background-color: #EEF2FF;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--color-heading);
    margin-bottom: 12px;
    font-weight: 700;
    /* Обрізка заголовка до 2 рядків */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__excerpt {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1; /* Притискає кнопку до низу */
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.blog-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-card__link:hover {
    color: var(--color-primary-hover);
    gap: 10px;
}

/* Адаптив */
@media (max-width: 768px) {
    .blog__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* CONTACT SECTION */
.contact {
    background-color: #F8FAFC;
    padding-bottom: 120px;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 20px;
}

.contact__desc {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 40px;
    max-width: 450px;
}

.contact__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-heading);
}

.contact__feature svg {
    color: var(--color-primary);
}

/* Стилі форми */
.contact__form-box {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
}

.form__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--color-heading);
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.form__input-wrapper {
    position: relative;
}

.form__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #94A3B8;
    transition: color 0.3s;
}

.form__input {
    width: 100%;
    padding: 14px 16px 14px 48px; /* Відступ зліва під іконку */
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form__input:focus + .form__icon,
.form__input-wrapper:focus-within .form__icon {
    color: var(--color-primary);
}

/* Капча */
.captcha-group input {
    padding-left: 16px; /* Звичайний відступ, бо без іконки */
}

/* Чекбокс */
.form__checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.form__checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.form__checkbox-label {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.4;
    cursor: pointer;
}

.form__checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Кнопка та лоадер */
.form__btn {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
}

.btn-loader {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    position: absolute;
}

.form__btn.loading .btn-text {
    opacity: 0;
}

.form__btn.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Повідомлення */
.form__message {
    margin-top: 20px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
    padding: 12px;
    border-radius: 8px;
}

.form__message.success {
    display: block;
    background-color: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.form__message.error {
    display: block;
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Адаптив */
@media (max-width: 992px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact__info {
        text-align: center;
        margin: 0 auto;
    }
    
    .contact__features {
        align-items: center;
    }
}

/* COOKIE POPUP */
.cookie-popup {
    position: fixed;
    bottom: -100px; /* Сховано за межами екрану */
    left: 0;
    width: 100%;
    background-color: var(--color-heading); /* Темний фон */
    color: var(--color-white);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.cookie-popup.active {
    bottom: 0;
}

.cookie-popup__content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.cookie-popup__text {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-popup__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-popup__btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .cookie-popup__content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-popup__btn {
        width: 100%;
    }
}

/* STYLES FOR POLICY PAGES */
.pages {
    padding: 140px 0 80px; /* Відступ від хедера */
    min-height: 80vh;
}

.pages h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.pages h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-heading);
    margin-top: 40px;
    margin-bottom: 16px;
}

.pages p {
    margin-bottom: 16px;
    color: #475569;
    font-size: 1rem;
}

.pages ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
    color: #475569;
}

.pages li {
    margin-bottom: 8px;
}

.pages a {
    color: var(--color-primary);
    text-decoration: underline;
}

.pages strong {
    color: var(--color-heading);
}