/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0 8rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0 10rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

/* Hero Grid - Two Column Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    max-width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

/* Hero Image */
.hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
        position: relative;
    }
}

.hero-student-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .hero-student-img {
        max-width: 100%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-badges .hero-badge {
    margin-bottom: 0;
}

.hero-badge-ai {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-gray-900);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Hero Form */
.hero-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

@media (min-width: 1024px) {
    .hero-form {
        margin: 0 0 3rem 0;
    }
}

.email-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .email-form .form-group {
        flex-direction: row;
    }
}

.email-form .form-input-lg {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    background: white;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.email-form .form-input-lg:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.email-form .btn-lg {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Red CTA Button for Hero */
.btn-red {
    background: #E91E63;
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
}

.btn-red:hover {
    background: #D81B60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

.btn-red:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin: 0;
}

.form-note a {
    color: var(--color-primary);
}

.form-note a:hover {
    text-decoration: underline;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-stats {
        margin: 0;
    }
}

.stat-item {
    text-align: center;
}

@media (min-width: 1024px) {
    .stat-item {
        text-align: left;
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-top: 0.5rem;
}

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-decoration: none;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray-900);
}

.service-card p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--color-primary-dark);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.testimonial-text {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    margin-bottom: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.testimonial-author > div {
    margin-top: 0.5rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-gray-900);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* Order Form Section Styles */
#partnerform {
    width: 100%;
}

#partnerform iframe,
#partnerform form {
    width: 100% !important;
    border: none !important;
}

/* Responsive adjustments */
@media (max-width: 639px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading state */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Animation classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-500);
}

/* Swiper Styles for Testimonials */
.testimonials-swiper {
    padding-bottom: 3rem;
    position: relative;
    overflow: visible !important; /* Убираем обрезку */
}

/* Разрешаем overflow у родительских контейнеров */
.testimonials-swiper .swiper-wrapper {
    overflow: visible !important;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

/* Navigation buttons - позиционирование снаружи */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--color-primary);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -24px;
    z-index: 10;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Кнопки снаружи слайдера (отрицательное позиционирование) */
.testimonials-swiper .swiper-button-prev {
    left: -60px;
}

.testimonials-swiper .swiper-button-next {
    right: -60px;
}

@media (max-width: 1200px) {
    .testimonials-swiper .swiper-button-prev {
        left: -30px;
    }
    
    .testimonials-swiper .swiper-button-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
    
    .testimonials-swiper .swiper-button-prev {
        left: -20px;
    }
    
    .testimonials-swiper .swiper-button-next {
        right: -20px;
    }
    
    .testimonials-swiper .swiper-button-prev::after,
    .testimonials-swiper .swiper-button-next::after {
        font-size: 14px;
    }
}

/* Pagination */
.testimonials-swiper .swiper-pagination {
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-gray-300);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 5px;
}

/* Ensure testimonial cards have same height */
.testimonials-swiper .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-swiper .testimonial-text {
    flex-grow: 1;
}

/* Pricing Slider */
.pricing-slider {
    margin: 0 -0.75rem;
}

.pricing-slider .slick-slide {
    padding: 0 0.75rem;
}

.pricing-card {
    height: 100%;
}

.pricing-card-inner {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--color-gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured .pricing-card-inner {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2);
}

.pricing-card .pricing-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    display: inline-block;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

/* Pricing Slider Arrows & Dots */
.pricing-slider .slick-prev,
.pricing-slider .slick-next {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    z-index: 10;
}

.pricing-slider .slick-prev:hover,
.pricing-slider .slick-next:hover {
    background: var(--color-primary-dark);
}

.pricing-slider .slick-prev {
    left: -20px;
}

.pricing-slider .slick-next {
    right: -20px;
}

.pricing-slider .slick-prev:before,
.pricing-slider .slick-next:before {
    font-size: 20px;
    color: white;
}

.pricing-slider .slick-dots {
    bottom: -40px;
}

.pricing-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--color-gray-400);
}

.pricing-slider .slick-dots li.slick-active button:before {
    color: var(--color-primary);
}

.pricing-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.pricing-slider .slick-slide {
    height: auto;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pricing-card-price {
    margin: 1.5rem 0;
}

.pricing-card-price-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.pricing-card-price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-card-price-currency {
    font-size: 1.5rem;
    color: var(--color-gray-500);
}

.pricing-card-desc {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-feature-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-gray-100);
    text-align: left;
}

.pricing-feature-item:last-child {
    border-bottom: none;
}

.btn-full {
    width: 100%;
}

/* ===== USLUGI PAGE STYLES ===== */

/* Section backgrounds */
.section-bg-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.section-bg-gray-50 {
    background: var(--color-gray-50);
}

.section-bg-gray-100 {
    background: var(--color-gray-100);
}

.section-bg-white {
    background: white;
}

.section-text-white {
    color: white;
}

/* Intro section */
.intro-section {
    padding: 4rem 0;
    text-align: center;
}

.intro-section h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* SEO content */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-content-white {
    color: rgba(255,255,255,0.85);
}

.seo-content-dark {
    color: var(--color-gray-700);
}

/* Section title */
.section-title-custom {
    margin-bottom: 2rem;
}

.section-title-custom-lg {
    margin-bottom: 3rem;
}

/* Sub title */
.sub-title-custom {
    color: var(--color-gray-600);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.sub-title-custom-white {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
}

/* Grid layouts */
.grid-gap-2 {
    gap: 2rem;
}

.grid-gap-3 {
    gap: 3rem;
}

/* Service card styles */
.service-card-centered {
    text-align: center;
    padding: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.service-card h3.white {
    color: white;
}

.service-card p {
    color: var(--color-gray-600);
}

.service-card p.light {
    color: rgba(255,255,255,0.9);
}

.service-card-light h3 {
    color: white;
}

.service-card-light p {
    color: rgba(255,255,255,0.9);
}

/* Icon containers */
.icon-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-80 {
    width: 80px;
    height: 80px;
}

.icon-circle-52 {
    width: 52px;
    height: 52px;
}

.icon-circle-104 {
    width: 104px;
    height: 104px;
}

.icon-circle-primary {
    background: var(--color-primary);
}

.icon-circle-warning {
    background: var(--color-warning);
}

.icon-circle-danger {
    background: var(--color-danger);
}

.icon-circle-success {
    background: var(--color-success);
}

.icon-circle-red {
    background: #dc2626;
}

.icon-circle-green {
    background: #16a34a;
}

/* SVG icons in circles */
.icon-circle svg {
    color: white;
}

.icon-circle-blue svg {
    color: var(--color-primary);
}

.icon-circle-blue {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle-80 svg {
    width: 40px;
    height: 40px;
}

.icon-circle-52 svg {
    width: 31px;
    height: 31px;
}

.icon-circle-104 svg {
    width: 52px;
    height: 52px;
}

/* FAQ styles */
.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-text {
    flex: 1;
}

.faq-text-right {
    flex: 1;
    text-align: right;
    font-weight: 400;
}

.faq-icon-wrapper {
    flex-shrink: 0;
}

.faq-icon-52 {
    width: 52px;
    height: 52px;
}

/* H4 styles */
h4.white {
    color: white;
}

h4.dark {
    color: var(--color-gray-900);
}

h4.margin-bottom-half {
    margin-bottom: 0.5rem;
}

/* Text colors */
.text-white {
    color: white;
}

.text-white-90 {
    color: rgba(255,255,255,0.9);
}

.text-gray-600 {
    color: var(--color-gray-600);
}

.text-gray-700 {
    color: var(--color-gray-700);
}

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

/* Step cards (How we work) */
.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-card-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.step-card-number-success {
    background: var(--color-success);
}

.step-card p {
    margin-top: 1rem;
}

.step-card-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-success);
}

.step-card-full {
    grid-column: span 2;
}

/* Buttons */
.btn-margin-top {
    margin-top: 1rem;
}

.btn-width-210 {
    width: 210px;
}

/* Margin utilities */
.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-900 {
    max-width: 900px;
}

/* About section text */
.about-text {
    line-height: 1.8;
}

/* Section padding */
.section-padding-bottom-5 {
    padding-bottom: 5rem;
}

/* Who we are section */
.who-we-are {
    background: var(--color-gray-50);
}

/* Margin & Padding utilities */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Text utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.opacity-90 {
    opacity: 0.9;
}

/* SVG sizes */
.svg-40 {
    width: 40px;
    height: 40px;
}

.svg-31 {
    width: 31px;
    height: 31px;
}

.svg-52 {
    width: 52px;
    height: 52px;
}

/* Flex utilities */
.flex-1 {
    flex: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.align-items-start {
    align-items: flex-start;
}

.gap-1 {
    gap: 1rem;
}

/* Width utilities */
.width-210 {
    width: 210px;
}

/* Line height */
.line-height-1-8 {
    line-height: 1.8;
}

/* Position utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* Transform */
.translate-x-50 {
    transform: translateX(-50%);
}

/* Top offset */
.top-neg-15 {
    top: -15px;
}

.left-50 {
    left: 50%;
}

/* H3 white */
.h3-white {
    color: white;
}

/* Intro section styles */
.intro-gradient {
    color: white;
    padding: 4rem 0;
}

.intro-gradient > .container > h1,
.intro-gradient h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-gradient > .container > p,
.intro-gradient p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Quality banner */
.quality-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.quality-banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-banner-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.quality-banner-content {
    flex: 1;
}

.quality-banner h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.quality-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Yandex metrika hidden */
.ym-hidden {
    position: absolute;
    left: -9999px;
}

/* Questions section */
.questions-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.questions-section h2 {
    color: white;
}

.questions-grid {
    gap: 3rem;
}

.question-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.question-row:last-child {
    margin-bottom: 0;
}

.question-text-right {
    flex: 1;
    text-align: right;
}

.question-text {
    flex: 1;
}

.question-icon-red {
    width: 52px;
    height: 52px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-icon-green {
    width: 52px;
    height: 52px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-icon-red svg,
.question-icon-green svg {
    width: 31px;
    height: 31px;
    color: white;
}

.questions-section h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.questions-section p {
    color: rgba(255,255,255,0.9);
}

/* Margin utilities */
.mb-0 {
    margin-bottom: 0;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-auto {
    margin-left: auto;
}

/* Padding utilities */
.p-2 {
    padding: 2rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

/* Width utilities */
.w-full {
    width: 100%;
}

.w-52 {
    width: 52px;
}

.h-52 {
    height: 52px;
}

.w-80 {
    width: 80px;
}

.h-80 {
    height: 80px;
}

/* Flex utilities */
.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.items-stretch {
    align-items: stretch;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

/* Text utilities */
.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Line height */
.leading-relaxed {
    line-height: 1.625;
}

.leading-7 {
    line-height: 1.75;
}

/* Icon circle primary 80px */
.icon-circle-primary-80 {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-circle-primary-80 svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* SEO content margin */
.seo-mb-3 {
    margin: 0 auto 3rem;
}

/* Max width */
.max-w-800 {
    max-width: 800px;
}

.max-w-600 {
    max-width: 600px;
}

/* Grid span */
.col-span-2 {
    grid-column: span 2;
}

/* Border radius */
.rounded-full {
    border-radius: 9999px;
}

/* Box shadow */
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Icon container with background */
.icon-bg-primary {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.icon-bg-primary svg {
    color: white;
}

/* Grid layout */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }
}

/* Icon container with white background */
.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-container-primary {
    background: var(--color-primary);
}

.icon-container-blue {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.icon-container svg {
    width: 40px;
    height: 40px;
}

.icon-container-primary svg {
    color: white;
}

.icon-container-blue svg {
    color: var(--color-primary);
}

/* Additional uslugi page styles */
.intro-section-alt {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.intro-section-alt::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.intro-section-alt::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.uslugi-intro {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.uslugi-intro-content {
    text-align: left;
}

.uslugi-intro-content h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.uslugi-intro-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.uslugi-intro-animation {
    position: relative;
    height: 380px;
}

.uslugi-intro-image {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uslugi-intro-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.uslugi-intro-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    border-radius: 20px;
    z-index: 1;
}

.uslugi-intro-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 0;
}

@media (max-width: 1024px) {
    .uslugi-intro {
        grid-template-columns: 1fr 360px;
        gap: 3rem;
    }
    
    .uslugi-intro-image {
        height: 320px;
    }
}

@media (max-width: 780px) {
    .intro-section-alt {
        padding: 3rem 0;
    }
    
    .uslugi-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .uslugi-intro-content {
        text-align: center;
        order: 1;
    }
    
    .uslugi-intro-content h1 {
        font-size: 2rem;
    }
    
    .uslugi-intro-content p {
        font-size: 1rem;
    }
    
    .uslugi-intro-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .uslugi-intro-content h1 {
        font-size: 1.75rem;
    }
}

.planet-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
}

.planet-orbit svg {
    color: white;
}

.planet-1 {
    width: 50px;
    height: 50px;
    animation: orbit-1 8s linear infinite;
}

.planet-1 svg {
    width: 26px;
    height: 26px;
}

.planet-2 {
    width: 55px;
    height: 55px;
    animation: orbit-2 11s linear infinite;
}

.planet-2 svg {
    width: 28px;
    height: 28px;
}

.planet-3 {
    width: 45px;
    height: 45px;
    animation: orbit-3 9s linear infinite;
}

.planet-3 svg {
    width: 22px;
    height: 22px;
}

.planet-4 {
    width: 60px;
    height: 60px;
    animation: orbit-4 13s linear infinite;
}

.planet-4 svg {
    width: 30px;
    height: 30px;
}

.planet-5 {
    width: 48px;
    height: 48px;
    animation: orbit-5 10s linear infinite;
}

.planet-5 svg {
    width: 24px;
    height: 24px;
}

.planet-6 {
    width: 52px;
    height: 52px;
    animation: orbit-6 14s linear infinite;
}

.planet-6 svg {
    width: 26px;
    height: 26px;
}

@keyframes orbit-1 {
    from { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(80px) translateY(-80px) rotate(0deg);
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(80px) translateY(-80px) rotate(-360deg);
    }
}

@keyframes orbit-2 {
    from { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(130px) translateY(0px) rotate(0deg);
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(130px) translateY(0px) rotate(-360deg);
    }
}

@keyframes orbit-3 {
    from { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(100px) translateY(100px) rotate(0deg);
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(100px) translateY(100px) rotate(-360deg);
    }
}

@keyframes orbit-4 {
    from { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(160px) translateY(-40px) rotate(0deg);
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(160px) translateY(-40px) rotate(-360deg);
    }
}

@keyframes orbit-5 {
    from { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(60px) translateY(140px) rotate(0deg);
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(60px) translateY(140px) rotate(-360deg);
    }
}

@keyframes orbit-6 {
    from { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(150px) translateY(60px) rotate(0deg);
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(150px) translateY(60px) rotate(-360deg);
    }
}

.seo-content-seo {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.service-card-service {
    text-align: center;
    padding: 2rem;
}

.service-card-service h3 {
    margin-bottom: 1rem;
    color: white;
}

.service-card-service p {
    color: rgba(255,255,255,0.9);
}

.step-card-service {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-card-service p {
    margin-top: 1rem;
}

.step-card-service-highlight {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-success);
}

.btn-service-width {
    width: 280px;
}

.about-text-service {
    color: var(--color-gray-600);
    line-height: 1.8;
}

.max-w-900-auto {
    max-width: 900px;
    margin: 0 auto;
}

.ym-hidden-alt {
    position: absolute;
    left: -9999px;
}

/* Pricing Section */
.pricing-card {
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card-featured {
    border: 2px solid var(--color-primary);
}

.pricing-card-inner {
    padding: 2rem;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-gray-800);
}

.price-wrap {
    margin: 1.5rem 0;
}

.price-prefix {
    font-size: 1rem;
    color: var(--color-gray-500);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    color: var(--color-gray-600);
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
}

/* Fun Fact Section - дополнительные стили */
.section-bgimage-yes {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
}

.section-bgimage-yes .section-content {
    position: relative;
    z-index: 1;
}

/* White text utilities */
.white {
    color: white;
}

.sub-title-custom-white {
    color: rgba(255, 255, 255, 0.9);
}

/* Max width utilities */
.max-w-900-auto {
    max-width: 900px;
    margin: 0 auto;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Pricing Table Styles */
.pricing-table-column {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-table-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-column-inner {
    padding: 2rem;
    text-align: center;
}

.plan-title h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-gray-800);
}

.price-box {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.price-prefix {
    font-size: 1rem;
    color: var(--color-gray-500);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.price-info {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-100);
    color: var(--color-gray-700);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-footer .btn {
    width: 100%;
}
