/* ==================== */
/* MYSTICAL NUMEROLOGY DESIGN */
/* ==================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* МИСТИЧЕСКАЯ ЦВЕТОВАЯ ПАЛИТРА */
:root {
	--deep-purple: #2d1b69;
	--mystic-blue: #1e3a5f;
	--dark-space: #000000f2;
	--gold-light: #d4af37;
	--gold-dark: #b8941f;
	--crystal: #e8e6e3;
	--silver: #c0c0c0;

	/* Градиенты */
	--gradient-mystic: linear-gradient(135deg, var(--deep-purple) 0%, var(--mystic-blue) 100%);
	--gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
	--gradient-dark: linear-gradient(135deg, var(--dark-space) 0%, #1a1f2e 100%);

	/* Тени с эффектом свечения */
	--shadow-mystic: 0 4px 20px rgba(45, 27, 105, 0.3);
	--shadow-gold: 0 4px 25px rgba(212, 175, 55, 0.4);
	--shadow-deep: 0 8px 40px rgba(0, 0, 0, 0.5);

	/* Анимации */
	--transition-magic: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	/* Добавить недостающие */
	--shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
	--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
	--background-light: rgba(255, 255, 255, 0.1);
	--text-light: rgba(255, 255, 255, 0.7);
	--text-dark: #2c3e50;
	--error-color: #e74c3c;
	--transition: all 0.3s ease;
}

body {
	font-family: 'Cormorant Garamond', 'Playfair Display', serif;
	background: var(--dark-space);
	color: var(--crystal);
	line-height: 1.7;
	background-image:
		radial-gradient(circle at 10% 20%, rgba(45, 27, 105, 0.3) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(30, 58, 95, 0.3) 0%, transparent 40%);
}

/* ТИПОГРАФИЯ С АУРОЙ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Cinzel Decorative', 'Cormorant Garamond', serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

h1 {
	font-size: 3.5rem;
	background: linear-gradient(135deg, var(--crystal) 0%, var(--gold-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2 {
	font-size: 2.75rem;
	color: var(--gold-light);
}

h3 {
	font-size: 2rem;
	color: #ffffff;
}

p {
	color: var(--crystal);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* HEADER С ТАИНСТВЕННЫМ СВЕЧЕНИЕМ */
header {
	background: rgba(15, 20, 34, 0.95);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
	padding: 1.5rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-deep);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: 'Cinzel Decorative', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--gold-light);
	text-decoration: none;
	text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo span {
	color: var(--crystal);
}

/* НАВИГАЦИЯ КАК МАГИЧЕСКИЕ СИМВОЛЫ */
.nav-list {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-link {
	color: var(--crystal);
	text-decoration: none;
	font-weight: 500;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	transition: var(--transition-magic);
	position: relative;
	border: 1px solid transparent;
}

.nav-link:hover {
	color: var(--gold-light);
	border: 1px solid var(--gold-light);
	box-shadow: var(--shadow-gold);
	transform: translateY(-2px);
}

.nav-link::before {
	content: '✦';
	position: absolute;
	left: -10px;
	opacity: 0;
	transition: var(--transition-magic);
}

.nav-link:hover::before {
	opacity: 1;
	transform: rotate(180deg);
}

/* HERO С АУРОЙ ТАЙНЫ */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(45, 27, 105, 0.4) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
		var(--gradient-dark);
	position: relative;
	overflow: hidden;
	padding: 120px 0 80px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="white" opacity="0.3"/><circle cx="50" cy="30" r="0.3" fill="white" opacity="0.2"/><circle cx="80" cy="20" r="0.4" fill="white" opacity="0.4"/><circle cx="30" cy="70" r="0.6" fill="white" opacity="0.3"/><circle cx="70" cy="80" r="0.5" fill="white" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
	animation: twinkle 20s linear infinite;
}

@keyframes twinkle {

	0%,
	100% {
		opacity: 0.3;
	}

	50% {
		opacity: 0.7;
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero-subtitle {
	font-size: 1.4rem;
	color: var(--silver);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-style: italic;
}

/* КАЛЬКУЛЯТОР В СТИЛЕ МАГИЧЕСКОГО АРТЕФАКТА */
.calculator-hero {
	background: rgba(30, 58, 95, 0.0);
	backdrop-filter: blur(15px);
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 20px;
	padding: 3rem;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
	box-shadow:
		var(--shadow-mystic),
		inset 0 0 50px rgba(45, 27, 105, 0.3);
}

.calculator-hero::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: var(--gradient-gold);
	border-radius: 22px;
	z-index: -1;
	opacity: 0;
	transition: var(--transition-magic);
}

.calculator-hero:hover::before {
	opacity: 0.3;
}

.input-group {
	margin-bottom: 2rem;
	text-align: left;
}

.input-group label {
	display: block;
	margin-bottom: 0.75rem;
	font-weight: 600;
	color: var(--gold-light);
	font-size: 1.1rem;
}

.input-group input {
	width: 100%;
	padding: 1.2rem;
	background: rgba(15, 20, 34, 0.8);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 10px;
	color: var(--crystal);
	font-size: 1.1rem;
	transition: var(--transition-magic);
	font-family: inherit;
}

.input-group input:focus {
	outline: none;
	border-color: var(--gold-light);
	box-shadow: var(--shadow-gold);
	background: rgba(15, 20, 34, 0.9);
}

/* МАГИЧЕСКИЕ КНОПКИ */
.btn {
	background: var(--gradient-gold);
	color: var(--dark-space);
	border: none;
	padding: 1.3rem 2.5rem;
	border-radius: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition-magic);
	width: 100%;
	position: relative;
	overflow: hidden;
	font-family: 'Cinzel Decorative', serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.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: var(--transition-magic);
}

.btn:hover::before {
	left: 100%;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-gold);
}

/* СЕКЦИИ С МАГИЧЕСКОЙ АТМОСФЕРОЙ */
section {
	padding: 100px 0;
	position: relative;
}

.section-title {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 100px;
	height: 3px;
	background: var(--gradient-gold);
	margin: 1.5rem auto;
	border-radius: 2px;
}

/* КАРТОЧКИ С МАГИЧЕСКИМИ СИМВОЛАМИ */
.steps-grid,
.benefits-grid,
.testimonials-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.step-card,
.benefit-card,
.testimonial-card {
	background: rgba(30, 58, 95, 0.0);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 16px;
	padding: 2.5rem;
	transition: var(--transition-magic);
	position: relative;
	overflow: hidden;
}

.step-card::before,
.benefit-card::before,
.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-gold);
	transform: scaleX(0);
	transition: var(--transition-magic);
}

.step-card:hover::before,
.benefit-card:hover::before,
.testimonial-card:hover::before {
	transform: scaleX(1);
}

.step-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-deep);
	border-color: rgba(212, 175, 55, 0.4);
}

.step-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: var(--gold-light);
	display: inline-block;
	transition: var(--transition-magic);
}

.step-card:hover .step-icon {
	transform: scale(1.2) rotate(10deg);
	text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ABOUT СЕКЦИЯ С ПОРТРЕТОМ */
.about {
	background:
		radial-gradient(circle at 0% 50%, rgba(45, 27, 105, 0.3) 0%, transparent 50%),
		var(--gradient-dark);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-photo-placeholder {
	background:
		linear-gradient(135deg, rgba(45, 27, 105, 0.6) 0%, rgba(30, 58, 95, 0.6) 100%),
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23d4af37" stroke-width="2"/><circle cx="50" cy="40" r="15" fill="none" stroke="%23d4af37" stroke-width="1.5"/><path d="M35 70 Q50 85 65 70" fill="none" stroke="%23d4af37" stroke-width="1.5"/></svg>');
	border-radius: 20px;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(212, 175, 55, 0.3);
	position: relative;
	overflow: hidden;
}

.about-photo-placeholder::before {
	content: '🔮';
	font-size: 4rem;
	opacity: 0.5;
}

/* ТЕСТИМОНИАЛЫ С АУРОЙ */
.testimonial-author {
	display: flex;
	align-items: center;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--gradient-gold);
	margin-right: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--dark-space);
	font-size: 1.2rem;
}

/* МАГИЧЕСКИЕ БЕЙДЖИ ЧИСЕЛ */
.number-badge {
	background: var(--gradient-gold);
	color: var(--dark-space);
	padding: 0.8rem 2rem;
	border-radius: 25px;
	font-weight: 700;
	font-size: 1.3rem;
	display: inline-block;
	margin-bottom: 1.5rem;
	font-family: 'Cinzel Decorative', serif;
	box-shadow: var(--shadow-gold);
	position: relative;
	overflow: hidden;
}

.number-badge::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: rotate(45deg);
	animation: shine 3s ease-in-out infinite;
}

.number-badge.master-number {
	background: var(--gradient-mystic);
	color: var(--gold-light);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

/* UPSELL С ПРИЗЫВОМ К МАГИИ */
.upsell {
	background:
		radial-gradient(circle at 50% 50%, rgba(45, 27, 105, 0.6) 0%, transparent 70%),
		var(--gradient-mystic);
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 20px;
	padding: 4rem;
	text-align: center;
	margin-top: 4rem;
	position: relative;
	overflow: hidden;
}

.upsell::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: var(--gradient-gold);
	border-radius: 25px;
	z-index: -1;
	opacity: 0.1;
	filter: blur(10px);
}

.upsell h2,
.upsell h3 {
	color: #ffffff
}

.upsell p {
	color: var(--silver);
}

.upsell .btn {
	max-width: 250px;
	margin: 2rem auto 0;
}

/* ==================== */
/* ПОЛЕЗНЫЕ СТАТЬИ */
/* ==================== */

.blog-preview {
	background:
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
		var(--gradient-dark);
	padding: 100px 0;
	position: relative;
}

.blog-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.blog-card {
	background: rgba(23, 74, 141, 0.0);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 16px;
	padding: 2.5rem;
	transition: var(--transition-magic);
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-gold);
	transform: scaleX(0);
	transition: var(--transition-magic);
}

.blog-card:hover::before {
	transform: scaleX(1);
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-deep);
	border-color: rgba(212, 175, 55, 0.4);
}

.blog-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--gold-light);
	text-align: center;
	transition: var(--transition-magic);
}

.blog-card:hover .blog-icon {
	transform: scale(1.2) rotate(5deg);
	text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.blog-title {
	font-family: 'Cinzel Decorative', serif;
	font-size: 1.5rem;
	color: var(--gold-light);
	margin-bottom: 1rem;
	line-height: 1.4;
	text-align: center;
}

.blog-excerpt {
	color: var(--silver);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	flex-grow: 1;
	opacity: 0.9;
}

.blog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	font-size: 0.9rem;
	color: var(--text-light);
}

.blog-date {
	color: var(--gold-light);
	font-weight: 500;
}

.blog-read-time {
	color: var(--silver);
}

.blog-link {
	display: inline-block;
	color: var(--gold-light);
	text-decoration: none;
	font-weight: 600;
	padding: 0.8rem 1.5rem;
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 8px;
	transition: var(--transition-magic);
	position: relative;
	overflow: hidden;
	text-align: center;
	width: 100%;
	margin-top: 1rem;
}

.blog-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
	transition: var(--transition-magic);
}

.blog-link:hover::before {
	left: 100%;
}

.blog-link:hover {
	background: rgba(212, 175, 55, 0.1);
	border-color: var(--gold-light);
	box-shadow: var(--shadow-gold);
	transform: translateY(-2px);
}

/* Декоративные элементы для секции статей */
.blog-preview::before {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--gold-light);
	font-size: 2rem;
	background: var(--dark-space);
	padding: 0 2rem;
	z-index: 2;
}

/* Адаптивность для блога */
@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.blog-card {
		padding: 2rem;
	}

	.blog-title {
		font-size: 1.3rem;
	}
}

/* FOOTER С ТАИНСТВЕННЫМИ СИМВОЛАМИ */
footer {
	background: rgba(15, 20, 34, 0.95);
	border-top: 5px solid rgba(212, 175, 55, 0.2);
	padding: 5rem 0 2rem;
	position: relative;
}

footer::before {

	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--gold-light);
	font-size: 1.5rem;
	background: #0f142200;
	padding: 0 1rem;
}

footer h3 {
	color: var(--gold-light);
}

footer p {
	color: var(--silver);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 5rem;
	margin-bottom: 3rem;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
	.hero {
		padding: 100px 0 60px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.calculator-hero {
		margin: 0 1rem;
		padding: 2rem;
	}

	.nav-list {
		gap: 1rem;
	}
}

/* МАГИЧЕСКАЯ АНИМАЦИЯ ПОЯВЛЕНИЯ */
.fade-in {
	background: rgba(30, 58, 95, 0.0);
	backdrop-filter: blur(15px);
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 20px;
	padding: 3rem;
	margin: 0 auto;
	position: relative;
	box-shadow: var(--shadow-mystic), inset 0 0 50px rgba(45, 27, 105, 0.3);

	/* Добавляем анимацию поверх вашего дизайна */
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Для карточек убираем фиксированную ширину */
.step-card.fade-in,
.benefit-card.fade-in,
.testimonial-card.fade-in,
.blog-card.fade-in,
.result-card.fade-in {
	max-width: none;
	/* Убираем ограничение ширины как у калькулятора */
	width: 100%;
}

/* ==================== */
/* МОБИЛЬНОЕ МЕНЮ */
/* ==================== */

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.menu-toggle-line {
	width: 100%;
	height: 3px;
	background: var(--gold-light);
	border-radius: 2px;
	transition: var(--transition-magic);
}

.nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	z-index: 999;
}

.nav-overlay.active {
	display: block;
}

/* Мобильная навигация */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		height: 100vh;
		background: var(--dark-space);
		z-index: 1000;
		transition: var(--transition-magic);
		padding: 2rem;
		border-left: 2px solid var(--gold-light);
	}

	.main-nav.active {
		right: 0;
	}

	.nav-list {
		flex-direction: column;
		gap: 0;
		margin-top: 4rem;
	}

	.nav-item {
		border-bottom: 1px solid rgba(212, 175, 55, 0.2);
	}

	.nav-link {
		display: block;
		padding: 1.5rem 0;
		border: none !important;
		font-size: 1.2rem;
	}

	.nav-link::before {
		display: none;
	}

	/* Анимация кнопки меню */
	.menu-toggle.active .menu-toggle-line:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}

	.menu-toggle.active .menu-toggle-line:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active .menu-toggle-line:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}
}

/* ==================== */
/* МОДАЛЬНЫЕ ОКНА ОПЛАТЫ */
/* ==================== */

.client-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.client-modal .modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

.client-modal .modal-content {
	position: relative;
	background: rgba(15, 20, 34, 0.95);
	backdrop-filter: blur(15px);
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 16px;
	padding: 2rem;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
	color: var(--crystal);
}

.client-modal .modal-title {
	color: var(--gold-light) !important;
	font-family: 'Cinzel Decorative', serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	text-align: center;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.client-modal .modal-description {
	color: var(--silver) !important;
	margin-bottom: 1.5rem;
	text-align: center;
	font-size: 1rem;
	opacity: 0.9;
}

.client-modal .input-group {
	margin-bottom: 1rem;
}

.client-modal .input-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--gold-light) !important;
	font-size: 0.95rem;
}

.client-modal .input-group input {
	width: 100%;
	padding: 0.75rem;
	background: rgba(15, 20, 34, 0.8);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 10px;
	font-size: 1rem;
	color: var(--crystal) !important;
	font-family: inherit;
	transition: var(--transition-magic);
}

.client-modal .input-group input:focus {
	outline: none;
	border-color: var(--gold-light);
	box-shadow: var(--shadow-gold);
	background: rgba(15, 20, 34, 0.9);
	color: var(--crystal) !important;
}

.client-modal .input-group input::placeholder {
	color: var(--silver) !important;
	opacity: 0.7;
}

.client-modal .modal-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.client-modal .modal-actions .btn {
	flex: 1;
	padding: 0.75rem;
	font-family: 'Cinzel Decorative', serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	transition: var(--transition-magic);
	position: relative;
	overflow: hidden;
}

.client-modal .btn-primary {
	background: var(--gradient-gold);
	color: var(--dark-space) !important;
}

.client-modal .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-gold);
}

.client-modal .btn-secondary {
	background: #95a5a6;
	color: white !important;
}

.client-modal .btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 25px rgba(149, 165, 166, 0.4);
}

.client-modal .modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--silver) !important;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition-magic);
}

.client-modal .modal-close:hover {
	color: var(--gold-light) !important;
	background: rgba(212, 175, 55, 0.1);
}

/* Адаптивность для модальных окон */
@media (max-width: 768px) {
	.client-modal .modal-content {
		padding: 1.5rem;
		margin: 10px;
	}

	.client-modal .input-group input {
		padding: 14px 16px;
		font-size: 16px;
		/* Предотвращает zoom в iOS */
	}

	.client-modal .modal-actions {
		flex-direction: column;
	}

	.client-modal .modal-actions .btn {
		min-height: 50px;
		/* Удобнее для touch */
	}
}