/* Custom Styles - Уникальный дизайн с современными шрифтами */

/* === Современные шрифты === */
body {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.01em;
}

/* Заголовки используем Inter */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* === Улучшенная типографика === */
.h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 700;
	color: #FFD700;
	margin-bottom: 1.5rem;
}

.h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #FFD700;
}

.h4 {
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: #FFD700;
}

p {
	font-size: clamp(1rem, 1.1rem, 1.125rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.2rem;
}

strong, b {
	font-weight: 600;
	color: #FFD700;
}

/* === Уникальные кнопки === */
.btn {
	font-family: 'Inter', sans-serif !important;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border-radius: 12px;
	padding: 16px 32px;
	font-size: 0.95rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-yellow {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #000;
	border: none;
	box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-yellow:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
	background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-transparent {
	background: rgba(255, 215, 0, 0.1);
	border: 2px solid #FFD700;
	color: #FFD700;
	backdrop-filter: blur(10px);
}

.btn-transparent:hover {
	background: rgba(255, 215, 0, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

/* === Уникальный хедер === */
.header {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	padding: 1rem 0;
}

.main-list a {
	font-family: 'Inter', sans-serif !important;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
	position: relative;
}

.main-list a:hover {
	color: #FFD700;
	transform: translateY(-1px);
}

.main-list a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #FFD700, #FFA500);
	transition: width 0.3s ease;
}

.main-list a:hover::after {
	width: 100%;
}

/* === Уникальные карточки === */
.features-item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 215, 0, 0.2);
	border-radius: 20px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.features-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #FFD700, transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.features-item:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 215, 0, 0.4);
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.features-item:hover::before {
	opacity: 1;
}

/* === Уникальный hero раздел === */
.hero {
	background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.hero-content {
	position: relative;
	z-index: 2;
}

/* === Уникальные отзывы === */
.reviews-item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(255, 215, 0, 0.15);
	border-radius: 16px;
	padding: 1.5rem;
	backdrop-filter: blur(8px);
	transition: all 0.3s ease;
}

.reviews-item:hover {
	border-color: rgba(255, 215, 0, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.reviews-item__name {
	font-family: 'Inter', sans-serif !important;
	font-weight: 600;
	color: #FFD700;
}

/* === Уникальный футер === */
.footer {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	padding: 3rem 0 2rem;
}

.footer-list a {
	font-family: 'Inter', sans-serif !important;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.footer-list a:hover {
	color: #FFD700;
}

/* === Анимации и эффекты === */
@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

.features-item__icon {
	animation: float 4s ease-in-out infinite;
}

@keyframes glow {
	0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
	50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.btn-yellow:focus {
	animation: glow 2s ease-in-out infinite;
}

/* === Адаптивность === */
@media (max-width: 768px) {
	.h1 {
		font-size: clamp(2rem, 6vw, 2.5rem);
	}
	
	.features-item {
		padding: 1.5rem;
		margin-bottom: 1rem;
	}
	
	.btn {
		padding: 14px 24px;
		font-size: 0.9rem;
	}
}

/* === Уникальные таблицы === */
.table-wrap table {
	border-radius: 12px;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.table-wrap th {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #000;
	font-family: 'Inter', sans-serif !important;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.table-wrap td {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 215, 0, 0.2);
	font-family: 'Manrope', sans-serif !important;
}

/* === Уникальные формы === */
.form-input, .form-textarea {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 215, 0, 0.3);
	border-radius: 12px;
	padding: 16px;
	font-family: 'Manrope', sans-serif !important;
	color: #fff;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
	border-color: #FFD700;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	outline: none;
}

.form-label {
	font-family: 'Inter', sans-serif !important;
	font-weight: 600;
	color: #FFD700;
	margin-bottom: 0.5rem;
}
