:root {
    --pink: #F8C8DC;
    --blue: #B9E2FA;
    --white: #FFFFFF;
    --dark: #2D3436;
    --gray: #636E72;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #fafafa;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn--outline {
    border: 2px solid var(--pink);
    background: transparent;
}

.btn--outline:hover {
    background: var(--pink);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__dot {
    width: 12px;
    height: 12px;
    background: var(--blue);
    border-radius: 3px;
    transform: rotate(45deg);
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background: #fff;
    padding: 80px 0 40px;
    border-top: 1px solid #eee;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__desc {
    margin-top: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer__title {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer__list a:hover {
    color: var(--pink);
    padding-left: 5px;
}

.footer__contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer__contacts svg {
    width: 18px;
    color: var(--blue);
}

.footer__bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Burger */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav {
        display: none;
    }

    .burger {
        display: block;
    }

    .header__btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}
/* Hero Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, var(--blue), transparent 40%),
        radial-gradient(circle at bottom left, var(--pink), transparent 40%);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid var(--white);
    color: var(--gray);
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero__title-line {
    overflow: hidden;
    /* Важно для анимации GSAP */
}

.hero__title-line span {
    display: block;
    transform: translateY(100%);
    /* Начальное состояние для анимации */
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    /* Будет анимировано */
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
}

.btn--primary {
    background: var(--dark);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--pink);
    color: var(--dark);
    transform: scale(1.05);
}

.btn--link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Visual Block */
.hero__visual {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.2);
    /* Для эффекта появления */
}

.hero__shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.hero__shape--1 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    top: -50px;
    right: -50px;
}

.hero__shape--2 {
    width: 250px;
    height: 250px;
    background: var(--blue);
    bottom: -50px;
    left: -50px;
}

.hero__stats {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.hero__stats-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

.hero__stats-text {
    font-size: 0.75rem;
    color: var(--gray);
}

@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin: 0 auto 40px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        left: 20px;
    }
}
/* Shared Section Head */
.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--dark), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--gray);
}

/* Strategy Section */
.strategy {
    padding: 100px 0;
    background: #fff;
}

.strategy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.strategy__card {
    padding: 40px;
    background: #fafafa;
    border-radius: 30px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid transparent;
}

.strategy__card::before {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    opacity: 0.05;
}

.strategy__card:hover {
    background: #fff;
    border-color: var(--blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(185, 226, 250, 0.2);
}

.strategy__icon {
    width: 60px;
    height: 60px;
    background: var(--blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--dark);
}

.strategy__name {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.strategy__text {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Methods Section */
.methods {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, var(--pink) 150%);
}

.methods__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.methods__list {
    margin: 40px 0;
}

.methods__item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.methods__dot {
    width: 10px;
    height: 10px;
    background: var(--pink);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.methods__visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.methods__card-glass {
    width: 320px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.glass-header {
    margin-bottom: 25px;
}

.glass-dots {
    display: flex;
    gap: 6px;
}

.glass-dots span {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0.5;
}

.glass-line {
    height: 8px;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
}

.glass-badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--blue);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.glass-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

@media (max-width: 992px) {

    .strategy__grid,
    .methods__container {
        grid-template-columns: 1fr;
    }

    .methods__visual {
        height: auto;
        margin-top: 40px;
    }
}
/* Insights Section */
.insights {
    padding: 100px 0;
    background-color: #fdfdfd;
}

.insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(248, 200, 220, 0.2);
}

.blog-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--blue);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card__content {
    padding: 25px;
}

.blog-card__title {
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.blog-card__link:hover {
    color: var(--pink);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fdfdfd, #fff);
}

.reviews__slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--pink);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.review-card__stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #FFD700;
}

.review-card__stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.review-card__text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card__name {
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-card__pos {
    font-size: 0.8rem;
    color: var(--gray);
}

@media (max-width: 992px) {

    .insights__grid,
    .reviews__slider {
        grid-template-columns: 1fr;
    }
}
/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact__details {
    margin-top: 40px;
}

.contact__item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact__item i {
    width: 48px;
    height: 48px;
    background: var(--blue);
    padding: 12px;
    border-radius: 12px;
    color: var(--dark);
}

.contact__item span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
}

.contact__item p {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Form Styles */
.form {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form__group {
    margin-bottom: 20px;
}

.form__input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fdfdfd;
    font-family: inherit;
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
}

.form__captcha {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#captchaQuestion {
    font-weight: 700;
    white-space: nowrap;
}

.form__checkbox {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 30px;
    cursor: pointer;
}

.form__btn {
    width: 100%;
    justify-content: center;
}

.form__message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    text-align: center;
    font-size: 0.9rem;
}

.form__message--success {
    display: block;
    background: #e6f9f0;
    color: #1e7e4e;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu--active {
    transform: translateX(0);
}

.mobile-menu__list {
    text-align: center;
}

.mobile-menu__list li {
    margin-bottom: 30px;
}

.mobile-menu__list a {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.burger--active span {
    background: transparent;
}

.burger--active span::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger--active span::after {
    transform: rotate(-45deg) translate(7px, -7px);
}

.burger span::before,
.burger span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--dark);
    left: 0;
    transition: var(--transition);
}

.burger span::before {
    top: -8px;
}

.burger span::after {
    bottom: -8px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-popup--active {
    bottom: 30px;
}

.cookie-popup p {
    font-size: 0.85rem;
    color: var(--gray);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
    }

    .form {
        padding: 30px;
    }
}
/* Contact Page Specific Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(185, 226, 250, 0.2);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    background: var(--pink);
    color: var(--dark);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-link {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    word-break: break-all;
}

.contact-link:hover {
    color: var(--pink);
}

.contact-address {
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    color: var(--dark);
}

.contact-extra {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #fafafa;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}