/* Base Styles */
:root {
    --primary-color: #8a2be2; /* Фиолетовый */
    --secondary-color: #ff69b4; /* Розовый */
    --white-color: #ffffff;
    --light-color: #f9f9f9;
    --dark-color: #333333;
    --gray-color: #777777;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn--primary:hover {
    background-color: #7b1fd8;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn--outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn--white {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn--white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn--block {
    display: block;
    width: 100%;
}

.btn--small {
    padding: 8px 20px;
    font-size: 14px;
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title {
    font-size: 36px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section__subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-circle {
    width: 15px;
    height: 15px;
    margin: 0 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: bounce 1.5s infinite ease-in-out;
}

.loader-circle:nth-child(1) {
    animation-delay: 0s;
}

.loader-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-circle:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.nav {
    display: flex;
}

.nav__link {
    margin-left: 30px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav__link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover:after,
.nav__link.active:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle__item {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark-color);
    position: relative;
    transition: var(--transition);
}

.nav-toggle__item:before,
.nav-toggle__item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    left: 0;
    transition: var(--transition);
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item {
    background-color: transparent;
}

.nav-toggle.active .nav-toggle__item:before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .nav-toggle__item:after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Intro Section */
.intro {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.intro__inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.intro__title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
    animation: fadeInUp 1s ease;
}

.intro__title span {
    color: var(--primary-color);
}

.intro__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray-color);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.intro__buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.intro__image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: fadeInRight 1s ease 0.6s forwards;
    opacity: 0;
}

.intro__image img {
    max-width: 200px;
    animation: floating 3s ease-in-out infinite;
}

.intro__circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 105, 180, 0.1) 100%);
}

.circle--1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
}

.circle--2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

.circle--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.features__item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.features__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.features__title {
    font-size: 22px;
    margin-bottom: 15px;
}

.features__text {
    color: var(--gray-color);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.stats__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stats__item {
    padding: 20px;
}

.stats__number {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats__text {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form {
    padding: 100px 0;
    background-color: var(--white-color);
}

.form {
    max-width: 600px;
    margin: 0 auto;
}

.form__group {
    margin-bottom: 20px;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
    border-radius: 20px;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__upload {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--light-gray);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.form__upload:hover {
    background-color: #e0e0e0;
}

.form__upload input {
    display: none;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: var(--white-color);
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer__col {
    margin-bottom: 30px;
}

.footer__title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer__text {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer__menu li {
    margin-bottom: 10px;
}

.footer__menu a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer__menu a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__contacts li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.footer__contacts i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.social__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.social__link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer__bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy,
.footer__unp {
    opacity: 0.6;
    font-size: 14px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(-50px);
    transition: var(--transition);
}

.modal.active .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.modal__close:hover {
    color: var(--dark-color);
}

.modal__title {
    color: var(--primary-color);
    text-align: center;
}

.modal__text {
    text-align: center;
    margin-bottom: 0;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Page Intro */
.page-intro {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    position: relative;
}

.page-intro__title {
    font-size: 48px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.breadcrumbs__link {
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumbs__link:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.breadcrumbs__separator {
    margin: 0 10px;
    opacity: 0.8;
}

.breadcrumbs__current {
    color: var(--secondary-color);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about__experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

.about__years {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.about__text {
    font-size: 16px;
}

.about__title {
    font-size: 36px;
    margin-bottom: 20px;
}

.about__features {
    margin: 30px 0;
}

.about__feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about__feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.about__buttons {
    display: flex;
    gap: 15px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
transform: scale(1.05);
}
100% {
    transform: scale(1);
}
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.testimonials__slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial__content {
    position: relative;
}

.testimonial__rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial__text {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}

.testimonial__text:before,
.testimonial__text:after {
    content: '"';
    font-size: 60px;
    color: rgba(138, 43, 226, 0.1);
    position: absolute;
    font-family: serif;
    line-height: 1;
}

.testimonial__text:before {
    top: -15px;
    left: -5px;
}

.testimonial__text:after {
    bottom: -40px;
    right: -5px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.testimonial__photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.testimonial__info {
    text-align: left;
}

.testimonial__name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial__position {
    font-size: 14px;
    color: var(--gray-color);
}

.testimonials__more {
    text-align: center;
    margin-top: 50px;
}

/* Slider Navigation */
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: var(--transition);
}

.slick-prev:hover,
.slick-next:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.slick-prev {
    left: -70px;
}

.slick-next {
    right: -70px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 20px;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: var(--white-color);
}

.slick-prev:before {
    content: '\f104';
}

.slick-next:before {
    content: '\f105';
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

/* Timeline Section */
.timeline {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

.timeline__items {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline__items:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(138, 43, 226, 0.2), 
        var(--primary-color), 
        var(--secondary-color), 
        rgba(255, 105, 180, 0.2));
    border-radius: 10px;
}

.timeline__item {
    position: relative;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__item:nth-child(odd) {
    text-align: right;
    padding-right: 50px;
}

.timeline__item:nth-child(even) {
    text-align: left;
    padding-left: 50px;
    grid-template-areas: "date content";
}

.timeline__date {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.timeline__date:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.timeline__item:nth-child(odd) .timeline__date:after {
    right: 0;
}

.timeline__item:nth-child(even) .timeline__date:after {
    left: 0;
}

.timeline__content {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
}

.timeline__content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.timeline__content:before {
    content: '';
    position: absolute;
    top: 30px;
    width: 25px;
    height: 25px;
    background-color: var(--white-color);
    transform: rotate(45deg);
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.timeline__item:nth-child(odd) .timeline__content:before {
    right: -12px;
}

.timeline__item:nth-child(even) .timeline__content:before {
    left: -12px;
}

.timeline__marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 4px solid var(--white-color);
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.2);
}

.timeline__item:nth-child(odd) .timeline__marker {
    right: -10px;
}

.timeline__item:nth-child(even) .timeline__marker {
    left: -10px;
}

.timeline__title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
}

.timeline__title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.timeline__item:nth-child(even) .timeline__title:after {
    left: 0;
}

.timeline__item:nth-child(odd) .timeline__title:after {
    right: 0;
}

.timeline__text {
    color: var(--gray-color);
    margin-top: 20px;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .timeline__items:before {
        left: 40px;
    }

    .timeline__item {
        grid-template-columns: 100px 1fr;
    }

    .timeline__item:nth-child(odd),
    .timeline__item:nth-child(even) {
        text-align: left;
        padding-left: 80px;
        padding-right: 0;
        grid-template-areas: "date content";
    }

    .timeline__date {
        font-size: 22px;
        text-align: center;
    }

    .timeline__date:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline__item:nth-child(odd) .timeline__content:before,
    .timeline__item:nth-child(even) .timeline__content:before {
        left: -12px;
        right: auto;
    }

    .timeline__item:nth-child(odd) .timeline__marker,
    .timeline__item:nth-child(even) .timeline__marker {
        left: 30px;
        right: auto;
    }

    .timeline__title:after {
        left: 0 !important;
        right: auto !important;
    }
}

@media (max-width: 576px) {
    .timeline__item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .timeline__date {
        text-align: left;
        padding-bottom: 5px;
    }

    .timeline__date:after {
        left: 0 !important;
        transform: none;
    }
}

/* Services Section */
.services {
padding: 100px 0;
}

.services__items {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}

.services__item {
background-color: var(--white-color);
padding: 30px;
border-radius: 10px;
box-shadow: var(--shadow);
transition: var(--transition);
}

.services__item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services__icon {
width: 70px;
height: 70px;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
}

.services__title {
font-size: 22px;
margin-bottom: 15px;
}

.services__text {
color: var(--gray-color);
margin-bottom: 20px;
}

.services__list {
margin-bottom: 25px;
}

.services__list li {
margin-bottom: 10px;
position: relative;
padding-left: 25px;
}

.services__list li:before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 10px;
height: 10px;
background-color: var(--primary-color);
border-radius: 50%;
}

/* Levels Section */
.levels {
padding: 100px 0;
background-color: var(--light-gray);
}

.levels__items {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}

.levels__item {
background-color: var(--white-color);
padding: 25px;
border-radius: 10px;
box-shadow: var(--shadow);
}

.levels__title {
font-size: 20px;
margin-bottom: 15px;
color: var(--primary-color);
}

.levels__text {
font-size: 14px;
color: var(--gray-color);
margin-bottom: 15px;
}

.levels__progress {
height: 5px;
background-color: #e0e0e0;
border-radius: 5px;
overflow: hidden;
}

.levels__bar {
height: 100%;
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Process Section */
.process {
padding: 100px 0;
}

.process__items {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.process__item {
display: flex;
align-items: flex-start;
}

.process__number {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
font-weight: 700;
margin-right: 20px;
flex-shrink: 0;
}

.process__title {
font-size: 20px;
margin-bottom: 10px;
}

.process__text {
color: var(--gray-color);
}

/* Pricing Section */
.pricing {
padding: 100px 0;
}

.pricing__items {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.pricing__item {
background-color: var(--white-color);
border-radius: 10px;
box-shadow: var(--shadow);
overflow: hidden;
transition: var(--transition);
position: relative;
}

.pricing__item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing__item--popular {
border: 2px solid var(--primary-color);
}

.pricing__badge {
position: absolute;
top: 20px;
right: -30px;
background-color: var(--primary-color);
color: var(--white-color);
padding: 5px 30px;
font-size: 14px;
font-weight: 500;
transform: rotate(45deg);
}

.pricing__header {
padding: 30px;
text-align: center;
background-color: #f9f9f9;
}

.pricing__title {
font-size: 22px;
margin-bottom: 10px;
}

.pricing__price {
font-size: 36px;
font-weight: 700;
color: var(--primary-color);
}

.pricing__price span {
font-size: 16px;
font-weight: 400;
color: var(--gray-color);
}

.pricing__features {
padding: 30px;
}

.pricing__features li {
margin-bottom: 15px;
position: relative;
padding-left: 25px;
}

.pricing__features li:before {
content: '\f00c';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
left: 0;
top: 2px;
color: var(--primary-color);
}

.pricing__item--popular .pricing__features li:before {
color: var(--secondary-color);
}

.pricing__item a {
margin: 0 30px 30px;
}

/* Pricing Features Section */
.pricing-features {
padding: 80px 0;
background-color: var(--light-gray);
}

.pricing-features__items {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.pricing-features__item {
display: flex;
background-color: var(--white-color);
padding: 25px;
border-radius: 10px;
box-shadow: var(--shadow);
}

.pricing-features__icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
margin-right: 20px;
flex-shrink: 0;
}

.pricing-features__title {
font-size: 18px;
margin-bottom: 10px;
}

.pricing-features__text {
font-size: 14px;
color: var(--gray-color);
}

/* FAQ Section */
.faq {
padding: 100px 0;
}

.faq__items {
max-width: 800px;
margin: 0 auto;
}

.faq__item {
margin-bottom: 15px;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
}

.faq__question {
padding: 20px;
background-color: var(--white-color);
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}

.faq__question h3 {
margin-bottom: 0;
font-size: 18px;
}

.faq__toggle {
width: 30px;
height: 30px;
background-color: var(--light-gray);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: var(--transition);
}

.faq__item.active .faq__toggle {
background-color: var(--primary-color);
color: var(--white-color);
transform: rotate(45deg);
}

.faq__answer {
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: var(--transition);
background-color: var(--white-color);
}

.faq__item.active .faq__answer {
padding: 0 20px 20px;
max-height: 500px;
}

/* Reviews Section */
.reviews {
padding: 100px 0;
}

.reviews__slider {
max-width: 800px;
margin: 0 auto;
}

.review {
background-color: var(--white-color);
padding: 30px;
border-radius: 10px;
box-shadow: var(--shadow);
margin: 0 15px;
}

.review__content {
position: relative;
padding: 20px;
}

.review__rating {
color: #ffc107;
margin-bottom: 20px;
}

.review__text {
font-style: italic;
margin-bottom: 30px;
position: relative;
}

.review__text:before,
.review__text:after {
content: '"';
font-size: 50px;
color: rgba(138, 43, 226, 0.1);
position: absolute;
}

.review__text:before {
top: -20px;
left: -15px;
}

.review__text:after {
bottom: -40px;
right: -15px;
}

.review__author {
display: flex;
align-items: center;
}

.review__photo {
width: 60px;
height: 60px;
border-radius: 50%;
background-size: cover;
background-position: center;
margin-right: 15px;
}

.review__info {
flex: 1;
}

.review__name {
font-weight: 600;
margin-bottom: 5px;
}

.review__position {
font-size: 14px;
color: var(--gray-color);
}

/* Video Reviews Section */
.video-reviews {
padding: 80px 0;
background-color: var(--light-gray);
}

.video-reviews__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.video-review {
position: relative;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
}

.video-review__wrapper {
position: relative;
padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-review__preview {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.video-review__play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 70px;
height: 70px;
background-color: rgba(138, 43, 226, 0.7);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
color: var(--white-color);
transition: var(--transition);
cursor: pointer;
}

.video-review:hover .video-review__play {
background-color: rgba(138, 43, 226, 0.9);
transform: translate(-50%, -50%) scale(1.1);
}

.video-review__title {
padding: 15px;
background-color: var(--white-color);
font-weight: 500;
text-align: center;
}

/* Add Review Section */
.add-review {
padding: 100px 0;
background-color: var(--white-color);
}

.review-form {
max-width: 800px;
margin: 0 auto;
}

.rating {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
margin-bottom: 20px;
}

.rating input {
display: none;
}

.rating label {
color: #ddd;
font-size: 24px;
cursor: pointer;
margin-right: 5px;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
color: #ffc107;
}

/* Video Modal */
.video-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 99999;
opacity: 0;
visibility: hidden;
transition: var(--transition);
}

.video-modal.active {
opacity: 1;
visibility: visible;
}

.video-modal__content {
width: 90%;
max-width: 900px;
position: relative;
transform: scale(0.8);
transition: var(--transition);
}

.video-modal.active .video-modal__content {
transform: scale(1);
}

.video-modal__close {
position: absolute;
top: -40px;
right: 0;
font-size: 30px;
color: var(--white-color);
cursor: pointer;
transition: var(--transition);
}

.video-modal__close:hover {
color: var(--secondary-color);
}

/* Contacts Section */
.contacts {
padding: 100px 0;
}

.contacts__inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contacts__title {
font-size: 36px;
margin-bottom: 20px;
}

.contacts__text {
margin-bottom: 30px;
color: var(--gray-color);
}

.contacts__list {
margin-top: 40px;
}

.contacts__item {
display: flex;
margin-bottom: 30px;
}

.contacts__icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
margin-right: 20px;
flex-shrink: 0;
}

.contacts__subtitle {
font-size: 18px;
margin-bottom: 5px;
}

.contacts__link {
transition: var(--transition);
}

.contacts__link:hover {
color: var(--primary-color);
}

.contacts__social {
display: flex;
gap: 10px;
margin-top: 10px;
}

.contacts__social a {
display: inline-block;
padding: 8px 15px;
background-color: var(--light-gray);
border-radius: 30px;
font-size: 14px;
transition: var(--transition);
}

.contacts__social a:hover {
background-color: var(--primary-color);
color: var(--white-color);
}

.contacts__social i {
margin-right: 5px;
}

/* Map Section */
.map {
padding: 0 0 100px;
}

.map__wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
}

/* CTA Section */
.cta {
padding: 100px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.cta__inner {
position: relative;
z-index: 2;
}

.cta__title {
font-size: 36px;
color: var(--white-color);
margin-bottom: 20px;
}

.cta__text {
font-size: 18px;
color: rgba(255, 255, 255, 0.8);
max-width: 700px;
margin: 0 auto 30px;
}

.pricing-cta {
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.pricing-cta__inner {
position: relative;
z-index: 2;
}

.pricing-cta__title {
font-size: 36px;
color: var(--white-color);
margin-bottom: 20px;
}

.pricing-cta__text {
font-size: 18px;
color: rgba(255, 255, 255, 0.8);
max-width: 700px;
margin: 0 auto 30px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
.intro__image img {
    max-width: 100px;
}
}

@media (max-width: 992px) {
.intro__inner {
    max-width: 100%;
    text-align: center;
}

.intro__image {
    position: static;
    transform: none;
    margin: 40px auto 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.intro__image img {
    max-width: 100px;
}

.intro__buttons {
    justify-content: center;
}

.about__inner {
    grid-template-columns: 1fr;
}

.about__image {
    max-width: 500px;
    margin: 0 auto;
}

.about__content {
    text-align: center;
}

.about__buttons {
    justify-content: center;
}

.timeline__items:before {
    left: 30px;
}

.timeline__item {
    grid-template-columns: 80px 1fr;
}

.timeline__item:nth-child(odd),
.timeline__item:nth-child(even) {
    text-align: left;
    padding-left: 30px;
    padding-right: 0;
    grid-template-areas: "date content";
}

.timeline__item:nth-child(odd) .timeline__content:before,
.timeline__item:nth-child(even) .timeline__content:before {
    left: -10px;
    right: auto;
}

.contacts__inner {
    grid-template-columns: 1fr;
}

.contacts__info {
    text-align: center;
}

.contacts__item {
    justify-content: center;
    text-align: center;
}

.contacts__social {
    justify-content: center;
}
}

@media (max-width: 768px) {
.nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 998;
}

.nav.active {
    transform: translateY(0);
}

.nav__link {
    margin: 10px 0;
}

.nav-toggle {
    display: block;
}

.intro__title {
    font-size: 36px;
}

.intro__buttons {
    flex-direction: column;
    gap: 15px;
}

.btn {
    width: 100%;
}

.section__title {
    font-size: 30px;
}

.form__row {
    grid-template-columns: 1fr;
}

.process__items {
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing__items {
    grid-template-columns: 1fr;
}

.pricing__item--popular {
    transform: scale(1.05);
}

.video-reviews__grid {
    grid-template-columns: 1fr;
}
}

@media (max-width: 576px) {
.intro {
    padding: 150px 0 80px;
}

.intro__title {
    font-size: 30px;
}

.stats__inner {
    grid-template-columns: 1fr 1fr;
}

.timeline__item {
    grid-template-columns: 50px 1fr;
}

.timeline__date {
    font-size: 18px;
}

.timeline__content {
    padding: 20px;
}

.services__items {
    grid-template-columns: 1fr;
}

.levels__items {
    grid-template-columns: 1fr;
}

.pricing-features__items {
    grid-template-columns: 1fr;
}
}

/* Diplomas Section */
.diplomas {
    padding: 80px 0;
    background-color: #f9f9ff;
}

.diplomas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.diploma__item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diploma__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.1);
}

.diploma__image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.diploma__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.diploma__item:hover .diploma__img {
    transform: scale(1.05);
}

.diploma__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 43, 226, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diploma__item:hover .diploma__overlay {
    opacity: 1;
}

.diploma__zoom {
    color: #fff;
    font-size: 30px;
    transition: transform 0.3s ease;
}

.diploma__zoom:hover {
    transform: scale(1.2);
}

.diploma__content {
    padding: 25px;
}

.diploma__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.diploma__text {
    color: #666;
    line-height: 1.6;
}

.diplomas__footer {
    margin-top: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.diplomas__description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    position: relative;
    padding-top: 20px;
}

.diplomas__description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #8a2be2, #ff69b4);
}

/* Анимации */
[data-aos] {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
}

[data-aos].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Blog Styles */
.blog {
    background-color: var(--light-color);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog__article {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog__article:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.15);
}

.blog__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog__article:hover .blog__image img {
    transform: scale(1.05);
}

.blog__date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
    z-index: 2;
}

.blog__day {
    font-size: 24px;
    font-weight: 700;
}

.blog__month {
    font-size: 14px;
    text-transform: uppercase;
}

.blog__content {
    padding: 25px;
}

.blog__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-color);
}

.blog__category, .blog__comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog__category i {
    color: var(--primary-color);
}

.blog__comments i {
    color: var(--secondary-color);
}

.blog__title {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog__title a {
    color: var(--dark-color);
    transition: var(--transition);
}

.blog__title a:hover {
    color: var(--primary-color);
}

.blog__excerpt {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.pagination__numbers {
    display: flex;
    gap: 10px;
}

.pagination__numbers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--dark-color);
    transition: var(--transition);
}

.pagination__numbers a:hover, 
.pagination__numbers a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.newsletter__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter__content {
    flex: 1;
    padding-right: 30px;
}

.newsletter__title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.newsletter__text {
    opacity: 0.9;
}

.newsletter__form {
    display: flex;
    flex: 1;
    max-width: 500px;
}

.newsletter__form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.newsletter__form button {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .newsletter__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter__content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .newsletter__form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
    
    .blog__pagination {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter__form {
        flex-direction: column;
    }
    
    .newsletter__form input {
        border-radius: 30px;
        margin-bottom: 15px;
    }
    
    .newsletter__form button {
        border-radius: 30px;
    }
}

/* Animations */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.blog__article {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog__article.aos-animate {
    opacity: 1;
}

/* Адаптация для разных устройств */
@media (max-width: 1200px) {
    .blog__grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .newsletter__title {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .newsletter__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter__content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .newsletter__form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
    
    .blog__pagination {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter__form {
        flex-direction: column;
    }
    
    .newsletter__form input {
        border-radius: 30px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .newsletter__form button {
        border-radius: 30px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog__grid {
        gap: 20px;
    }
    
    .blog__article {
        padding: 20px;
    }
    
    .blog__title {
        font-size: 18px;
    }
    
    .blog__excerpt {
        font-size: 14px;
    }
    
    .blog__pagination {
        gap: 10px;
    }
    
    .newsletter {
        padding: 60px 20px;
        text-align: center;
    }
    
    .newsletter__title {
        font-size: 20px;
    }
    
    .newsletter__text {
        font-size: 14px;
    }
    
    .newsletter__form input {
        padding: 12px;
        font-size: 14px;
    }
    
    .newsletter__form button {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .blog__title {
        font-size: 16px;
    }
    
    .blog__excerpt {
        font-size: 12px;
    }
    
    .newsletter__title {
        font-size: 18px;
    }
    
    .newsletter__text {
        font-size: 12px;
    }
    
    .newsletter__form input, .newsletter__form button {
        font-size: 12px;
        padding: 10px;
    }
}

/* Categories Filter */
.blog-categories {
    padding: 40px 0;
    margin-bottom: 30px;
}

.categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Кнопки категорий */
.category-btn {
    padding: 12px 25px;
    border: 2px solid #800080; /* Фиолетовый */
    border-radius: 30px;
    background: #ff69b4; /* Розовый */
    color: #ffffff; /* Белый */
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Эффект при наведении */
.category-btn:hover,
.category-btn.active {
    background: #800080; /* Фиолетовый */
    border-color: #ff69b4; /* Розовый */
    color: #fff;
}

/* Адаптация */
@media (max-width: 768px) {
    .categories-filter {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .categories-filter {
        gap: 6px;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* Pricing Banner */
.pricing-banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px auto 50px;
    max-width: 800px;
}

.pricing-item {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 105, 180, 0.1));
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
}

.pricing-item i {
    font-size: 30px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-text {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.duration {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.label {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
    margin-top: 10px;
    animation: pulse 2s infinite;
}

.discount-badge i {
    font-size: 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-banner {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-item {
        width: 100%;
        max-width: 300px;
    }
    
    .discount-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}