/* ============================================
   ФУТУРИСТИЧНЫЙ ДИЗАЙН - ПЕРЕЗАГРУЗКА
   ============================================ */

/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цвета в HSL */
    --background: hsl(220 40% 5%);
    --foreground: hsl(200 100% 98%);
    
    --card: hsl(220 35% 8%);
    --card-foreground: hsl(200 100% 98%);
    
    --primary: hsl(195 100% 50%);
    --primary-foreground: hsl(220 40% 5%);
    
    --secondary: hsl(200 70% 15%);
    --secondary-foreground: hsl(195 100% 85%);
    
    --muted: hsl(220 30% 12%);
    --muted-foreground: hsl(200 20% 60%);
    
    --accent: hsl(180 100% 50%);
    --accent-foreground: hsl(220 40% 5%);
    
    --border: hsl(200 30% 18%);
    --input: hsl(200 30% 18%);
    --ring: hsl(195 100% 50%);
    
    /* Неоновые цвета */
    --neon-cyan: hsl(180 100% 50%);
    --neon-blue: hsl(195 100% 50%);
    --deep-blue: hsl(220 40% 5%);
    --mid-blue: hsl(200 70% 15%);
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, hsl(195 100% 50% / 0.2), hsl(180 100% 50% / 0.1));
    --gradient-hero: linear-gradient(180deg, hsl(220 40% 5%), hsl(200 70% 10%));
    --gradient-card: linear-gradient(135deg, hsl(220 35% 8%), hsl(200 40% 12%));
    
    /* Тени */
    --shadow-glow: 0 0 30px hsl(195 100% 50% / 0.3);
    --shadow-card: 0 10px 40px hsl(0 0% 0% / 0.5);
    
    /* Анимации */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Скругления */
    --radius: 0.75rem;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Утилиты */
.text-glow {
    text-shadow: 0 0 20px hsl(180 100% 50% / 0.5);
}

.border-glow {
    box-shadow: 0 0 20px hsl(180 100% 50% / 0.3);
}

.card-glow {
    box-shadow: 0 0 30px hsl(195 100% 50% / 0.2), 0 10px 40px hsl(0 0% 0% / 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   КОМПОНЕНТЫ
   ============================================ */

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(195 100% 50% / 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--secondary);
    border-color: var(--primary);
    box-shadow: 0 0 15px hsl(195 100% 50% / 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Шапка */
.header {
    background: hsl(220 40% 5% / 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(200 30% 18% / 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.logo__img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 10px;
    border: 1px solid hsl(200 30% 18%);
}

/* Навигация */
.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--foreground);
}

.nav__link:hover::before {
    width: 100%;
}

.nav__link--active {
    color: var(--primary);
}

.nav__link--active::before {
    width: 100%;
    background: var(--primary);
}

.compare-icon {
    color: var(--primary);
}

/* Герой-слайдер */
.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, hsl(195 100% 50% / 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, hsl(180 100% 50% / 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 0;
    position: relative;
}

.hero-slide__content {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background: hsl(220 35% 8% / 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid hsl(200 30% 18% / 0.5);
    box-shadow: var(--shadow-card);
}

.hero-slide__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--foreground), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-slide__text {
    font-size: 1.3rem;
    color: var(--muted-foreground);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 1.2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Секции */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--foreground), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Карточки товаров */
.products {
    padding: 100px 0;
    background: var(--gradient-hero);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--gradient-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid hsl(200 30% 18%);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card), 0 0 30px hsl(195 100% 50% / 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, hsl(220 40% 5% / 0.8));
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: 25px;
}

.product-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--foreground);
}

.product-card__desc {
    color: var(--muted-foreground);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-card__actions {
    display: flex;
    gap: 10px;
}

/* Секция "О компании" */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, hsl(195 100% 50% / 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__text p {
    color: var(--muted-foreground);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about__features {
    list-style: none;
    margin-top: 30px;
}

.about__features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--foreground);
}

.about__features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.about__image {
    position: relative;
}

.about__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

.about__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid hsl(200 30% 18%);
}

/* Отзывы */
.reviews {
    padding: 100px 0;
    background: var(--gradient-hero);
}

.reviews__slider {
    position: relative;
    padding: 0 60px;
}

.reviews-swiper {
    padding: 30px 0 50px;
}

.review-slide {
    height: auto;
}

.review-card {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    border: 1px solid hsl(200 30% 18%);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.review-card:hover::before {
    opacity: 1;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    border: 2px solid hsl(200 30% 18%);
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 5px;
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    font-size: 1rem;
}

.review-card__date {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.review-card__body {
    color: var(--muted-foreground);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card__footer {
    padding-top: 20px;
    border-top: 1px solid hsl(200 30% 18%);
}

.review-card__farm {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.reviews__cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid hsl(200 30% 18%);
}

.reviews__cta p {
    color: var(--muted-foreground);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Подвал */
.footer {
    background: hsl(220 40% 5%);
    border-top: 1px solid hsl(200 30% 18%);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer__text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer__title {
    color: var(--foreground);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
    color: var(--muted-foreground);
}

.footer__list a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer__list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid hsl(200 30% 18%);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* Анимации */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero-slide__title {
        font-size: 2.8rem;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav__list {
        gap: 15px;
    }
    
    .nav__link {
        font-size: 0.9rem;
    }
    
    .hero-slide__title {
        font-size: 2.2rem;
    }
    
    .hero-slide__text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .reviews__slider {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .header__inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav__list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-slide {
        padding: 40px 0;
    }
    
    .hero-slide__content {
        padding: 30px 20px;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
/* ============================================
   ФУТУРИСТИЧНЫЕ УСЛУГИ
   ============================================ */

.services-futuristic {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
}

.services-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.services-grid-futuristic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card-futuristic {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid hsl(200 30% 18%);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-futuristic:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card), 0 0 40px hsl(195 100% 50% / 0.2);
}

.service-card-futuristic:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.service-card-futuristic h3 {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card-futuristic p {
    color: var(--muted-foreground);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-card-futuristic ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.service-card-futuristic li {
    color: var(--secondary-foreground);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-card-futuristic li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-price {
    margin-bottom: 25px;
    padding: 15px;
    background: hsl(200 30% 15% / 0.5);
    border-radius: calc(var(--radius) - 0.25rem);
    border: 1px solid hsl(200 30% 18%);
}

.price-from {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-right: 5px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Технологии */
.technologies {
    padding: 100px 0;
    background: var(--background);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-item {
    text-align: center;
    padding: 30px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    border: 1px solid hsl(200 30% 18%);
    transition: var(--transition-smooth);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 20px hsl(195 100% 50% / 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.tech-item h4 {
    color: var(--foreground);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tech-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Анимации */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.service-card-futuristic:hover .service-icon {
    animation: pulse 1s ease-in-out infinite;
}

/* Адаптивность для футуристичных услуг */
@media (max-width: 768px) {
    .services-grid-futuristic {
        grid-template-columns: 1fr;
    }
    
    .service-card-futuristic {
        padding: 30px 20px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}
}
/* ============================================
   СОВРЕМЕННАЯ ФОРМА КОНТАКТОВ
   ============================================ */

/* Заголовок формы */
.form-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid hsl(200 30% 18%);
}

.form-title {
    font-size: 2rem;
    color: var(--foreground);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.5;
}

/* Секции формы */
.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    border: 1px solid hsl(200 30% 18%);
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.2rem;
    color: var(--foreground);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid hsl(200 30% 18%);
    font-weight: 600;
    position: relative;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

/* Сетка для полей */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Группы полей */
.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-required {
    color: hsl(0, 84%, 60%);
    font-size: 0.8rem;
    margin-left: 5px;
    font-weight: normal;
}

/* Поля ввода */
.form-input-modern {
    width: 100%;
    padding: 14px 16px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: calc(var(--radius) - 0.25rem);
    color: var(--foreground);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(195 100% 50% / 0.1);
    background: hsl(200 30% 10%);
}

.form-input-modern::placeholder {
    color: hsl(200 20% 40%);
}

.form-example {
    color: hsl(200 20% 50%);
    font-size: 0.85rem;
    margin-top: 6px;
    font-style: italic;
}

/* Стилизованный select */
.select-wrapper {
    position: relative;
}

.form-select-modern {
    width: 100%;
    padding: 14px 16px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: calc(var(--radius) - 0.25rem);
    color: var(--foreground);
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-select-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(195 100% 50% / 0.1);
    background: hsl(200 30% 10%);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:focus-within .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Textarea */
.form-textarea-modern {
    width: 100%;
    padding: 14px 16px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: calc(var(--radius) - 0.25rem);
    color: var(--foreground);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: var(--transition-smooth);
}

.form-textarea-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(195 100% 50% / 0.1);
    background: hsl(200 30% 10%);
}

.textarea-counter {
    text-align: right;
    color: hsl(200 20% 50%);
    font-size: 0.85rem;
    margin-top: 6px;
}

.current-chars {
    color: var(--foreground);
}

/* Чекбокс */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox-modern {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid hsl(200 30% 30%);
    border-radius: 4px;
    background: hsl(200 30% 12%);
    position: relative;
    transition: var(--transition-smooth);
}

.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.form-checkbox-modern:checked + .checkbox-label .checkbox-custom {
    border-color: var(--primary);
    background: hsl(195 100% 50% / 0.1);
}

.form-checkbox-modern:checked + .checkbox-label .checkbox-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.privacy-link:hover {
    border-bottom-color: var(--primary);
}

/* Кнопка отправки */
.form-submit {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid hsl(200 30% 18%);
}

.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-submit-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(195 100% 50% / 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-submit-modern:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 1.2rem;
}

.form-note {
    color: hsl(200 20% 50%);
    font-size: 0.9rem;
    margin-top: 12px;
    font-style: italic;
}

/* Состояния валидации */
.form-input-modern:invalid:not(:placeholder-shown):not(:focus) {
    border-color: hsl(0, 84%, 60%);
    background: hsl(0 84% 60% / 0.05);
}

.form-input-modern:valid:not(:placeholder-shown) {
    border-color: hsl(120, 84%, 60%);
    background: hsl(120 84% 60% / 0.05);
}

/* Анимация при отправке */
.btn-submit-modern.sending {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit-modern.sending .btn-text::after {
    content: '...';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Успешная отправка */
.form-success-message {
    display: none;
    padding: 25px;
    background: hsl(120 84% 60% / 0.1);
    border: 1px solid hsl(120 84% 60%);
    border-radius: var(--radius);
    color: var(--foreground);
    text-align: center;
    margin-top: 20px;
}

.form-success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность формы */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .btn-submit-modern {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-header {
        margin-bottom: 30px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .form-input-modern,
    .form-select-modern,
    .form-textarea-modern {
        padding: 12px 14px;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
}
/* ============================================
   РАЗДЕЛЕННЫЙ МАКЕТ КОНТАКТОВ
   ============================================ */

.contacts-split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Две равные колонки */
    gap: 40px;
    align-items: start;
}

/* Левая колонка - контакты */
.contacts-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid hsl(200 30% 18%);
    box-shadow: var(--shadow-card);
}

.contact-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid hsl(200 30% 18%);
}

.contact-header h3 {
    font-size: 1.8rem;
    color: var(--foreground);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-header p {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid hsl(200 30% 25%);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--foreground);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-details p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details strong {
    color: var(--primary);
    font-weight: 600;
}

/* Быстрая связь */
.quick-contact {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid hsl(200 30% 18%);
    box-shadow: var(--shadow-card);
}

.quick-contact h3 {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: calc(var(--radius) - 0.25rem);
    color: var(--foreground);
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth);
}

.quick-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px hsl(195 100% 50% / 0.2);
}

.phone-btn:hover {
    background: hsl(120 84% 60% / 0.1);
}

.email-btn:hover {
    background: hsl(195 100% 50% / 0.1);
}

.whatsapp-btn:hover {
    background: hsl(142 70% 49% / 0.1);
}

.quick-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quick-btn span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Правая колонка - форма */
.contacts-right {
    height: 100%;
}

.form-card {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid hsl(200 30% 18%);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--foreground);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.5;
}

/* Форма */
.contact-form-split {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-split {
    margin-bottom: 0;
}

.full-width {
    grid-column: 1 / -1;
}

.form-label-split {
    display: block;
    margin-bottom: 8px;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-required {
    color: hsl(0, 84%, 60%);
    font-size: 0.8rem;
    margin-left: 5px;
    font-weight: normal;
}

.form-input-split {
    width: 100%;
    padding: 14px 16px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: calc(var(--radius) - 0.25rem);
    color: var(--foreground);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input-split:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(195 100% 50% / 0.1);
    background: hsl(200 30% 10%);
}

.form-hint {
    color: hsl(200 20% 50%);
    font-size: 0.85rem;
    margin-top: 6px;
    font-style: italic;
}

/* Select */
.select-wrapper-split {
    position: relative;
}

.form-select-split {
    width: 100%;
    padding: 14px 16px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: calc(var(--radius) - 0.25rem);
    color: var(--foreground);
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-select-split:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(195 100% 50% / 0.1);
    background: hsl(200 30% 10%);
}

.select-arrow-split {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper-split:focus-within .select-arrow-split {
    transform: translateY(-50%) rotate(180deg);
}

/* Textarea */
.form-textarea-split {
    width: 100%;
    padding: 14px 16px;
    background: hsl(200 30% 12%);
    border: 1px solid hsl(200 30% 18%);
    border-radius: calc(var(--radius) - 0.25rem);
    color: var(--foreground);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 150px;
    transition: var(--transition-smooth);
}

.form-textarea-split:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(195 100% 50% / 0.1);
    background: hsl(200 30% 10%);
}

.textarea-counter-split {
    text-align: right;
    color: hsl(200 20% 50%);
    font-size: 0.85rem;
    margin-top: 6px;
}

.current-chars-split {
    color: var(--foreground);
}

/* Чекбокс */
.checkbox-wrapper-split {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox-split {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-label-split {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-custom-split {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid hsl(200 30% 30%);
    border-radius: 4px;
    background: hsl(200 30% 12%);
    position: relative;
    transition: var(--transition-smooth);
}

.checkbox-custom-split::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.form-checkbox-split:checked + .checkbox-label-split .checkbox-custom-split {
    border-color: var(--primary);
    background: hsl(195 100% 50% / 0.1);
}

.form-checkbox-split:checked + .checkbox-label-split .checkbox-custom-split::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Кнопка отправки */
.form-submit-split {
    text-align: center;
    margin-top: 10px;
}

.btn-submit-split {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.btn-submit-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(195 100% 50% / 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit-split:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-submit-split:hover::before {
    left: 100%;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .contacts-split {
        gap: 30px;
    }
    
    .contact-card,
    .quick-contact,
    .form-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .contacts-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row-split {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-btn:last-child {
        grid-column: 1 / -1;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-list-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .form-card {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .btn-submit-split {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .quick-contact,
    .form-card {
        padding: 20px;
    }
    
    .quick-buttons {
        grid-template-columns: 1fr;
    }
    
    .quick-btn:last-child {
        grid-column: 1;
        max-width: none;
    }
    
    .form-input-split,
    .form-select-split,
    .form-textarea-split {
        padding: 12px 14px;
    }
}