 :root {
     --black: #000000;
     --dark: #0f0f0f;
     --pink: #ff0077;
     --pink-light: #f075b1;
     --pink-dark: #f075b1;
     --white: #ffffff;
     --gray: #f0f0f0;
     --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

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


 body {
     font-family: 'Montserrat', sans-serif;
     background-color: var(--black);
     color: var(--white);
     line-height: 1.7;
     overflow-x: hidden;
     position: relative;
 }

 body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 10% 20%, rgba(255, 0, 119, 0.05) 0%, rgba(0, 0, 0, 0) 30%),
         radial-gradient(circle at 90% 80%, rgba(255, 0, 119, 0.05) 0%, rgba(0, 0, 0, 0) 30%);
     z-index: -1;
     pointer-events: none;
 }

 nav ul li a.active {
     color: #ff0077;
 }

 nav ul li a.active::after {
     width: 100%;
 }

 /* Шапка */
 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     padding: 20px 0;
     background: rgba(15, 15, 15, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     transition: var(--transition);
     border-bottom: 1px solid rgba(255, 0, 119, 0.2);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .logo {
     font-family: 'Playfair Display', serif;
     font-size: 28px;
     font-weight: 700;
     color: var(--white);
     text-decoration: none;
     display: flex;
     align-items: center;
     z-index: 1001;
 }

 .logo span {
     color: var(--pink);
 }

 nav {
     transition: var(--transition);
 }

 nav ul {
     display: flex;
     list-style: none;
 }

 nav ul li {
     margin-left: 30px;
 }

 nav ul li a {
     color: var(--white);
     text-decoration: none;
     font-weight: 500;
     font-size: 16px;
     position: relative;
     padding: 5px 0;
     transition: var(--transition);
 }

 nav ul li a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--pink);
     transition: var(--transition);
 }

 nav ul li a:hover::after,
 nav ul li a.active::after {
     width: 100%;
 }

 nav ul li a:hover {
     color: var(--pink);
 }

 a {
     text-decoration: none;
 }

 /* Добавляем новые стили для блока "Моя работа в цифрах" */
 .numbers-container {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     max-width: 1000px;
     margin: 0 auto;
     gap: 40px;
 }

 .numbers-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 25px;
     flex: 1;
 }

 .number-item {
     background: rgba(15, 15, 15, 0.95);
     border-radius: 15px;
     padding: 30px 20px;
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(255, 0, 119, 0.3);
     box-shadow:
         0 10px 20px rgba(0, 0, 0, 0.5),
         0 0 0 1px rgba(255, 0, 119, 0.1),
         0 0 0 3px rgba(30, 30, 30, 0.8),
         0 0 0 4px rgba(255, 0, 119, 0.3);
     transform: translateY(0) perspective(1000px) rotateX(0deg);
     transform-style: preserve-3d;
     transition: var(--transition);
 }

 .number-item::before {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg, #ff0077, #f075b1, #ff0077);
     z-index: -1;
     border-radius: 17px;
 }

 .number-item::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 15, 15, 0.9);
     border-radius: 15px;
     z-index: -1;
 }

 .number-item:hover {
     transform: translateY(-10px) perspective(1000px) rotateX(5deg);
     box-shadow:
         0 15px 40px rgba(255, 0, 119, 0.4),
         0 0 0 1px rgba(255, 0, 119, 0.2),
         0 0 0 3px rgba(30, 30, 30, 0.8),
         0 0 0 4px rgba(255, 0, 119, 0.4);
 }

 .number-value {
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--pink);
     margin-bottom: 10px;
     background: linear-gradient(45deg, var(--pink), var(--pink-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .number-label {
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--pink);
     margin-bottom: 10px;
     background: linear-gradient(45deg, var(--pink), var(--pink-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .consult-btn-container {
     flex: 0 0 auto;
     display: flex;
     align-items: center;
     height: 100%;
     padding-top: 170px;
 }

 .consult-btn {
     display: inline-block;
     padding: 15px 35px;
     background: linear-gradient(45deg, var(--pink), var(--pink-light));
     color: var(--white);
     border: none;
     border-radius: 30px;
     font-weight: 600;
     font-size: 16px;
     text-transform: uppercase;
     letter-spacing: 1px;
     cursor: pointer;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(255, 0, 119, 0.3);
 }

 .consult-btn::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, var(--pink-dark), var(--pink));
     opacity: 0;
     transition: var(--transition);
 }

 .consult-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(255, 0, 119, 0.5);
 }

 .consult-btn:hover::after {
     opacity: 1;
 }

 .consult-btn span {
     position: relative;
     z-index: 2;
 }

 .number-prefix,
 .number-suffix {
     display: inline-block;
     background: linear-gradient(45deg, var(--pink), var(--pink-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .number-animate {
     display: inline-block;
     min-width: 60px;
     text-align: center;
 }


 .contact-header {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .phone {
     display: flex;
     align-items: center;
     gap: 8px;
     font-weight: 600;
     color: var(--white);
     text-decoration: none;
     transition: var(--transition);
 }

 .phone:hover {
     color: var(--pink);
 }

 .btn {
     display: inline-block;
     padding: 12px 30px;
     background: linear-gradient(45deg, var(--pink), var(--pink-light));
     color: var(--white);
     border: none;
     border-radius: 30px;
     font-weight: 600;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 1px;
     cursor: pointer;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(255, 0, 119, 0.3);
 }

 .btn::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, var(--pink-dark), var(--pink));
     opacity: 0;
     transition: var(--transition);
 }

 .btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(255, 0, 119, 0.5);
 }

 .btn:hover::after {
     opacity: 1;
 }

 .btn span {
     position: relative;
     z-index: 2;
 }

 /* Бургер-меню */
 .menu-toggle {
     display: none;
     flex-direction: column;
     justify-content: space-around;
     width: 30px;
     height: 25px;
     background: transparent;
     border: none;
     cursor: pointer;
     padding: 0;
     z-index: 1001;
 }

 .menu-toggle:focus {
     outline: none;
 }

 .menu-toggle span {
     width: 30px;
     height: 3px;
     background: var(--white);
     border-radius: 10px;
     transition: var(--transition);
     position: relative;
     transform-origin: center;
 }

 /* Герой */
 .hero {
     height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     padding-top: 80px;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at center, rgba(255, 0, 119, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
     z-index: -1;
 }

 .hero-content {
     max-width: 1200px;
     margin: 0 auto 0 10%;
     padding: 0 20px;
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-family: 'Playfair Display', serif;
     font-size: 3.5rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 20px;
     max-width: 800px;
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 1s forwards 0.2s;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 40px;
     max-width: 600px;
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 1s forwards 0.4s;
 }

 .hero-btns {
     display: flex;
     gap: 20px;
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 1s forwards 0.6s;
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--pink);
     box-shadow: none;
 }

 .btn-outline:hover {
     background: var(--pink);
 }

 .hero-image {
     position: absolute;
     right: -50px;
     transform: translateY(-50%);
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
     opacity: 0;
     animation: fadeIn 1s forwards 0.8s;
 }

 .hero-image::before {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(255, 0, 119, 0.3), rgba(0, 0, 0, 0.6));
     z-index: 1;
 }

 /* Секции */
 section {
     padding: 50px 0;
     position: relative;
 }

 .section-header {
     text-align: center;
     margin-bottom: 20px;
 }

 .section-header h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2.8rem;
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
 }

 .section-header h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: var(--pink);
     border-radius: 2px;
 }

 .section-header p {
     max-width: 700px;
     margin: 30px auto 0;
     font-size: 1.2rem;
     color: #ccc;
 }

 /* Услуги */
 .services {
     background: var(--dark);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .service-card {
     background: rgba(30, 30, 30, 0.8);
     border-radius: 15px;
     overflow: hidden;
     transition: var(--transition);
     position: relative;
     transform: translateY(50px);
     opacity: 0;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     height: 500px;
     perspective: 1000px;
     display: flex;
     /* Добавляем flex-контейнер */
     flex-direction: column;
     /* Вертикальное расположение */
 }

 .card-inner {
     position: relative;
     width: 100%;
     height: 100%;
     transition: transform 0.8s;
     transform-style: preserve-3d;
     display: flex;
     /* Добавляем flex-контейнер */
     flex-direction: column;
     /* Вертикальное расположение */
     flex-grow: 1;
     /* Занимаем все доступное пространство */
 }

 .card-front,
 .card-back {
     position: absolute;
     width: 100%;
     height: 100%;
     backface-visibility: hidden;
     display: flex;
     flex-direction: column;
     padding: 30px;
     border-radius: 15px;
     background: rgba(30, 30, 30, 0.8);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     flex-grow: 1;
     /* Занимаем все доступное пространство */
 }

 .card-back {
     transform: rotateY(180deg);
     justify-content: space-between;
     /* Распределение пространства */
 }

 .card-inner.flipped {
     transform: rotateY(180deg);
 }

 /* Контейнер для контента на лицевой стороне */
 .card-front .service-content {
     flex-grow: 1;
     /* Занимает все доступное пространство */
     display: flex;
     flex-direction: column;
 }

 /* Контейнер для контента на обратной стороне */
 .card-back .card-back-content {
     flex-grow: 1;
     /* Занимает все доступное пространство */
     overflow-y: auto;
     /* Добавляем прокрутку при необходимости */
 }

 /* Обертка для кнопок на лицевой стороне */
 .card-front .button-group {
     margin-top: auto;
     /* Прижимаем к низу */
     display: flex;
     flex-direction: column;
     gap: 15px;
     padding-top: 20px;
 }

 .card-back .button-group {
     display: flex;
     flex-direction: column;
     gap: 15px;
     padding-top: 20px;
 }

 .flip-btn {
     background: transparent;
     border: none;
     color: var(--pink);
     cursor: pointer;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: var(--transition);
     text-align: center;
     justify-content: center;
 }

 .flip-btn:hover {
     color: var(--pink-light);
 }

 .flip-btn i {
     font-size: 0.9em;
 }

 /* Дополнительные детали для задней стороны */
 .card-back-content {
     flex: 1;
 }

 .card-back ul {
     margin-top: 20px;
     padding-left: 20px;
 }

 .card-back li {
     margin-bottom: 10px;
     color: #ddd;
 }

 .flip-back-btn {
     background: transparent;
     border: none;
     color: var(--pink);
     cursor: pointer;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: var(--transition);
     justify-content: center;
 }

 .flip-back-btn:hover {
     color: var(--pink-light);
 }

 .service-card.animate {
     transform: translateY(0);
     opacity: 1;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(255, 0, 119, 0.2);
 }

 .service-icon {
     height: 200px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 0, 119, 0.1);
     font-size: 60px;
     color: var(--pink);
 }

 .service-content h3 {
     font-size: 1.8rem;
     margin-bottom: 15px;
     color: var(--pink);
 }

 .service-content p {
     margin-bottom: 20px;
     color: #ddd;
 }

 /* .price {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--white);
     margin-bottom: 20px;
 } */

 /* Обо мне */
.about {
    background: var(--dark);
}

 .about-content {
     display: flex;
     align-items: center;
     gap: 200px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .about-text {
     flex: 1;
 }

 .about-text h3 {
     font-size: 2.2rem;
     margin-bottom: 25px;
     color: var(--pink);
 }

 .about-text p {
     margin-bottom: 20px;
 }

 .about-image {
     flex: 1;
     position: relative;
 }

 .about-img {
     width: 80%;
     border-radius: 15px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
     transition: var(--transition);
 }

 .about-img img {
     border-radius: 10px;
 }

 .about-image:hover .about-img {
     transform: scale(1.03);
 }

 .experience-badge {
     position: absolute;
     top: -20px;
     right: -20px;
     background: var(--pink);
     color: var(--white);
     width: 150px;
     height: 150px;
     border-radius: 50%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.5rem;
     box-shadow: 0 10px 30px rgba(255, 0, 119, 0.4);
     animation: pulse 2s infinite;
 }

 /* Страницы сайта */
 .page {
     background: rgba(30, 30, 30, 0.8);
     padding: 100px 0;
 }

.page-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

.header-page {
    text-align: left;
}

.header-page h2 {
    position: static;
}

 /* Блок причин */
 .reasons {
     background: rgba(30, 30, 30, 0.8);
     padding: 50px 0;
 }

 .reasons-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .reasons-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .reason-card {
     background: rgba(20, 20, 20, 0.9);
     border-radius: 15px;
     padding: 30px;
     position: relative;
     overflow: hidden;
     transition: var(--transition);
     transform: translateY(50px);
     opacity: 0;
 }

 .reason-card.animate {
     transform: translateY(0);
     opacity: 1;
 }

 .reason-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(255, 0, 119, 0.2);
 }

 .reason-number {
     font-size: 3rem;
     font-weight: 800;
     color: var(--pink);
     margin-bottom: 15px;
     background: linear-gradient(45deg, var(--pink), var(--pink-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .reason-card h3 {
     font-size: 1.8rem;
     margin-bottom: 15px;
     color: var(--white);
 }

 .reason-card p {
     color: #ddd;
     margin-bottom: 0;
 }

 .numbers-section {
     margin-top: 80px;
     text-align: center;
 }

 .numbers-section h3 {
     font-size: 2rem;
     margin-bottom: 50px;
     color: var(--pink);
     position: relative;
     display: inline-block;
 }

 .numbers-section h3::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: var(--pink);
     border-radius: 2px;
 }

 .numbers-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     max-width: 500px;
     margin: 0 auto;
 }

 .number-item {
     background: rgba(255, 0, 119, 0.1);
     border-radius: 15px;
     padding: 30px 20px;
     transition: var(--transition);
 }

 .number-item:hover {
     transform: translateY(-10px);
     background: rgba(255, 0, 119, 0.2);
 }

 .number-value {
     font-size: 3rem;
     font-weight: 800;
     color: var(--pink);
     margin-bottom: 10px;
 }

 .number-label {
     font-size: 1.2rem;
     color: #ddd;
 }

 /* Стили для блока с кейсами */
 .cases {
     background: var(--dark);
     padding: 50px 0;
 }

 .cases-container {
     display: flex;
     align-items: center;
     gap: 140px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .cases-buttons {
     flex: 0.9;
     display: flex;
     flex-direction: column;
     gap: 25px;
 }

 .case-btn {
     display: inline-block;
     padding: 20px 40px;
     background: rgba(30, 30, 30, 0.8);
     border-radius: 15px;
     color: var(--white);
     text-decoration: none;
     font-weight: 600;
     font-size: 1.2rem;
     text-align: center;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     border: 2px solid rgba(255, 0, 119, 0.3);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 .case-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 0;
     background: linear-gradient(45deg, var(--pink), var(--pink-light));
     transition: var(--transition);
     z-index: -1;
 }

 .case-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(255, 0, 119, 0.3);
 }

 .case-btn:hover::before {
     height: 100%;
 }

 .case-btn span {
     position: relative;
     z-index: 2;
 }

 .case-image {
     /* flex: 1; */
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
     transition: var(--transition);
 }

 .case-image img {
     width: auto;
     height: 500px;
     display: block;
     transition: var(--transition);
 }

 .case-image:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(255, 0, 119, 0.3);
 }

 .case-image:hover img {
     transform: scale(1.05);
 }

 /* Отзывы */
 .testimonials {
     background: var(--dark);
 }

 .testimonials-container {
     /* max-width: 1000px; */
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
 }

 .testimonial {
     background: rgba(30, 30, 30, 0.8);
     border-radius: 15px;
     padding: 40px;
     margin: 30px 20px;
     position: relative;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     transform: scale(0.95);
     opacity: 0;
     transition: var(--transition);
     width: 45%;
 }

 .testimonial.animate {
     transform: scale(1);
     opacity: 1;
 }

 .testimonial::before {
     content: '"';
     position: absolute;
     top: 20px;
     left: 20px;
     font-family: 'Playfair Display', serif;
     font-size: 5rem;
     color: var(--pink);
     opacity: 0.3;
     line-height: 1;
 }

 .testimonial-content {
     position: relative;
     z-index: 2;
     font-size: 1.1rem;
     font-style: italic;
     margin-bottom: 25px;
 }

 .client {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .client-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: var(--pink);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: 700;
 }

 .client-info h4 {
     font-size: 1.3rem;
     margin-bottom: 5px;
 }

 .client-info p {
     color: #bbb;
     font-size: 0.9rem;
 }

 /* Стили для блока партнёрской системы */
 .partnership {
     background: rgba(30, 30, 30, 0.8);
     padding: 50px 0;
 }

 .partnership-container {
     display: flex;
     align-items: center;
     gap: 100px;
     max-width: 1000px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .partnership-image {
     flex: 1;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
     transition: var(--transition);
 }

 .partnership-image img {
     width: auto;
     height: 500px;
     display: block;
     transition: var(--transition);
 }

 .partnership-image:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(255, 0, 119, 0.3);
 }

 .partnership-image:hover img {
     transform: scale(1.05);
 }

 .partnership-content {
     flex: 1.6;
 }

 .partnership-content h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2.8rem;
     margin-bottom: 25px;
     color: var(--pink);
     position: relative;
 }

 .partnership-content h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 0;
     width: 80px;
     height: 4px;
     background: var(--pink);
     border-radius: 2px;
 }

 .partnership-content p {
     font-size: 1.2rem;
     margin-bottom: 35px;
     line-height: 1.8;
     color: #ddd;
 }

 /* Контакты */
 .contact-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 50px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .contact-item {
     display: flex;
     gap: 20px;
 }

 .contact-icon {
     width: 60px;
     height: 60px;
     background: rgba(255, 0, 119, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: var(--pink);
     flex-shrink: 0;
 }

 .contact-text h4 {
     font-size: 1.3rem;
     margin-bottom: 10px;
 }

 .contact-text p,
 .contact-text a {
     color: #ddd;
     text-decoration: none;
     transition: var(--transition);
 }

 .contact-text a:hover {
     color: var(--pink);
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 45px;
     height: 45px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: var(--white);
     font-size: 1.2rem;
     transition: var(--transition);
 }

 .social-link:hover {
     background: var(--pink);
     transform: translateY(-5px);
 }

 .contact-form {
     background: rgba(30, 30, 30, 0.8);
     padding: 40px;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .form-control {
     width: 100%;
     padding: 15px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     color: var(--white);
     font-family: inherit;
     font-size: 1rem;
     transition: var(--transition);
 }

 .form-control:focus {
     outline: none;
     border-color: var(--pink);
     box-shadow: 0 0 0 3px rgba(255, 0, 119, 0.2);
 }

 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }

 /* Стили для валидации */
 input:invalid {
     border-color: #ff0077 !important;
     box-shadow: 0 0 0 2px rgba(255, 0, 119, 0.2) !important;
 }

 .error-message {
     color: #ff0077;
     font-size: 0.85rem;
     margin-top: 5px;
     display: none;
 }

 /* Футер */
 footer {
     background: #050505;
     padding: 60px 0 30px;
     border-top: 1px solid rgba(255, 0, 119, 0.2);
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
 }

 .footer-col h4 {
     font-size: 1.3rem;
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-col h4::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background: var(--pink);
 }

 .footer-col p {
     color: #aaa;
     margin-bottom: 20px;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #aaa;
     text-decoration: none;
     transition: var(--transition);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .footer-links a:hover {
     color: var(--pink);
     padding-left: 5px;
 }

 .copyright {
     text-align: center;
     color: #777;
 }

 .footer-down {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     justify-content: space-around;
     padding-top: 40px;
     margin-top: 40px;
 }

 .policy a {
     color: rgb(170, 170, 170);
 }

 .policy a:hover {
     color: var(--pink);
 }

 .line-pink {
    display: inline;
    color: var(--pink);
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 100% 1px;
}

 /* Анимации */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(255, 0, 119, 0.7);
     }

     70% {
         transform: scale(1.05);
         box-shadow: 0 0 0 15px rgba(255, 0, 119, 0);
     }

     100% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(255, 0, 119, 0);
     }
 }

 /* Адаптив */
 @media (max-width: 992px) {
     .hero h1 {
         font-size: 3.5rem;
     }

     .hero-image {
         width: 50%;
         right: -100px;
     }

     .about-content {
         flex-direction: column;
     }
 }

 @media (max-width: 768px) {
     header {
         padding: 15px 0;
     }

     nav {
         position: fixed;
         top: 0;
         left: -100%;
         width: 100%;
         height: 100vh;
         background: rgba(15, 15, 15, 0.98);
         backdrop-filter: blur(10px);
         transition: var(--transition);
         z-index: 999;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     nav.active {
         left: 0;
     }

     nav ul {
         flex-direction: column;
         padding: 40px 20px;
         align-items: center;
         text-align: center;
     }

     nav ul li {
         margin: 0 0 25px 0;
     }

     nav ul li a {
         font-size: 1.5rem;
     }

     .menu-toggle {
         display: flex;
     }

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

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

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

     .contact-header .phone {
         display: none;
     }

     .contact-header .btn {
         display: none;
     }

     .hero {
         text-align: center;
     }

     .hero h1 {
         font-size: 2.8rem;
     }

     .hero p {
         font-size: 1.2rem;
         margin: 0 auto 40px;
     }

     .hero-btns {
         justify-content: center;
     }

     .hero-image {
         display: none;
     }

     .section-header h2 {
         font-size: 2.2rem;
     }

     .reasons-grid {
         grid-template-columns: 1fr;
     }

     .footer-down {
         flex-direction: column;
     }

     .numbers-container {
         flex-direction: column;
         align-items: center;
     }

     .numbers-grid {
         grid-template-columns: 1fr;
         width: 100%;
     }

     .consult-btn-container {
         padding-top: 30px;
         width: 100%;
         justify-content: center;
     }

     .cases-container {
         flex-direction: column;
     }

     .cases-buttons {
         width: 100%;
     }

     .case-image {
         max-width: max-content;
         margin: 0 auto;
     }

     .partnership-container {
         flex-direction: column;
     }

     .partnership-image,
     .partnership-content {
         width: 100%;
     }

     .testimonial {
         width: 100%;
     }

     .partnership-image img {
         width: 100%;
         height: auto;
     }
 }

 @media (max-width: 576px) {
     .hero h1 {
         font-size: 2.2rem;
     }

     .hero-btns {
         flex-direction: column;
         align-items: center;
     }

     .btn {
         width: 100%;
         max-width: 300px;
     }

     .experience-badge {
         width: 100px;
         height: 100px;
         font-size: 1.0rem;
     }
 }