:root {

    --text-color: #1f1f23;
    --muted: #6b6b75;
    --radius: 12px;
    --glass: rgba(255,255,255,0.6);
    --shadow: 0 8px 30px rgba(16,24,40,0.08);
    --hero-height-mobile: 420px;
    --hero-height-desktop: 520px;
}

.app-home-welcome {
    background-color: #fcfcfc;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
@media (min-width: 991px) {
    .app-home-welcome {
        position: relative;
        padding: 3.25rem 0 4.25rem;
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
}


/* Секція */
.app-home-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--home-section-bg, #fff);
}
.app-home-section-white {
    --home-section-bg: var(--surface-1);
}
.app-home-section-white .app-home-section-title span {
    --app-home-span-color: #a9a9a9;
}
.app-home-section-gray {
    --home-section-bg: #f5f5f7
}
.app-home-section-gray .app-home-section-title span {
    --app-home-span-color: #b7b7bf;
}
.app-home-section-primary-light {
    --home-section-bg: linear-gradient(135deg, #f0edff 0%, #f8f6ff 100%);
}
.app-home-section-primary-light .app-home-section-title span {
    --app-home-span-color: #a39ac1;
}



.app-home-section-header {
    text-align: center;
    margin-bottom: 4.375rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-home-section-title {
    color: var(--text-dark);
    font-size: 56px;
    line-height: 1.0714285714;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.app-home-section-title span {
    color: var(--app-home-span-color);
    font-weight: 700;
}

.app-home-section-subtitle {
    --subtitle-color: var(--text-muted-500);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--subtitle-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.app-home-section-footer {
    margin-top: 4.375rem;
}




/* Визуально скрытый label */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/**/

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* Если нужен адаптив с авторазмером под контент */
.grid-container-auto {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, auto));
    gap: 16px;
}

/* Пример для карточек */
.item {
    background-color: #f3f3f3;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}


/**/

.home-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-g-1 {
    gap: 1rem;
}
.section-g-125 {
    gap: 1.25rem;
}
.section-g-15 {
    gap: 1.5rem;
}
.section-gap-2-0 {
    gap: 2rem;
}
.section-gap-2-5 {
    gap: 2.5rem;
}

.section-py-2-5 {
    padding: 2.5rem 0;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-weight: 500;
}
.title-bolder {
    font-weight: 600;
}
.fs-1-0 {
    font-size: var(--text--10);
    line-height: var(--text--10--line-height);
    letter-spacing: -0.01em;
}
.fs-1-125 {
    font-size: 1.125rem;
    line-height: 1.125rem;
}
.fs-1-2 {
    font-size: 1.2rem;
    line-height: 1.2rem;
}
.fs-1-25 {
    font-size: var(--text--1125);
    line-height: var(--text--1125--line-height);
    letter-spacing: -0.01em;
}
.fs-1-5 {
    font-size: var(--text--15);
    line-height: var(--text--15--line-height);
}
.fs-1-75 {
    font-size: 1.75rem;
    line-height: 1.75rem;
}

@media (max-width: 991px) {

    .section__title {
        font-size: var(--text--125);
        letter-spacing: -0.25px;
    }

}


/* Убираем дефолтные стили стрелок Swiper */
.section-swiper .swiper-button-prev::after,
.section-swiper .swiper-button-next::after {
    display: none;
    content: none;
}

@media (max-width: 991px) {

    .section-swiper .swiper-nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 1.5rem;
    }

    .section-swiper .swiper-button-prev,
    .section-swiper .swiper-button-next {
        position: relative;
        width: 2.5rem;
        height: unset;
        background-color: transparent;
        border-radius: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color var(--transition);
        flex: 1;
        left: unset;
        right: unset;
        top: unset;
        margin-top: unset;
    }

    .section-swiper .swiper-button-prev i,
    .section-swiper .swiper-button-next i {
        font-size: 1.75rem;
        color: var(--text-secondary);
    }

    .section-swiper .swiper-button-prev:hover,
    .section-swiper .swiper-button-next:hover {
        background-color: unset;
    }

}
@media (min-width: 992px) {

    .swiper-nav-buttons {
        display: flex;
        gap: 10px;
    }

    .section-swiper .swiper-button-prev,
    .section-swiper .swiper-button-next {
        position: static;
        width: 40px;
        height: 40px;
        background-color: transparent;
        border-radius: 50%;
        border: 1px solid var(--border-light);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color var(--transition);
        flex: 1;
        left: unset;
        right: unset;
        top: unset;
        margin-top: unset;
    }

    .section-swiper .swiper-button-prev i,
    .section-swiper .swiper-button-next i {
        font-size: 20px;
        color: var(--text-secondary);
    }

}
@media (hover: hover) and (pointer: fine) {
    .section-swiper .swiper-button-prev:hover,
    .section-swiper .swiper-button-next:hover {
        background-color: var(--bg--gray-primary);
    }
}

.section-swiper .swiper-nav-buttons svg {
    color: var(--text-primary);
    width: unset;
    height: unset;
    object-fit: unset;
    transform-origin: unset;
}


.main-section .btn {
    max-width: 20rem;
}

.main__section-header-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main__section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main__section-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.25px;
    line-height: 34px;
    flex: 1;
}

.main__section-header-all-link {
    font-size: var(--text--0875);
    line-height: var(--text--0875--line-height);
}

.main__section-header-all-link a {

    color: var(--text-muted-700)
}

@media (max-width: 991px) {

    .main-section {
        padding: 3rem 0 3rem;
    }

    .main-section-wrap {
        gap: 2rem;
    }

    .main__section-header {
        display: flex;
    }

    .main__section-title {
        font-size: 1.75rem;
        margin: 0;
    }

}


/**/

:root {
    --accent: #ff7a2f;
    --text-dark: #111;
    --border-color: #eaeaea;
    --bg-placeholder: #f2f2f2;
}


/* =========================
   ABOUT BLOCK
========================= */

.about {
    padding: 4rem 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.about__link {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    text-decoration: none;
    color: inherit;
    font-size: 0.875rem;
}

.about__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.25;
    font-weight: 600;
}

.about__title span {
    color: var(--text-muted-700);
}

/* Заглушка изображения */
.about__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #ddd, #eee);
    border-radius: 2rem;
}
.about__image img {
    border-radius: 2rem;
}

/* =========================
   FEATURES BLOCK
========================= */

.features {
    padding-bottom: 4rem;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
}

.feature__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 0.5rem;
}

.feature__title {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.feature__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted-700);
    line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }
}


.products {
    padding: 4rem 0;
}

/* =========================
   HEADER
========================= */

.products__header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.products__title {
    font-size: 2rem;
    margin: 0 0 0.5rem;
}

.products__description {
    max-width: 480px;
    margin: 0;
    color: var(--text-muted-700);
    line-height: 1.5;
}

.products__sort select {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

/* =========================
   FILTERS
========================= */

.products__filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 0.875rem;
    cursor: pointer;
}

.filter.is-active {
    background: #a78bfa;
    color: #fff;
    border-color: transparent;
}



/* =========================
   FOOTER
========================= */

.products__footer {
    margin-top: 3rem;
    text-align: center;
}

.products__cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
}

/* =========================
   ACCESSIBILITY
========================= */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products__header {
        flex-direction: column;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
}

/***/

.blog-section {
    padding: 6rem 0;
    margin: 0 auto;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.blog-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.blog-header h2 span {
    color: #9a9a9a;
    font-weight: 400;
}

.blog-all {
    background: #000;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.blog-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card__content {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--text-muted-700);
    margin-bottom: 0.25rem;
}

.blog-card h3 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-header {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        height: 360px;
    }
}


/**/

/* ============================================ */
/* СЕКЦІЯ: ЯК ЦЕ ПРАЦЮЄ */
/* ============================================ */

:root {
    --primary-light: #8b6fff;
    --primary-extra-light: #f0edff;
    --text-dark: #2E2A3A;
    --text-light: #666;
    --white: #ffffff;
    --gray-bg: #f8f8f8;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(107, 78, 255, 0.08);
    --shadow-md: 0 8px 24px rgba(107, 78, 255, 0.12);
    --transition: all var(--transition);
}


/* Секція */
.how-it-works {
    background: var(--white);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Додатковий фоновий елемент для глибини */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(
            ellipse at center,
            rgba(107, 78, 255, 0.03) 0%,
            transparent 70%
    );
    pointer-events: none;
}

/* ============================================ */
/* HEADER */
/* ============================================ */





/* ============================================ */
/* FOOTER */
/* ============================================ */

.how-it-works-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: var(--gray-bg);
    border-radius: 12px;
}

.footer-text {
    font-size: 1.25rem;
    color: #020202;
    margin: 0;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 899px) {
    .how-it-works {
        padding: 70px 20px;
    }

    .how-it-works-header {
        margin-bottom: 50px;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 480px) {
    .how-it-works {
        padding: 50px 16px;
    }

    .how-it-works-footer {
        padding: 24px 20px;
    }
}


/* Додаткова анімація появи (опційно) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/**/

/* ============================================ */
/* СЕКЦІЯ 4: ДЛЯ КОГО SHINEME */
/* ============================================ */

/* Grid з 3 колонок */
.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Картка ролі */
.for-whom-card {
    background: #fff;
    border: 2px solid #fff;
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.for-whom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(107, 78, 255, 0.15);
    background: #fff;
}

/* Іконка */
.for-whom-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition);
}

.for-whom-card:hover .for-whom-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f0edff 0%, #f8f6ff 100%);
}

.for-whom-icon svg {
    color: #6b4eff;
    transition: color var(--transition);
}

/* Заголовок картки */
.for-whom-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color, #1f1f23);
    margin-bottom: 24px;
    line-height: 1.3;
}

/* Список переваг */
.for-whom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.for-whom-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.for-whom-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #6b4eff;
}

.for-whom-list li span {
    font-size: 0.95rem;
    color: var(--text-color, #1f1f23);
    line-height: 1.5;
}

/* Кнопка CTA */
.for-whom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: #2d2a26;
    color: #fff;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.for-whom-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Варіант з основною кнопкою для клієнтів */
.for-whom-card--clients .for-whom-btn {
    background: #6b4eff;
}

.for-whom-card--clients .for-whom-btn:hover {
    background: #5a3de6;
}

/* Responsive */
@media (max-width: 991px) {
    .for-whom-section {
        padding: 70px 20px;
    }

    .for-whom-header {
        margin-bottom: 40px;
    }

    .for-whom-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .for-whom-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .for-whom-section {
        padding: 50px 16px;
    }

    .for-whom-card {
        padding: 28px 20px;
    }

    .for-whom-icon {
        width: 70px;
        height: 70px;
    }

    .for-whom-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .for-whom-card,
    .for-whom-icon,
    .for-whom-btn {
        transition: none;
    }
}

/* ============================================ */
/* BENEFITS GRID */
/* ============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* ============================================ */
/* BENEFIT CARD */
/* ============================================ */

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* ============================================ */
/* BENEFIT ICON */
/* ============================================ */

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-extra-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Додатковий декоративний елемент */
.benefit-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon svg {
    color: var(--white);
    transform: scale(1.1);
}

/* ============================================ */
/* BENEFIT CONTENT */
/* ============================================ */

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 899px) {

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .benefit-card {
        padding: 35px 25px;
    }
}

@media (max-width: 640px) {
    .benefits-section {
        padding: 60px 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* ============================================ */
/* ACCESSIBILITY & ANIMATIONS */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .benefit-icon,
    .benefit-icon svg,
    .benefit-icon::before {
        transition: none;
    }
}

/* Анімація появи карток */
@keyframes benefitFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    animation: benefitFadeIn 0.6s ease-out backwards;
}

/* Затримка для кожної картки */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.15s; }
.benefit-card:nth-child(3) { animation-delay: 0.2s; }
.benefit-card:nth-child(4) { animation-delay: 0.25s; }
.benefit-card:nth-child(5) { animation-delay: 0.3s; }
.benefit-card:nth-child(6) { animation-delay: 0.35s; }

/* Вимкнути анімації для користувачів із prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .benefit-card {
        animation: none;
    }
}

/* ============================================ */
/* ВАРІАНТ: З АКЦЕНТОМ НА ПЕРШУ КАРТКУ */
/* (опціонально, якщо хочете виділити головну перевагу) */
/* ============================================ */

/* Розкоментуйте, якщо потрібно */
/*
.benefit-card:first-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .benefit-card:first-child {
        grid-column: 1 / 3;
    }
}
*/

/* ============================================ */
/* ВАРІАНТ: АЛЬТЕРНАТИВНИЙ ДИЗАЙН З GRADIENT BORDERS */
/* (опціонально, для більш сучасного вигляду) */
/* ============================================ */

/* Розкоментуйте, якщо хочете спробувати */
/*
.benefit-card {
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--primary-extra-light), transparent) border-box;
    border: 2px solid transparent;
}

.benefit-card:hover {
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--primary), var(--primary-light)) border-box;
}
*/


/**/

/* ============================================ */
/* СЕКЦІЯ 6: ДОВІРА ТА БЕЗПЕКА */
/* ============================================ */

.trust-section {
    background: var(--white);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Декоративний фоновий елемент */
.trust-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
            circle at center,
            rgba(107, 78, 255, 0.03) 0%,
            transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.trust-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
            circle at center,
            rgba(107, 78, 255, 0.03) 0%,
            transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* ============================================ */
/* TRUST GRID */
/* ============================================ */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================ */
/* TRUST CARD */
/* ============================================ */

.trust-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* ============================================ */
/* TRUST ICON */
/* ============================================ */

.trust-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    background: var(--primary-extra-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Градієнтний фон при hover */
.trust-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.trust-card:hover .trust-icon::before {
    opacity: 1;
}

.trust-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.trust-card:hover .trust-icon svg {
    color: var(--white);
    transform: scale(1.1);
}

/* ============================================ */
/* TRUST CONTENT */
/* ============================================ */

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================ */
/* TRUST FOOTER */
/* ============================================ */

.trust-footer {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-footer-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.trust-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.trust-link:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 899px) {
    .trust-section {
        padding: 70px 20px;
    }

    .trust-header {
        margin-bottom: 50px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }

    .trust-card {
        padding: 35px 25px;
    }

    .trust-footer {
        margin-top: 50px;
    }
}

@media (max-width: 640px) {
    .trust-section {
        padding: 60px 16px;
    }

    .trust-card {
        padding: 30px 20px;
    }

    .trust-icon {
        width: 70px;
        height: 70px;
    }

    .trust-icon svg {
        width: 36px;
        height: 36px;
    }

    .trust-footer {
        margin-top: 40px;
    }
}

/* ============================================ */
/* ACCESSIBILITY & ANIMATIONS */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .trust-card,
    .trust-icon,
    .trust-icon svg,
    .trust-icon::before,
    .trust-link {
        transition: none;
    }
}

/* Анімація появи карток */
@keyframes trustFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-card {
    animation: trustFadeIn 0.6s ease-out backwards;
}

/* Затримка для кожної картки */
.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.15s; }
.trust-card:nth-child(3) { animation-delay: 0.2s; }
.trust-card:nth-child(4) { animation-delay: 0.25s; }

/* Вимкнути анімації для користувачів із prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .trust-card {
        animation: none;
    }
}

/**/

/* ============================================ */
/* СЕКЦІЯ 8: ЦИФРИ (СТАТИСТИКА) */
/* ============================================ */

.stats-section {
    background: var(--gray-bg);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Декоративний фон */
.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
            circle at center,
            rgba(107, 78, 255, 0.04) 0%,
            transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* ============================================ */
/* STATS GRID */
/* ============================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================ */
/* STAT ITEM */
/* ============================================ */

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Декоративний градієнт при hover */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    border-color: var(--primary-extra-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* ============================================ */
/* STAT NUMBER */
/* ============================================ */

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* STAT LABEL */
/* ============================================ */

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 899px) {
    .stats-section {
        padding: 60px 20px;
    }

    .stats-header {
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 25px;
    }

    .stat-item {
        padding: 30px 15px;
    }
}

@media (max-width: 640px) {
    .stats-section {
        padding: 50px 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }

    .stat-item {
        padding: 35px 20px;
    }
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: statFadeIn 0.6s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .stat-item,
    .stat-item::before {
        animation: none;
        transition: none;
    }
}


/**/

/* ============================================ */
/* СЕКЦІЯ 10: ФІНАЛЬНИЙ CTA */
/* ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Декоративні елементи */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(30px) rotate(5deg);
    }
}

/* ============================================ */
/* CONTENT */
/* ============================================ */

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ============================================ */
/* TYPOGRAPHY */
/* ============================================ */

.final-cta-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.cta-btn svg {
    flex-shrink: 0;
    transition: var(--transition);
}

/* Primary button (білий) */
.cta-btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.cta-btn-primary:hover svg {
    transform: scale(1.1);
}

/* Secondary button (прозорий з рамкою) */
.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-4px);
}

.cta-btn-secondary:hover svg {
    transform: scale(1.1);
}

/* ============================================ */
/* NOTE */
/* ============================================ */

.final-cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 899px) {
    .final-cta-section {
        padding: 80px 20px;
    }

    .final-cta-subtitle {
        margin-bottom: 40px;
    }

    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .final-cta-section {
        padding: 60px 16px;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.final-cta-title {
    animation: ctaFadeIn 0.6s ease-out 0.1s backwards;
}

.final-cta-subtitle {
    animation: ctaFadeIn 0.6s ease-out 0.2s backwards;
}

.final-cta-buttons {
    animation: ctaFadeIn 0.6s ease-out 0.3s backwards;
}

.final-cta-note {
    animation: ctaFadeIn 0.6s ease-out 0.4s backwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .final-cta-section::before,
    .final-cta-section::after,
    .cta-btn,
    .cta-btn svg,
    .final-cta-title,
    .final-cta-subtitle,
    .final-cta-buttons,
    .final-cta-note {
        animation: none;
        transition: none;
    }
}

/* ============================================ */
/* ВАРІАНТ: З ІКОНКАМИ ЗВЕРХУ (альтернативний) */
/* Розкоментуйте, якщо потрібно */
/* ============================================ */

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.step {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    position: relative;
    min-height: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    overflow: hidden;
}

.step-content {
    max-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--text-muted-300);
    text-transform: uppercase;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.step img {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 150px;
    height: auto;
    border-radius: 1rem;
    transition: all var(--transition);
}

.step:hover img {
    transform: scale(1.03);
}

.arrow {
    font-size: 2rem;
    color: #bbb;
    user-select: none;
}

/* Адаптив */
@media (max-width: 900px) {
    .arrow {
        transform: rotate(90deg);
    }

    .steps {
     flex-direction: column;
        gap: 1rem;
    }
}

