* { box-sizing: border-box; }

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: #0f172a;
}

.page {
	flex: 1;
	display: grid;
	place-items: center;
	padding: 24px;
}

.hero-card {
	width: min(620px, 100%);
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	text-align: center;
}

.logo {
	width: 64px;
	height: 64px;
	object-fit: contain;
	display: block;
	margin: 0 auto 14px;
}

h1 {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.9;
}

p {
	margin: 12px 0 0;
	color: #475569;
	line-height: 1.7;
}

.actions {
	margin-top: 22px;
	display: flex;
	justify-content: center;
}

.contact-button {
	appearance: none;
	border: 0;
	border-radius: 999px;
	padding: 12px 18px;
	font: inherit;
	font-weight: 600;
	color: #fff;
	background: #111111;
	box-shadow: 0 10px 20px rgba(17, 17, 17, 0.18);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	margin: 15px;
}

.contact-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 24px rgba(17, 17, 17, 0.24);
}

.social {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 14px;
}

.social a {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid #cbd5e1;
	color: #334155;
	background: #fff;
	transition: 0.2s ease;
}

.social a:hover {
	transform: translateY(-2px);
	border-color: #94a3b8;
}

footer {
	padding: 16px;
	text-align: center;
	color: #64748b;
	font-size: 0.85rem;
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(15, 23, 42, 0.55);
	z-index: 50;
}

.modal-backdrop.open {
	display: flex;
}

.modal {
	width: min(520px, 100%);
	background: #fff;
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.modal-header h2 {
	margin: 0;
	font-size: 1.25rem;
}

.close-button {
	appearance: none;
	border: 0;
	background: #e2e8f0;
	color: #0f172a;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 1.1rem;
}

.contact-form {
	display: grid;
	gap: 14px;
}

.field {
	display: grid;
	gap: 6px;
}

.field label {
	font-size: 0.9rem;
	font-weight: 600;
	color: #334155;
}

.field input,
.field textarea {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	padding: 12px 14px;
	font: inherit;
	color: #0f172a;
	background: #fff;
}

.field textarea {
	min-height: 120px;
	resize: vertical;
}

.form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.secondary-button {
	appearance: none;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0f172a;
	border-radius: 999px;
	padding: 10px 16px;
	font: inherit;
	cursor: pointer;
}

.submit-button {
	appearance: none;
	border: 0;
	background: #0f172a;
	color: #fff;
	border-radius: 999px;
	padding: 10px 16px;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.form-feedback {
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 0.9rem;
}

.form-feedback.hidden {
	display: none;
}

.form-feedback.success {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.form-feedback.error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
