* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	background: #fffaf5;
	color: #2a2a2a;
}

header {
	position: relative;
	background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80')
		center/cover no-repeat;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;
}

header .overlay {
	background: rgba(0, 0, 0, 0.45);
	position: absolute;
	inset: 0;
}

header .content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 0 20px;
}

h1 {
	font-size: 3.2rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

h2 {
	font-size: 2rem;
	margin-top: 0;
}

p {
	font-size: 1rem;
	line-height: 1.6;
}

.btn {
	display: inline-block;
	background: #ff7a2f;
	color: white;
	padding: 14px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	transition: 0.25s;
	border: none;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(255, 122, 47, 0.4);
}

.btn:hover {
	background: #ff5c00;
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(255, 92, 0, 0.5);
}

section {
	padding: 60px 20px;
	max-width: 1100px;
	margin: auto;
}

.section-subtitle {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.8rem;
	color: #ff7a2f;
	font-weight: 600;
	margin-bottom: 8px;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.card {
	background: white;
	padding: 25px;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.card img {
	width: 70px;
	margin-bottom: 15px;
}

.card h3 {
	margin-top: 0;
	margin-bottom: 10px;
}

.card p {
	margin: 0;
	font-size: 0.95rem;
}

.why-block {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	margin-top: 40px;
}

.why-badge-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-badge-list li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
	font-size: 0.95rem;
}

.why-badge-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff7a2f;
}

.highlight-box {
	background: #fff2e6;
	border-radius: 16px;
	padding: 20px 22px;
	font-size: 0.95rem;
}

.highlight-box strong {
	font-size: 1.05rem;
}

footer {
	background: #2a2a2a;
	color: white;
	text-align: center;
	padding: 40px 20px;
	margin-top: 40px;
	font-size: 0.9rem;
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 20px;
}

.modal-backdrop.show {
	display: flex;
}

.modal {
	background: #ffffff;
	border-radius: 24px;
	max-width: 500px;
	width: 100%;
	padding: 26px 26px 24px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	position: relative;
}

.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	border: none;
	background: transparent;
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
	color: #999;
}

.modal-header-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff2e6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 1.8rem;
}

.modal h2 {
	margin: 0 0 6px;
	font-size: 1.5rem;
}

.modal-step {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #ff7a2f;
	margin-bottom: 4px;
	font-weight: 600;
}

.modal p {
	margin: 0 0 14px;
	font-size: 0.95rem;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
	margin-bottom: 10px;
}

.modal-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.modal-form label {
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 4px;
	display: block;
}

.modal-form input,
.modal-form select {
	width: 100%;
	border-radius: 10px;
	border: 1px solid #e2e2e2;
	padding: 10px 11px;
	font-size: 0.95rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-form input:focus,
.modal-form select:focus {
	border-color: #ff7a2f;
	box-shadow: 0 0 0 1px rgba(255, 122, 47, 0.25);
}

.modal-footer-text {
	font-size: 0.75rem;
	color: #777;
	margin-top: 6px;
}

.modal-actions {
	margin-top: 6px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}

.btn-secondary {
	border-radius: 30px;
	border: 1px solid #ddd;
	padding: 10px 20px;
	background: white;
	font-size: 0.9rem;
	cursor: pointer;
	font-weight: 500;
}

.btn-secondary:hover {
	background: #f5f5f5;
}

.modal .btn-primary {
	flex: 1;
	text-align: center;
	justify-content: center;
}

.success-title {
	font-size: 1.6rem;
	margin-bottom: 8px;
}

.success-text {
	font-size: 0.98rem;
	margin-bottom: 16px;
}

body.modal-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	header {
		height: 80vh;
	}

	h1 {
		font-size: 2.4rem;
	}

	.why-block {
		grid-template-columns: minmax(0, 1fr);
	}

	.modal-form-row {
		grid-template-columns: minmax(0, 1fr);
	}
}
