
	/* ========== БАЗОВЫЕ НАСТРОЙКИ ========== */
	* { margin: 0; padding: 0; box-sizing: border-box; }
	
	:root {
		--bg-dark: #0a0a0f;
		--bg-card: #0f0f18;
		--bg-elevated: #151520;
		--border: #252540;
		--neon-cyan: #00f3ff;
		--neon-pink: #ff00e6;
		--neon-green: #00ff9d;
		--neon-purple: #b000ff;
		--text-primary: #f0f0ff;
		--text-secondary: #a0a0c0;
		--text-muted: #606080;
		--glow-cyan: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
		--glow-pink: 0 0 10px rgba(255, 0, 230, 0.5), 0 0 20px rgba(255, 0, 230, 0.3);
		--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	html {
		scroll-behavior: smooth;
		scroll-padding-top: 90px; /* Отступ под фиксированную шапку */
	}

	body {
		background: var(--bg-dark);
		color: var(--text-primary);
		font-family: 'Exo 2', 'Segoe UI', system-ui, sans-serif;
		line-height: 1.5;
		overflow-x: hidden;
	}

	.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
	h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
	
	.gradient-text {
		background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
		-webkit-background-clip: text; background-clip: text; color: transparent;
	}

	/* ========== ШАПКА ========== */
	header {
		position: fixed; top: 0; left: 0; right: 0;
		background: rgba(10, 10, 15, 0.95);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid rgba(0, 243, 255, 0.2);
		z-index: 1000; padding: 12px 0; transition: var(--transition);
	}
	.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
	
	.logo-wrapper {
		display: flex; align-items: center; gap: 12px;
		background: rgba(255, 255, 255, 0.05);
		backdrop-filter: blur(10px);
		padding: 8px 16px; border-radius: 8px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		transition: var(--transition); text-decoration: none;
	}
	.logo-wrapper:hover {
		background: rgba(255, 255, 255, 0.08);
		border-color: rgba(0, 243, 255, 0.3);
	}
	.logo-img { height: 36px; width: auto; filter: brightness(1.1); }
	.logo-text {
		font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600;
		color: #ffffff; letter-spacing: 1px; line-height: 1.2;
	}
	.logo-text span {
		display: block; font-size: 0.7rem; color: var(--neon-cyan);
		font-weight: 400; margin-top: 2px; letter-spacing: 1.5px;
	}

	nav ul { display: flex; gap: 32px; list-style: none; }
	nav a {
		color: var(--text-secondary); text-decoration: none; font-weight: 500;
		font-size: 0.95rem; transition: var(--transition); position: relative; padding-bottom: 4px;
	}
	nav a::after {
		content: ''; position: absolute; bottom: 0; left: 50%;
		width: 0; height: 2px; background: var(--neon-cyan);
		box-shadow: 0 0 8px var(--neon-cyan);
		transition: all 0.3s ease; transform: translateX(-50%);
	}
	nav a:hover::after, nav a.active::after { width: 100%; }
	nav a:hover { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
	
	.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--neon-cyan); }

	/* ========== ПАРТНЁРЫ ========== */
	.partners-strip {
		margin-top: 72px;
		background: linear-gradient(180deg, rgba(15, 15, 24, 0.9), rgba(10, 10, 15, 0.5));
		border-bottom: 1px solid rgba(0, 243, 255, 0.15);
		padding: 30px 0; position: relative; overflow: hidden;
	}
	.partners-strip::before {
		content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
		background-image: 
			linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
			linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
		background-size: 40px 40px; pointer-events: none;
	}

	.partners-header { text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
	.partners-title {
		font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700;
		letter-spacing: 2px; text-transform: uppercase; color: var(--text-primary);
		margin-bottom: 8px; display: inline-block;
	}
	.partners-title .title-accent {
		background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
		-webkit-background-clip: text; background-clip: text; color: transparent;
		text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
	}
	.partners-subtitle { color: var(--text-secondary); font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 20px; }
	.partners-divider {
		width: 80px; height: 2px;
		background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
		margin: 0 auto; box-shadow: 0 0 10px var(--neon-cyan);
	}

	.partners-grid {
		display: flex; justify-content: center; align-items: center;
		gap: 40px; flex-wrap: wrap; position: relative; z-index: 1;
	}
	.partner-item {
		display: flex; flex-direction: column; align-items: center; gap: 12px;
		cursor: pointer; min-width: 120px; position: relative; padding: 4px;
		border-radius: 18px; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	.partner-logo-box {
		width: 80px; height: 80px; background: rgba(255, 255, 255, 0.08);
		border-radius: 16px; display: flex; align-items: center; justify-content: center;
		font-size: 2rem; color: var(--neon-cyan); position: relative; z-index: 2;
		overflow: hidden; transition: transform 0.3s ease;
	}
	.partner-logo-box img {
		max-width: 75%; max-height: 75%; object-fit: contain;
		display: block; transition: filter 0.3s ease;
	}
	.partner-logo-box i { filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4)); }
	.partner-item::before {
		content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
		background: conic-gradient(from 0deg, transparent 0deg, transparent 300deg, #ffffff 330deg, #ffffff 360deg);
		border-radius: 18px; z-index: 1; animation: rotateBorder 3s linear infinite;
	}
	.partner-item::after {
		content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
		background: var(--bg-dark); border-radius: 16px; z-index: 1; margin: 2px;
	}
	@keyframes rotateBorder { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
	.partner-item:nth-child(1)::before { animation-delay: 0s; }
	.partner-item:nth-child(2)::before { animation-delay: 1s; }
	.partner-item:nth-child(3)::before { animation-delay: 2s; }
	.partner-item:nth-child(4)::before { animation-delay: 3s; }
	.partner-item:nth-child(5)::before { animation-delay: 4s; }
	.partner-item:nth-child(6)::before { animation-delay: 5s; }
	.partner-item:hover { transform: scale(1.1); }
	.partner-item:hover .partner-logo-box { transform: scale(1.05); }
	.partner-item:hover .partner-logo-box img { filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5)); }
	.partner-item span {
		font-size: 0.85rem; color: var(--text-secondary); font-weight: 500;
		text-align: center; line-height: 1.3; position: relative; z-index: 2;
		transition: color 0.3s ease;
	}
	.partner-item:hover span { color: var(--neon-cyan); text-shadow: 0 0 8px rgba(0, 243, 255, 0.5); }

	/* ========== КИБЕР-ЧАСЫ ========== */
	.cyber-clock {
		width: 100%; max-width: 450px; background: rgba(15, 15, 24, 0.7);
		backdrop-filter: blur(10px); border: 1px solid rgba(0, 243, 255, 0.3);
		border-radius: 12px; padding: 16px 24px; font-family: 'Rajdhani', monospace;
		position: relative; overflow: hidden; box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
	}
	.cyber-clock::before {
		content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
		background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
		animation: clockScan 3s linear infinite;
	}
	@keyframes clockScan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
	.clock-status {
		display: flex; justify-content: space-between; align-items: center;
		font-size: 0.75rem; letter-spacing: 2px; color: var(--neon-cyan);
		text-transform: uppercase; margin-bottom: 8px; text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
	}
	.clock-status-dot {
		display: inline-block; width: 8px; height: 8px; border-radius: 50%;
		background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green);
		animation: blink 1.5s ease-in-out infinite; margin-right: 6px;
	}
	@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
	.clock-time {
		font-size: 3rem; font-weight: 700; color: var(--text-primary);
		letter-spacing: 4px; text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
		line-height: 1; margin-bottom: 4px;
	}
	.clock-time .clock-seconds { color: var(--neon-pink); font-size: 2rem; opacity: 0.8; }
	.clock-date {
		font-size: 1rem; color: var(--text-secondary); letter-spacing: 2px;
		text-transform: uppercase; margin-bottom: 12px;
	}
	.clock-meta {
		display: flex; justify-content: space-between; gap: 10px;
		padding-top: 12px; border-top: 1px solid rgba(0, 243, 255, 0.2);
		font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1px;
		text-transform: uppercase; flex-wrap: wrap;
	}
	.clock-meta span { display: flex; align-items: center; gap: 4px; }
	.clock-meta span i { color: var(--neon-cyan); font-size: 0.7rem; }
	.clock-meta .online { color: var(--neon-green); text-shadow: 0 0 8px rgba(0, 255, 157, 0.4); }

	/* ========== HERO ========== */
	.hero {
		min-height: 100vh; display: flex; align-items: center;
		position: relative; overflow: hidden; padding-top: 40px;
	}
	.hero-bg {
		position: absolute; top: 0; left: 0; right: 0; bottom: 0;
		background: radial-gradient(circle at 30% 50%, rgba(0, 243, 255, 0.08), transparent 70%),
					radial-gradient(circle at 80% 80%, rgba(255, 0, 230, 0.05), transparent 60%);
		z-index: 0;
	}
	.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 60px; }
	.hero-text { flex: 1; }
	.hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.2; margin-bottom: 24px; }
	.hero-text p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 32px; max-width: 500px; }
	.hero-stats { display: flex; gap: 32px; margin-top: 32px; }
	.stat-item { text-align: left; }
	.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
	.stat-label { font-size: 0.8rem; color: var(--text-muted); }
	
	.hero-image { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; }
	.hero-image img {
		max-width: 100%; width: 450px; border-radius: 24px;
		box-shadow: 0 0 40px rgba(0, 243, 255, 0.2); animation: float 5s ease-in-out infinite;
	}
	@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

	.btn {
		display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
		background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
		border: none; border-radius: 40px; color: #fff; font-weight: 600;
		font-size: 1rem; text-decoration: none; cursor: pointer;
		transition: var(--transition); box-shadow: var(--glow-cyan);
	}
	.btn:hover { transform: translateY(-2px); box-shadow: var(--glow-pink); }

	/* ========== УСЛУГИ ========== */
	.services { padding: 100px 0; position: relative; }
	.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 16px; }
	.section-subtitle { text-align: center; color: var(--text-secondary); margin-bottom: 48px; font-size: 1rem; }
	.regulations-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
	.reg-tile {
		padding: 12px 28px; border: 1px solid var(--neon-cyan); border-radius: 40px;
		font-weight: 600; font-size: 0.9rem; color: var(--neon-cyan);
		background: rgba(0, 243, 255, 0.05); transition: var(--transition);
		cursor: pointer; animation: pulse 3s infinite;
	}
	.reg-tile:nth-child(1) { animation-delay: 0s; }
	.reg-tile:nth-child(2) { animation-delay: 0.6s; }
	.reg-tile:nth-child(3) { animation-delay: 1.2s; }
	.reg-tile:nth-child(4) { animation-delay: 1.8s; }
	.reg-tile:nth-child(5) { animation-delay: 2.4s; }
	@keyframes pulse { 0%, 100% { box-shadow: 0 0 5px var(--neon-cyan); } 50% { box-shadow: 0 0 15px var(--neon-cyan); } }
	.reg-tile:hover { background: rgba(0, 243, 255, 0.15); transform: translateY(-2px); }

	.service-well {
		background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
		margin-bottom: 24px; overflow: hidden; transition: var(--transition); position: relative;
	}
	.service-well::before {
		content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
		background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
		opacity: 0; transition: var(--transition);
	}
	.service-well:hover { border-color: var(--neon-cyan); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0, 243, 255, 0.1); }
	.service-well:hover::before, .service-well.active::before { opacity: 1; }
	.service-well.active { border-color: var(--neon-cyan); box-shadow: 0 0 25px rgba(0, 243, 255, 0.15); }
	
	.service-header {
		display: flex; align-items: center; justify-content: space-between;
		padding: 28px 32px; cursor: pointer; user-select: none; transition: var(--transition);
	}
	.service-header:hover { background: rgba(0, 243, 255, 0.03); }
	.service-header-left { display: flex; align-items: center; gap: 20px; }
	.service-icon {
		width: 60px; height: 60px; border-radius: 16px;
		display: flex; align-items: center; justify-content: center;
		font-size: 1.8rem; color: var(--neon-cyan); background: rgba(0, 243, 255, 0.1);
		border: 1px solid rgba(0, 243, 255, 0.3); flex-shrink: 0;
	}
	.service-title-group h3 { font-size: 1.4rem; margin-bottom: 4px; }
	.service-title-group .tagline { font-size: 0.85rem; color: var(--text-muted); }
	.service-toggle {
		width: 40px; height: 40px; border-radius: 50%; background: rgba(0, 243, 255, 0.1);
		border: 1px solid var(--border); display: flex; align-items: center;
		justify-content: center; transition: var(--transition); flex-shrink: 0;
	}
	.service-toggle i { color: var(--text-secondary); transition: var(--transition); }
	.service-well.active .service-toggle { background: var(--neon-cyan); border-color: var(--neon-cyan); }
	.service-well.active .service-toggle i { color: #0a0a0f; transform: rotate(180deg); }
	.service-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
	.service-well.active .service-content { max-height: 3000px; }
	.service-content-inner { padding: 0 32px 32px; border-top: 1px solid var(--border); }

	.feature-box {
		background: rgba(0, 243, 255, 0.05); padding: 15px; border-radius: 10px;
		border: 1px solid var(--border); display: flex; flex-direction: column;
		gap: 5px; transition: var(--transition); text-align: left;
	}
	.feature-box:hover { border-color: var(--neon-cyan); background: rgba(0, 243, 255, 0.08); transform: translateY(-2px); }
	.feature-box i { font-size: 1.2rem; margin-bottom: 5px; }
	.feature-box strong { color: var(--text-primary); font-size: 0.9rem; }
	.feature-box span { font-size: 0.75rem; color: var(--text-muted); line-height: 1.2; }
	
	/* АКЦЕНТНАЯ ПЛИТКА (АБОНЕНТСКАЯ ПЛАТА) */
	.feature-box-accent {
		background: linear-gradient(135deg, rgba(0, 255, 157, 0.15), rgba(0, 243, 255, 0.08));
		padding: 18px; border-radius: 12px; border: 2px solid var(--neon-green);
		display: flex; flex-direction: row; align-items: center; justify-content: space-between;
		gap: 20px; transition: var(--transition); text-align: left;
		position: relative; overflow: hidden; grid-column: 1 / -1; min-width: 100%;
	}
	.feature-box-accent::before {
		content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
		background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
		animation: glowPulse 2s ease-in-out infinite;
	}
	@keyframes glowPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
	.feature-box-accent:hover {
		border-color: var(--neon-cyan);
		background: linear-gradient(135deg, rgba(0, 255, 157, 0.2), rgba(0, 243, 255, 0.15));
		transform: translateY(-3px); box-shadow: 0 0 25px rgba(0, 255, 157, 0.4);
	}
	.feature-box-accent i {
		font-size: 1.8rem; color: var(--neon-green);
		filter: drop-shadow(0 0 6px rgba(0, 255, 157, 0.5)); margin-bottom: 0;
	}
	.feature-box-accent .accent-content { display: flex; flex-direction: column; flex: 1; }
	.feature-box-accent strong { color: var(--text-primary); font-size: 1.1rem; margin-bottom: 4px; }
	.feature-box-accent .price {
		font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700;
		color: var(--neon-green); text-shadow: 0 0 12px rgba(0, 255, 157, 0.5); line-height: 1;
	}

	.service-order-btn {
		display: inline-flex; align-items: center; justify-content: center; gap: 10px;
		padding: 14px 32px; width: 100%; max-width: 450px;
		background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
		color: #0a0a0f; text-decoration: none; font-weight: 700; font-size: 1rem;
		border-radius: 40px; transition: var(--transition);
		box-shadow: 0 4px 20px rgba(0, 255, 157, 0.4); position: relative; overflow: hidden;
	}
	.service-order-btn::before {
		content: ''; position: absolute; top: 0; left: -100%; right: 0; bottom: 0;
		width: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
		transition: left 0.5s ease;
	}
	.service-order-btn:hover::before { left: 100%; }
	.service-order-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(0, 255, 157, 0.6); }
	.service-order-btn i { font-size: 1.1rem; }

	/* ========== МОДАЛЬНЫЕ ОКНА ========== */
	.modal-overlay {
		display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
		background: rgba(10, 10, 15, 0.9); backdrop-filter: blur(8px);
		z-index: 2000; padding: 20px; overflow-y: auto;
	}
	.modal-overlay.active { display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s ease; }
	@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
	.modal-content {
		background: var(--bg-elevated); border: 1px solid var(--neon-cyan);
		border-radius: 24px; max-width: 600px; width: 100%; max-height: 90vh;
		overflow-y: auto; position: relative; box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
		animation: slideUp 0.4s ease;
	}
	@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
	.modal-close {
		position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
		background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border);
		border-radius: 50%; color: var(--text-secondary); font-size: 1.2rem;
		cursor: pointer; transition: var(--transition); display: flex;
		align-items: center; justify-content: center; z-index: 10;
	}
	.modal-close:hover {
		background: rgba(255, 0, 230, 0.1); border-color: var(--neon-pink);
		color: var(--neon-pink); transform: rotate(90deg);
	}
	.modal-header { padding: 40px 40px 20px; border-bottom: 1px solid var(--border); }
	.modal-header h2 { font-size: 1.8rem; color: var(--neon-cyan); margin: 0; }
	.modal-body { padding: 30px 40px 40px; }
	.modal-body p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; margin-bottom: 16px; }
	.modal-body ul { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; padding-left: 20px; margin-bottom: 16px; }
	.modal-body strong { color: var(--text-primary); }

	.modal-order-btn {
		display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
		background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
		color: #0a0a0f; text-decoration: none; font-weight: 700; font-size: 0.9rem;
		border-radius: 30px; margin-top: 20px; transition: var(--transition);
		box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3); border: none;
		cursor: pointer; position: relative; overflow: hidden;
	}
	.modal-order-btn::before {
		content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
		transition: left 0.5s ease;
	}
	.modal-order-btn:hover::before { left: 100%; }
	.modal-order-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 255, 157, 0.5); }
	.modal-order-btn i { font-size: 0.9rem; }

	/* ========== ФОРМА ========== */
	.form-section { padding: 80px 0 100px; }
	.form-box {
		max-width: 850px; margin: 0 auto; background: var(--bg-elevated);
		border: 1px solid var(--neon-cyan); border-radius: 24px; padding: 40px;
		position: relative; overflow: hidden; box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
	}
	.form-box::before {
		content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
		background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-green));
	}
	.form-box h3 { font-size: 1.6rem; margin-bottom: 10px; }
	.form-box .form-subtitle { color: var(--text-secondary); margin-bottom: 30px; font-size: 1rem; }
	.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
	.form-group { display: flex; flex-direction: column; gap: 8px; }
	.form-group.full-width { grid-column: 1 / -1; }
	.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
	.form-group input, .form-group select, .form-group textarea {
		background: rgba(255,255,255,0.04); border: 1px solid var(--border);
		border-radius: 12px; padding: 14px 18px; color: var(--text-primary);
		font-size: 0.95rem; transition: var(--transition); font-family: inherit;
	}
	.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
		outline: none; border-color: var(--neon-cyan); box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.15);
	}
	.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(160, 160, 192, 0.5); }
	.form-group select {
		cursor: pointer; appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0c0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
		background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
	}
	.form-group select option { background: var(--bg-elevated); color: var(--text-primary); }
	.form-group textarea { resize: vertical; min-height: 100px; }

	/* ВАЛИДАЦИЯ ПОЛЕЙ */
	.field-error {
		font-size: 0.75rem; color: #ff4444; min-height: 18px; margin-top: 4px;
		display: block; transition: var(--transition); text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
	}
	.field-success { color: var(--neon-green) !important; text-shadow: 0 0 8px rgba(0, 255, 157, 0.3) !important; }
	.form-group input.error, .form-group input.error:focus {
		border-color: #ff4444 !important; box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15) !important;
	}
	.form-group input.valid, .form-group input.valid:focus {
		border-color: var(--neon-green) !important; box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.15) !important;
	}

	/* КИБЕР-СКИДКА */
	.cyber-discount-box {
		grid-column: 1 / -1;
		background: linear-gradient(135deg, rgba(0, 255, 157, 0.08), rgba(176, 0, 255, 0.05));
		border: 2px solid transparent;
		border-image: linear-gradient(90deg, var(--neon-green), var(--neon-purple)) 1;
		border-radius: 14px; padding: 18px 20px; display: flex; align-items: center;
		justify-content: space-between; gap: 16px; cursor: pointer;
		transition: var(--transition); position: relative; overflow: hidden; flex-wrap: wrap;
	}
	.cyber-discount-box::before {
		content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
		background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.1), transparent);
		transition: left 0.6s ease;
	}
	.cyber-discount-box:hover::before { left: 100%; }
	.cyber-discount-box.active {
		background: linear-gradient(135deg, rgba(0, 255, 157, 0.15), rgba(176, 0, 255, 0.1));
		box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
	}
	.cyber-discount-left { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 200px; }
	.cyber-discount-icon {
		width: 50px; height: 50px; background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
		border-radius: 12px; display: flex; align-items: center; justify-content: center;
		font-size: 1.5rem; color: #0a0a0f; flex-shrink: 0; box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
	}
	.cyber-discount-text h4 { color: var(--text-primary); font-size: 1rem; font-weight: 700; margin-bottom: 4px; letter-spacing: 0.5px; }
	.cyber-discount-text p { color: var(--text-secondary); font-size: 0.8rem; margin: 0; }
	.cyber-discount-badge {
		background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
		color: #0a0a0f; padding: 8px 16px; border-radius: 30px; font-weight: 800;
		font-size: 0.95rem; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(0, 255, 157, 0.4); white-space: nowrap;
	}
	.cyber-discount-checkbox { display: none; }
	.cyber-discount-toggle {
		width: 52px; height: 28px; background: rgba(255, 255, 255, 0.1);
		border: 1px solid var(--border); border-radius: 14px; position: relative;
		cursor: pointer; transition: var(--transition); flex-shrink: 0;
	}
	.cyber-discount-toggle::before {
		content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
		background: var(--text-muted); border-radius: 50%; transition: var(--transition);
	}
	.cyber-discount-checkbox:checked ~ .cyber-discount-toggle {
		background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
		border-color: var(--neon-green); box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
	}
	.cyber-discount-checkbox:checked ~ .cyber-discount-toggle::before { left: 27px; background: #0a0a0f; }

	/* БОНУС */
	.cyber-bonus-box {
		grid-column: 1 / -1;
		background: linear-gradient(135deg, rgba(255, 0, 230, 0.1), rgba(0, 243, 255, 0.08));
		border: 2px solid var(--neon-pink); border-radius: 14px; padding: 0 20px;
		margin-top: 0; max-height: 0; opacity: 0; display: flex; align-items: center;
		gap: 16px; position: relative; overflow: hidden; flex-wrap: wrap;
		transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease 0.1s,
					padding 0.5s ease, margin-top 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
		transform: translateX(-50px) scale(0.95);
	}
	.cyber-bonus-box.active {
		max-height: 400px; opacity: 1; padding: 18px 20px; margin-top: 12px;
		transform: translateX(0) scale(1);
	}
	.cyber-bonus-box::before {
		content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
		background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
		animation: glowPulse 2s ease-in-out infinite;
	}
	.cyber-bonus-icon {
		width: 50px; height: 50px; background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
		border-radius: 12px; display: flex; align-items: center; justify-content: center;
		font-size: 1.5rem; color: #ffffff; flex-shrink: 0; box-shadow: 0 0 20px rgba(255, 0, 230, 0.4);
	}
	.cyber-bonus-text { flex: 1; min-width: 200px; }
	.cyber-bonus-text h4 {
		color: var(--neon-pink); font-size: 1rem; font-weight: 700;
		margin-bottom: 4px; letter-spacing: 0.5px; text-shadow: 0 0 10px rgba(255, 0, 230, 0.4);
	}
	.cyber-bonus-text p { color: var(--text-secondary); font-size: 0.8rem; margin: 0; line-height: 1.4; }
	.cyber-bonus-badge {
		background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
		color: #ffffff; padding: 10px 20px; border-radius: 30px; font-weight: 800;
		font-size: 0.95rem; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(255, 0, 230, 0.4);
		white-space: nowrap; text-transform: uppercase;
	}
	.cyber-bonus-timer {
		grid-column: 1 / -1; display: flex; align-items: center; justify-content: center;
		gap: 8px; padding: 10px 16px; background: rgba(255, 0, 230, 0.08);
		border: 1px solid rgba(255, 0, 230, 0.3); border-radius: 8px; margin-top: 12px;
		font-family: 'Rajdhani', monospace; font-size: 0.9rem; color: var(--neon-pink);
		letter-spacing: 1px; text-shadow: 0 0 8px rgba(255, 0, 230, 0.4);
		animation: timerPulse 2s ease-in-out infinite;
	}
	.cyber-bonus-timer i { font-size: 1rem; color: var(--neon-pink); }
	.cyber-bonus-timer .timer-value {
		font-weight: 700; font-size: 1.1rem; color: var(--text-primary);
		text-shadow: 0 0 10px rgba(255, 0, 230, 0.5);
	}
	.cyber-bonus-timer.warning {
		border-color: #ff3333; background: rgba(255, 50, 50, 0.12);
		animation: warningPulse 1s ease-in-out infinite;
	}
	.cyber-bonus-timer.warning .timer-value {
		color: #ff3333; text-shadow: 0 0 15px rgba(255, 50, 50, 0.8);
		animation: timerBlink 1s ease-in-out infinite;
	}
	.cyber-bonus-timer.warning i { color: #ff3333; }
	@keyframes warningPulse {
		0%, 100% { box-shadow: 0 0 10px rgba(255, 50, 50, 0.3); border-color: rgba(255, 50, 50, 0.5); }
		50% { box-shadow: 0 0 25px rgba(255, 50, 50, 0.6); border-color: rgba(255, 50, 50, 1); }
	}
	@keyframes timerBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
	@keyframes timerPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }

	.channels-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 14px; display: block; }
	.channels-group { display: flex; flex-wrap: wrap; gap: 14px; }
	.channel-check {
		display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03);
		border: 1px solid var(--border); border-radius: 12px; padding: 12px 18px;
		cursor: pointer; transition: var(--transition); user-select: none;
	}
	.channel-check:hover { border-color: var(--neon-cyan); background: rgba(0, 243, 255, 0.06); }
	.channel-check input[type="checkbox"] { display: none; }
	.channel-check .checkmark {
		width: 22px; height: 22px; border: 2px solid var(--border); border-radius: 5px;
		display: flex; align-items: center; justify-content: center;
		transition: var(--transition); flex-shrink: 0;
	}
	.channel-check .checkmark i {
		font-size: 0.75rem; color: #0a0a0f; opacity: 0; transform: scale(0); transition: var(--transition);
	}
	.channel-check input[type="checkbox"]:checked + .checkmark { background: var(--neon-cyan); border-color: var(--neon-cyan); }
	.channel-check input[type="checkbox"]:checked + .checkmark i { opacity: 1; transform: scale(1); }
	.channel-check span { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }
	.channel-check .channel-icon {
		width: 30px; height: 30px; border-radius: 8px; display: flex;
		align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0;
	}
	.channel-check .channel-icon.phone { background: linear-gradient(135deg, var(--neon-green), #00cc7a); color: #0a0a0f; }
	.channel-check .channel-icon.email { background: linear-gradient(135deg, var(--neon-purple), #8a00cc); color: #fff; }
	.channel-check .channel-icon.maks { background: linear-gradient(135deg, var(--neon-cyan), #00ccff); color: #0a0a0f; }
	
	.messenger-buttons { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
	.btn-messenger {
		flex: 1; min-width: 200px; display: flex; align-items: center; justify-content: center;
		gap: 10px; padding: 16px 24px; border-radius: 40px; font-weight: 600;
		font-size: 1rem; border: none; cursor: pointer; transition: var(--transition);
		color: #0a0a0f; text-decoration: none;
	}
	.btn-max { background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple)); box-shadow: var(--glow-cyan); }
	.btn-max:hover { transform: translateY(-2px); box-shadow: var(--glow-pink); }
	.btn-tg { background: linear-gradient(135deg, #229ED9, #0088cc); box-shadow: 0 0 15px rgba(34, 158, 217, 0.4); }
	.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(34, 158, 217, 0.6); }
	.btn-email { background: linear-gradient(135deg, var(--neon-green), #00cc7a); box-shadow: 0 0 15px rgba(0, 255, 157, 0.4); }
	.btn-email:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(0, 255, 157, 0.6); }
	
	.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 18px; text-align: center; }

		/* ========== КАРУСЕЛЬ "НАМ ДОВЕРЯЮТ" ========== */
		.trust-section {
			padding: 80px 0 60px;
			background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 15, 24, 0.8) 100%);
			border-top: 1px solid rgba(0, 243, 255, 0.1);
			overflow: hidden;
		}

		.trust-title {
			text-align: center; font-size: 2rem; font-weight: 700; letter-spacing: 2px;
			text-transform: uppercase; color: var(--text-primary); margin-bottom: 8px;
		}
		.trust-title::after, .trust-title::before { content: none !important; display: none !important; }
		.trust-divider {
			width: 80px; height: 2px;
			background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
			margin: 0 auto 40px; box-shadow: 0 0 10px var(--neon-cyan); display: block;
		}

		.carousel-wrapper { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 40px; }

		.carousel-track {
			display: flex;
			flex-wrap: nowrap; /* 🔑 КЛЮЧЕВОЕ: запрещает перенос на новую строку */
			gap: 20px;
			overflow-x: auto;
			scroll-behavior: smooth;
			scrollbar-width: none;
			-ms-overflow-style: none;
			padding: 10px 0;
		}
		.carousel-track::-webkit-scrollbar { display: none; }

		.carousel-item {
			flex: 0 0 calc((100% - 120px) / 7); /* 7 видимых элементов */
			min-width: 140px;
			background: var(--bg-card);
			border: 1px solid var(--border);
			border-radius: 12px;
			padding: 24px 16px;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			gap: 12px;
			transition: var(--transition);
			cursor: pointer;
			user-select: none;
		}
		.carousel-item:hover { border-color: var(--neon-cyan); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0, 243, 255, 0.15); }

		.carousel-item-icon {
			width: 64px; height: 64px;
			background: rgba(255, 255, 255, 0.9);
			border-radius: 12px;
			display: flex; align-items: center; justify-content: center;
			font-size: 1.8rem; color: var(--neon-cyan);
			overflow: hidden; transition: var(--transition);
		}
		.carousel-item-icon:not(:has(img)) { background: rgba(0, 243, 255, 0.1); }
		.carousel-item-icon img { width: 85%; height: 85%; object-fit: contain; }
		.carousel-item:hover .carousel-item-icon { transform: scale(1.1); box-shadow: 0 0 15px rgba(0, 243, 255, 0.4); }

		.carousel-item-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); text-align: center; line-height: 1.3; }
		.carousel-item-desc { font-size: 0.7rem; color: var(--text-muted); text-align: center; line-height: 1.3; }

		.carousel-btn {
			position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
			background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 50%;
			color: var(--neon-cyan); font-size: 1.2rem; cursor: pointer; z-index: 10;
			transition: var(--transition); display: flex; align-items: center; justify-content: center;
		}
		.carousel-btn:hover { background: var(--neon-cyan); color: var(--bg-dark); border-color: var(--neon-cyan); }
		.carousel-btn.prev { left: 0; }
		.carousel-btn.next { right: 0; }

		@media (max-width: 1100px) { .carousel-item { flex: 0 0 calc((100% - 80px) / 5); min-width: 120px; } }
		@media (max-width: 768px) {
			.carousel-item { flex: 0 0 calc((100% - 40px) / 3); min-width: 100px; }
			.carousel-wrapper { padding: 0 20px; }
			.trust-title { font-size: 1.4rem; }
		}
		@media (max-width: 480px) { .carousel-item { flex: 0 0 calc(50% - 10px); min-width: 90px; } }
		
	/* ========== ИНДИКАТОР ДНЕЙ НЕДЕЛИ ========== */
	.weekdays-bar { display: flex; justify-content: space-between; margin-bottom: 24px; padding: 0 10px; }
	.weekday-item { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; cursor: default; }
	.weekday-name {
		font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; font-weight: 700;
		color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; transition: var(--transition);
	}
	.weekday-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: var(--transition); }
	
	/* Активный день — ВЫХОДНОЙ (розовый, как надпись "Выходной") */
	.weekday-item.active.closed .weekday-name {
		color: var(--neon-pink);
		text-shadow: 0 0 10px rgba(255, 0, 230, 0.5);
	}
	.weekday-item.active.closed .weekday-dot {
		background: var(--neon-pink);
		box-shadow: 0 0 10px var(--neon-pink);
		animation: pulseDot 1.5s infinite;
	}
	
	@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }
	@media (max-width: 480px) { .weekdays-bar { gap: 4px; padding: 0; } .weekday-name { font-size: 0.7rem; letter-spacing: 0; } }

	/* ========== ФУТЕР ========== */
	footer {
		background: linear-gradient(180deg, var(--bg-dark) 0%, #050508 100%);
		border-top: 1px solid rgba(0, 243, 255, 0.2); padding: 60px 0 30px;
		position: relative; overflow: hidden;
	}
	footer::before {
		content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
		background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
		box-shadow: 0 0 20px var(--neon-cyan);
	}
	
	.footer-grid {
		display: grid;
		grid-template-columns: 1.3fr 1fr 1fr 1fr; /* 4 колонки */
		gap: 40px;
		margin-bottom: 40px;
	}

	/* Адаптив для планшетов */
	@media (max-width: 968px) {
		.footer-grid {
			grid-template-columns: 1fr 1fr;
			gap: 30px;
		}
	}

	/* Адаптив для мобильных */
	@media (max-width: 768px) {
		.footer-grid {
			grid-template-columns: 1fr;
			gap: 28px;
		}
	}
	
	.footer-col h4 {
		color: var(--neon-cyan); font-size: 1rem; font-weight: 700; letter-spacing: 1.5px;
		text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px;
		border-bottom: 1px solid rgba(0, 243, 255, 0.2); position: relative;
	}
	.footer-col h4::after {
		content: ''; position: absolute; bottom: -1px; left: 0; width: 40px; height: 1px;
		background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan);
	}
	.footer-brand { display: flex; flex-direction: column; gap: 16px; }
	.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
	.footer-logo img { height: 40px; filter: brightness(1.1) drop-shadow(0 0 8px rgba(0, 243, 255, 0.4)); }
	.footer-logo-text { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: #ffffff; letter-spacing: 1px; line-height: 1.2; }
	.footer-logo-text span { display: block; font-size: 0.7rem; color: var(--neon-cyan); font-weight: 400; letter-spacing: 1.5px; }
	.footer-description { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; max-width: 320px; }
	.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
	.footer-badge {
		padding: 8px 16px;           /* Умеренное увеличение */
		background: rgba(0, 243, 255, 0.1);
		border: 1px solid rgba(0, 243, 255, 0.3);
		border-radius: 6px;
		font-size: 0.8rem;           /* Крупнее старого (0.7), но не гигантский */
		font-weight: 700;
		color: var(--neon-cyan);
		letter-spacing: 0.8px;
		text-transform: uppercase;
		box-shadow: 0 0 10px rgba(0, 243, 255, 0.15);
		display: inline-flex;
		align-items: center;
		gap: 6px;
		text-decoration: none;       /* Если обернете в <a> */
		transition: var(--transition);
	}

	/* Hover-эффект для кликабельности */
	.footer-badge:hover {
		background: rgba(0, 243, 255, 0.2);
		border-color: var(--neon-cyan);
		box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
	}
	.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
	.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-secondary); font-size: 0.85rem; line-height: 1.4; }
	.footer-contact-list li i { color: var(--neon-cyan); font-size: 1rem; margin-top: 2px; flex-shrink: 0; width: 18px; text-align: center; }
	.footer-contact-list li a { color: var(--text-secondary); text-decoration: none; transition: var(--transition); }
	.footer-contact-list li a:hover { color: var(--neon-cyan); text-shadow: 0 0 8px rgba(0, 243, 255, 0.5); }
	.footer-contact-list li strong { color: var(--text-primary); font-weight: 600; display: block; margin-bottom: 2px; font-size: 0.8rem; letter-spacing: 0.5px; }
	.footer-schedule { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
	.footer-schedule li { display: flex; justify-content: space-between; color: var(--text-secondary); font-size: 0.85rem; padding-bottom: 8px; border-bottom: 1px dashed rgba(255, 255, 255, 0.05); }
	.footer-schedule li span:first-child { color: var(--text-primary); font-weight: 500; }
	.footer-schedule li span:last-child { color: var(--neon-green); font-weight: 600; }
	.footer-schedule li.closed span:last-child { color: var(--neon-pink); }
	.footer-bottom {
		border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 24px;
		display: flex; justify-content: space-between; align-items: center;
		flex-wrap: wrap; gap: 16px; color: var(--text-muted); font-size: 0.75rem;
	}
	.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
	.footer-bottom-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
	.footer-bottom-links a:hover { color: var(--neon-cyan); }

	/* ========== АДАПТИВ ========== */
	@media (max-width: 968px) {
		.hero-inner { flex-direction: column; text-align: center; }
		.hero-text p { margin-left: auto; margin-right: auto; }
		.hero-stats { justify-content: center; }
		.logo-text { font-size: 0.95rem; }
		.hero-image { width: 100%; max-width: 500px; margin: 0 auto; }
		.cyber-clock { max-width: 100%; }
		.hero-image img { width: 100%; max-width: 450px; }
		.footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
	}
	
	@media (max-width: 768px) {
		.header-inner { gap: 8px; padding: 0 12px; }
		.logo-wrapper { flex: 1 1 auto; min-width: 0; padding: 6px 8px; }
		.logo-img { height: 30px; flex-shrink: 0; }
		.logo-text { font-size: 0.85rem; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
		.logo-text span { display: none; }
		.menu-toggle { flex-shrink: 0; font-size: 1.4rem; }
		nav {
			position: absolute; top: 100%; left: 0; right: 0;
			background: var(--bg-dark); border-bottom: 1px solid var(--neon-cyan);
			max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
		}
		nav.active { max-height: 300px; }
		nav ul { flex-direction: column; padding: 20px; gap: 16px; text-align: center; }
		
		.hero-text h1 { font-size: 1.8rem; }
		.hero-stats { flex-direction: column; gap: 16px; align-items: center; }
		.stat-item { text-align: center; }
		
		.service-header { padding: 20px; }
		.service-content-inner { padding: 0 20px 24px; }
		.service-content-inner > div { flex-direction: column !important; }
		
		.form-box { padding: 24px; }
		.form-grid { grid-template-columns: 1fr; }
		.messenger-buttons { flex-direction: column; }
		
		.partners-grid { gap: 20px; }
		.partner-logo-box { width: 60px; height: 60px; }
		.partner-item { min-width: 90px; }
		.partners-title { font-size: 1.5rem; letter-spacing: 1px; }
		.partners-subtitle { font-size: 0.85rem; }
		.partners-header { margin-bottom: 30px; }
		.reg-tile { padding: 8px 18px; font-size: 0.8rem; }
		
		.modal-header { padding: 30px 20px 20px; }
		.modal-body { padding: 20px; }
		
		.clock-time { font-size: 2.2rem; letter-spacing: 2px; }
		.clock-time .clock-seconds { font-size: 1.5rem; }
		.clock-date { font-size: 0.85rem; }
		.clock-meta { font-size: 0.65rem; }
		.cyber-clock { padding: 12px 16px; }
		
		.cyber-discount-box { flex-direction: column; align-items: flex-start; padding: 16px; }
		.cyber-discount-left { width: 100%; }
		.cyber-discount-badge { align-self: flex-start; }
		
		.cyber-bonus-box { flex-direction: column; align-items: flex-start; padding: 16px; }
		.cyber-bonus-badge { align-self: flex-start; }
		
		footer { padding: 40px 0 20px; }
		.footer-grid { grid-template-columns: 1fr; gap: 28px; }
		.footer-bottom { flex-direction: column; text-align: center; }
	}

	@media (max-width: 480px) {
		.logo-img { height: 26px; }
		.logo-wrapper { padding: 5px 8px; }
		.hero-text h1 { font-size: 1.6rem; }
		.section-title { font-size: 1.6rem; }
		.clock-time { font-size: 1.8rem; }
		.clock-meta { flex-direction: column; gap: 4px; }
	}
