:root {
	--primary-bg: #0a1928;
	--secondary-bg: rgba(15, 30, 45, 0.6);
	--accent-blue: #4da6ff;
	--accent-cyan: #00bfff;
	--text-primary: #ffffff;
	--text-secondary: #a0b8d0;
	--text-muted: #89a9cc;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--primary-bg);
	min-height: 100vh;
	color: var(--text-primary);
	line-height: 1.6;
	position: relative;
	overflow-x: hidden;
}

/* Технологичный фон */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(64, 128, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(64, 128, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
	z-index: -1;
}

body::after {
	content: '';
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(0, 160, 255, 0.05) 0%, transparent 50%);
	animation: rotate 60s linear infinite;
	pointer-events: none;
	z-index: -1;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Шапка с логотипом */
.header-section {
	padding: 2rem 0;
	margin-bottom: 2rem;
}

.header-content {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.logo-container {
	flex-shrink: 0;
}

.logo-container img {
	width: 464px;
	height: 115px;
	max-width: 100%;
	height: auto;
	display: block;
}

.header-info {
	flex: 1;
	min-width: 280px;
}

.header-title {
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
	margin-bottom: 0.75rem;
}

.header-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.keyword {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(10, 25, 40, 0.8);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(0, 191, 255, 0.3);
	border-radius: 100px;
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
}

.keyword i {
	font-size: 0.7rem;
	color: var(--accent-cyan);
}

/* Индикатор статуса */
.status-section {
	text-align: center;
	margin-bottom: 2rem;
}

.status-indicator {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(0, 212, 170, 0.1);
	border: 1px solid rgba(0, 212, 170, 0.3);
	border-radius: 100px;
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
	color: #00d4aa;
}

.status-dot {
	width: 8px;
	height: 8px;
	background: #00d4aa;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

/* Карточки товаров */
.products-section {
	margin: 3rem 0;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2.5rem;
	font-weight: 600;
}

.section-title span {
	color: var(--accent-blue);
	border-bottom: 2px solid rgba(77, 166, 255, 0.3);
}

.product-card {
	background: var(--secondary-bg);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(77, 166, 255, 0.15);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.3s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
	transform: translateY(-5px);
	border-color: rgba(77, 166, 255, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-image {
	width: 100%;
	height: 250px;
	object-fit: contain;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	background: rgba(10, 25, 40, 0.5);
	padding: 1rem;
}

.product-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.product-description {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

/* Кнопки маркетплейсов */
.marketplace-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.marketplace-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.9rem 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: 2px solid transparent;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-primary);
}

.marketplace-btn:hover {
	transform: scale(1.02);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(77, 166, 255, 0.3);
}

.marketplace-btn img {
	height: 24px;
	width: auto;
}

.marketplace-btn.ozon {
	background: linear-gradient(135deg, #005bff 0%, #00d4aa 100%);
}

.marketplace-btn.wildberries {
	background: linear-gradient(135deg, #cb11ab 0%, #ff119d 100%);
}

.marketplace-btn.yandex {
	background: linear-gradient(135deg, #fc3f1d 0%, #ffcc00 100%);
}

.marketplace-btn.avito {
    background: linear-gradient(135deg, #00AA00 0%, #98D64B 100%);
}

.marketplace-btn.sber {
	background: linear-gradient(135deg, #21a038 0%, #00d4aa 100%);
}

/* Неактивная кнопка */
.marketplace-btn.disabled,
.marketplace-btn[disabled] {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed;
    opacity: 0.4;
    pointer-events: none;
}

.marketplace-btn.disabled:hover,
.marketplace-btn[disabled]:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.marketplace-btn.disabled i,
.marketplace-btn[disabled] i {
    opacity: 0.5;
}
/* Разделитель */
.divider {
	width: 100px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
	margin: 3rem auto;
}

/* Форма обратной связи */
.contact-section {
	margin: 4rem 0;
}

.contact-card {
	background: var(--secondary-bg);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(77, 166, 255, 0.15);
	border-radius: 20px;
	padding: 2.5rem;
	max-width: 600px;
	margin: 0 auto;
}

.contact-title {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.contact-subtitle {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.form-control {
	background: rgba(10, 25, 40, 0.6);
	border: 1px solid rgba(77, 166, 255, 0.2);
	border-radius: 10px;
	padding: 0.9rem 1.2rem;
	color: var(--text-primary);
	margin-bottom: 1.2rem;
}

.form-control:focus {
	background: rgba(10, 25, 40, 0.8);
	border-color: var(--accent-blue);
	box-shadow: 0 0 0 0.2rem rgba(77, 166, 255, 0.15);
	color: var(--text-primary);
}

.form-control::placeholder {
	color: var(--text-muted);
}

.btn-submit {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
	border: none;
	border-radius: 10px;
	color: white;
	font-weight: 600;
	font-size: 1.05rem;
	transition: all 0.3s;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(77, 166, 255, 0.4);
}

/* Яндекс Форма */
.yandex-form-wrapper {
    margin-top: 1.5rem;
    padding: 1.5rem;  /* ← Добавьте это */
    border-radius: 16px;
    overflow: hidden;
    background: #121212;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.yandex-form-iframe {
    width: 100%;
    min-height: 310px;
    border: none;
    display: block;
    background: #121212;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .yandex-form-wrapper {
        background: #000000 !important;;  /* Черный фон для мобильных */
        padding: 1rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        border-radius: 12px;
    }
    
    .yandex-form-iframe {
        min-height: 240px;  /* Уменьшаем высоту на мобильных */
        background: #000000;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
}

/* Футер */
.footer {
	text-align: center;
	padding: 2rem 0;
	color: var(--text-muted);
	font-size: 0.9rem;
	border-top: 1px solid rgba(77, 166, 255, 0.1);
	margin-top: 3rem;
}

.footer-email {
	color: var(--accent-blue);
	text-decoration: none;
	font-weight: 500;
}

.footer-email:hover {
	text-decoration: underline;
}

/* Анимации */
.fade-up {
	animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Адаптивность */
@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		text-align: center;
	}

	.logo-container img {
		width: 100%;
		max-width: 464px;
		height: auto;
	}

	.header-keywords {
		justify-content: center;
	}

	.product-card {
		padding: 1.5rem;
	}

	.product-image {
		height: 200px;
	}

	.contact-card {
		padding: 1.5rem;
	}

	.keyword {
		font-size: 0.75rem;
		padding: 0.3rem 0.8rem;
	}
}