* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --secondary: #00d4ff;
    --accent: #ff6b35;
    --dark: #0a1628;
    --light: #f8fafc;
    --gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light);
    color: var(--dark);
    position: relative;
}

section {
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0a1628 100%);
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    transition: color 0.3s;
}

header.scrolled .logo-text {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

header.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

header.scrolled .header-phone {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

header.scrolled .mobile-menu span {
    background: var(--dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0a1628 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
    color: var(--secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
}

.fridge-icon {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    color: white;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    border-radius: inherit;
    display: block;
    padding: 18px 18px 0;
    z-index: 2;
    filter:
        drop-shadow(0 20px 45px rgba(0, 0, 0, 0.25))
        drop-shadow(0 0 35px rgba(0, 212, 255, 0.18));
}

.hero-photo-fallback {
    position: relative;
    z-index: 3;
}

.fridge-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0.35) 100%);
    z-index: 0;
    pointer-events: none;
}

.fridge-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 20px;
    right: -60px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 60px;
    left: -80px;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: -20px;
    right: -40px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.floating-card h4 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 5px;
}

.floating-card p {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow-x: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--light);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.1);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light);
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.service-price span:first-child {
    font-size: 14px;
    color: #64748b;
}

.service-price strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: white;
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.brand-item {
    padding: 20px 40px;
    background: var(--light);
    border-radius: 16px;
    font-size: 24px;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.brand-item:hover {
    color: var(--primary);
    transform: scale(1.05);
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.advantages .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.advantages .section-title {
    color: white;
}

.advantages .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.4);
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin: 0 auto 30px;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
    border: 4px solid var(--primary);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-step p {
    color: #64748b;
    max-width: 200px;
    margin: 0 auto;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--light);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.review-card.hidden {
    display: none !important;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 20px;
}

.review-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.review-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.review-info span {
    font-size: 14px;
    color: #94a3b8;
}

/* Pagination / Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-container .btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 30px;
}

.load-more-container .btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* =========================================
   PREMIUM NEON REVIEW SECTION (Dark Theme)
========================================= */
.neon-review-section {
    background-color: #050d1a; 
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.neon-review-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.neon-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.neon-header {
    text-align: center;
    margin-bottom: 40px;
}

.neon-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2), inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.neon-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.neon-rules-card {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.neon-rules-card.unlocked {
    padding: 20px 40px;
    opacity: 0.5;
    transform: scale(0.98);
}
.neon-rules-card.unlocked .rules-content p,
.neon-rules-card.unlocked .rules-grid {
    display: none;
}
.neon-rules-card.unlocked .swipe-unlock-wrapper {
    display: none;
}

.rules-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rules-icon {
    font-size: 24px;
    color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary);
}

.rules-top h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.rules-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 25px;
}

.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.rule-item i {
    color: #00d4ff; 
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 102, 255, 0.6);
}

.rule-item span strong {
    color: white;
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

/* SWIPE TO UNLOCK Слайдер */
.swipe-unlock-wrapper {
    width: 100%;
    margin-top: 20px;
}

.swipe-track {
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.5);
    touch-action: none;
}

.swipe-bg-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgba(0, 212, 255, 0.15);
    z-index: 1;
}

.swipe-text {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    transition: opacity 0.3s;
    margin-left: 60px; 
    margin-right: 15px;
    text-align: center;
    width: 100%;
}

.swipe-thumb {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: grab;
    z-index: 3;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    transition: transform 0.1s;
}

.swipe-thumb:active { cursor: grabbing; }

.swipe-thumb::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    opacity: 0;
    animation: neonPulse 2s infinite;
}
@keyframes neonPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Форма (Изначально скрыта) */
.neon-form-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.neon-form-wrapper.visible {
    max-height: 800px;
    opacity: 1;
    margin-top: 30px;
}

.neon-form {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.1);
}

.neon-inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.neon-input-group {
    position: relative;
    margin-bottom: 30px;
}

.neon-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 0;
    color: white;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    position: relative;
    z-index: 2;
}

.textarea-group .neon-input {
    min-height: 100px;
    resize: vertical;
}

.neon-label {
    position: absolute;
    top: 15px;
    left: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 1;
}

.neon-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.neon-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
    transition: width 0.4s ease;
}

.neon-input:focus ~ .neon-label,
.neon-input:not(:placeholder-shown) ~ .neon-label {
    top: -12px;
    font-size: 12px;
    color: var(--secondary);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.neon-input:focus ~ .neon-line::after {
    width: 100%;
}

.neon-rating-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.neon-rating-text {
    color: white;
    font-weight: 600;
}
.neon-stars i {
    color: rgba(255, 255, 255, 0.1);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
}
.neon-stars i.active {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}
.neon-stars i:hover { transform: scale(1.2); }

.neon-submit-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-submit-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), inset 0 0 10px rgba(0, 212, 255, 0.2);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.8);
}

/* =========================================
   КАСТОМНАЯ НЕОНОВАЯ ВАЛИДАЦИЯ ОШИБОК
========================================= */
.neon-error-msg {
    color: #ff2a5f;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    bottom: -22px;
    left: 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 0 8px rgba(255, 42, 95, 0.6);
}

.neon-input-group.has-error .neon-error-msg {
    opacity: 1;
    transform: translateY(0);
}

.neon-input-group.has-error .neon-line {
    background: rgba(255, 42, 95, 0.2);
}

.neon-input-group.has-error .neon-line::after {
    background: #ff2a5f;
    box-shadow: 0 0 10px #ff2a5f;
    width: 100%;
}

.neon-input-group.has-error .neon-label {
    color: #ff2a5f;
    text-shadow: 0 0 8px rgba(255, 42, 95, 0.5);
}

.neon-input-group.has-error .neon-input {
    color: #ff2a5f;
}

.shake-error {
    animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.cta-phone:hover {
    transform: scale(1.05);
}

.cta .btn {
    background: white;
    color: var(--primary);
}

.cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark);
}

.contact .section-tag {
    background: rgba(0, 102, 255, 0.2);
}

.contact .section-title {
    color: white;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p,
.contact-item a {
    font-size: 20px;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--secondary);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* Footer */
footer {
    background: #050d1a;
    padding: 40px 0;
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

footer a {
    color: var(--secondary);
    text-decoration: none;
}

/* TOS Page Styles */
.tos-page {
    background: var(--light);
    padding: 120px 0 80px;
    min-height: 100vh;
}
.tos-container {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
}
.tos-header {
    text-align: center;
    margin-bottom: 50px;
}
.tos-header h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}
.tos-header p {
    color: #64748b;
    font-size: 16px;
}
.tos-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin: 40px 0 15px;
    font-weight: 700;
}
.tos-content p, .tos-content li {
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
}
.tos-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: transform 0.3s;
}
.back-btn:hover {
    transform: translateX(-5px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.2) inset;
    transition: bottom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
    opacity: 0;
}

.cookie-banner.show {
    bottom: 30px;
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

.cookie-text h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 700;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 1px dashed var(--secondary);
    transition: all 0.3s ease;
}

.cookie-text a:hover {
    color: white;
    border-bottom-color: white;
}

.cookie-banner .btn {
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: phonePulse 2s infinite;
}
@keyframes phonePulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

/* Mobile menu overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow-x: hidden;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
}

.mobile-nav a:hover {
    color: var(--secondary);
}

.mobile-nav .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav .btn {
    margin-top: 20px;
}

/* Snowflake animation */
.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 42px;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        margin-top: 40px;
    }
    .stats-grid, .services-grid, .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    .process-steps::before {
        display: none;
    }
    .reviews-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .nav-links, .header-phone { display: none !important; }
    .mobile-menu { display: flex !important; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-content { padding: 40px 0; gap: 30px; }
    .hero-text h1 { font-size: 28px; line-height: 1.2; }
    .hero-text p { font-size: 15px; margin-bottom: 25px; }
    .hero-badges { gap: 10px; margin-bottom: 25px; }
    .badge { padding: 8px 14px; font-size: 13px; }
    .hero-buttons { flex-direction: column; gap: 12px; width: 100%; }
    .btn { padding: 15px 25px; font-size: 14px; width: 100%; justify-content: center; }
    .section-header { margin-bottom: 40px; }
    .section-tag { padding: 8px 16px; font-size: 12px; }
    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 15px; }
    .services, .advantages, .process, .reviews, .cta, .contact { padding: 60px 0; }
    .services-grid, .advantages-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card, .advantage-card, .review-card, .contact-form { padding: 25px; }
    .service-icon, .advantage-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 16px; }
    .service-card h3, .advantage-card h3, .process-step h3 { font-size: 18px; }
    .service-price strong { font-size: 24px; }
    .brands { padding: 50px 0; }
    .brands-grid { gap: 15px; }
    .brand-item { padding: 12px 20px; font-size: 16px; }
    .step-number { width: 80px; height: 80px; font-size: 32px; margin-bottom: 20px; }
    .stats { padding: 50px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .stat-card { padding: 25px 15px; }
    .stat-number { font-size: 36px; }
    .stat-label { font-size: 13px; }
    .cta h2 { font-size: 26px; }
    .cta p { font-size: 16px; }
    .cta-phone { font-size: 28px; }
    .contact-grid { gap: 40px; }
    .contact-item { gap: 15px; }
    .contact-icon { width: 50px; height: 50px; font-size: 20px; }
    .contact-item p, .contact-item a { font-size: 16px; }
    .form-group input, .form-group textarea { padding: 14px 18px; font-size: 15px; }
    .floating-card { display: none !important; }
    .hero-image { overflow: hidden; max-width: 100%; }
    .hero-image-wrapper { width: 280px; height: 360px; max-width: 100%; }
    .hero-photo { padding: 0; object-fit: cover; object-position: 50% 85%; }
    .fridge-icon { font-size: 90px; border-radius: 20px; }
    footer { padding: 30px 0; }
    footer p { font-size: 13px; }
    
    .cookie-banner {
        flex-direction: column;
        border-radius: 25px;
        text-align: center;
        bottom: -250px;
        padding: 20px;
    }
    .cookie-content { flex-direction: column; gap: 10px; }
    .cookie-banner .btn { width: 100%; }
    
    /* Neon Review Responsive */
    .rules-grid { grid-template-columns: 1fr; }
    .neon-inputs-row { grid-template-columns: 1fr; gap: 0; }
    .neon-rules-card { padding: 25px; }
    .neon-form { padding: 25px; }
    .neon-title { font-size: 28px; }
    
    .swipe-text {
        font-size: 12px;
        margin-left: 55px;
    }
    
    .tos-container { padding: 30px 20px; }
    .tos-header h1 { font-size: 26px; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 24px; }
    .hero-photo { padding: 0; object-fit: cover; object-position: 50% 88%; }
    .hero-image-wrapper { width: 260px; height: 340px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 42px; }
    .cta-phone { font-size: 24px; word-break: break-all; }
    .logo-text { font-size: 18px; }
    .logo-icon { width: 40px; height: 40px; font-size: 18px; }
}