:root {
	--bg: #f7fbff;
	--bg-soft: #f5f5f5;
	--text: #0f172a;
	--muted: #475569;
	--primary: rgb(214, 16, 76);
	--primary-2: #dbd817;
	--white: #ffffff;
	--glass: rgba(255, 255, 255, 0.6);
	--shadow: 0 10px 30px rgba(2, 62, 138, 0.1);
}

* {
	box-sizing: border-box;
}
html,
body {
	height: 100%;
}
body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
		Arial, sans-serif;
	background: linear-gradient(180deg, var(--bg), var(--bg-soft));
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1120px;
	margin-inline: auto;
	padding-inline: 24px;
}
.muted {
	color: var(--muted);
}
.muted.xs {
	font-size: 12px;
}
.section-head {
	margin: 64px 0 24px;
}
.section-head h2,
.section-head h1 {
	margin: 0 0 8px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: saturate(1.2) blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 12px;
}
.logo {
	font-weight: 700;
	letter-spacing: 0.2px;
	text-decoration: none;
	color: var(--text);
	font-size: 20px;
}
.logo span {
	color: var(--primary);
}

.feature-card h3 {
	color: var(--primary);
}
nav {
	display: flex;
	align-items: center;
	gap: 18px;
}
nav a {
	text-decoration: none;
	color: var(--muted);
	font-weight: 500;
	padding: 8px 10px;
	border-radius: 10px;
}
nav a:hover,
nav a.active {
	color: var(--text);
	background: var(--bg-soft);
}
.btn {
	cursor: pointer;
	border: 0;
	border-radius: 14px;
	padding: 12px 16px;
	font-weight: 600;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn:hover {
	transform: translateY(-1px);
}
.btn:active {
	transform: translateY(0);
}
.btn.primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	color: var(--white);
}
.btn.ghost {
	background: var(--white);
	color: var(--primary);
	border: 1px solid rgba(0, 119, 182, 0.15);
}
.btn.white {
	background: var(--white);
	color: var(--primary);
}
.btn.sm {
	padding: 8px 12px;
	border-radius: 10px;
}

.hero {
	padding: 88px 0 0;
	background: radial-gradient(
		1000px 400px at 20% -50%,
		#dff2ff 0%,
		transparent 60%
	);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1;
	gap: 36px;
	align-items: center;
	text-align: center;
}
.hero-copy h1 {
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1.1;
	margin: 0 0 12px;
}

.hero-copy {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.gradient {
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.badges {
	width: fit-content;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 18px;
	padding: 0;
	list-style: none;
}
.badges li {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 8px 10px;
	border-radius: 999px;
	box-shadow: var(--shadow);
}

.hero-art {
	position: relative;
	min-height: 320px;
}

.floating-card {
	position: absolute;
	left: 10%;
	top: 10%;
	background: var(--white);
	padding: 14px 16px;
	border-radius: 16px;
	box-shadow: var(--shadow);
	animation: float 6s ease-in-out infinite;
	animation-delay: var(--d, 0s);
}
.floating-card:nth-of-type(2) {
	left: auto;
	right: 5%;
	top: 40%;
}
.floating-card:nth-of-type(3) {
	left: 18%;
	top: 56%;
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 48px auto;
}
.feature-card {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 22px;
	border-radius: 18px;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 119, 182, 0.15);
}

.grid-list .cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.cards.two-col {
	grid-template-columns: repeat(2, 1fr);
}
.card {
	position: relative;
	background: linear-gradient(180deg, #ffffff, #f9fdff);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 20px;
	box-shadow: var(--shadow);
	overflow: hidden;
}
.card-body {
	padding: 22px;
}
.card h3 {
	margin-top: 0;
}
.card p {
	margin: 10px 0 16px;
}
.card-cta {
	display: flex;
	gap: 10px;
}
.card::after {
	z-index: -1;
	content: '';
	position: absolute;
	inset: auto -20% 0 -20%;
	height: 60%;
	background: linear-gradient(180deg, transparent, rgba(0, 119, 182, 0.06));
	transform: skewY(-6deg);
}

.bullets {
	margin: 12px 0 18px;
	padding-left: 18px;
}
.bullets li {
	margin: 6px 0;
}

.cta-band {
	padding: 40px 24px;
}
.band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer {
	padding: 0 12px;
	margin-top: 64px;
	background: var(--bg-soft);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.9fr;
	gap: 18px;
	padding: 28px 0;
}
.footer-grid ul {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
}
.footer-grid li {
	margin: 6px 0;
}
.legal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0 24px;
	color: var(--muted);
}

.glass {
	background: var(--glass);
	backdrop-filter: saturate(1.4) blur(10px);
}

.modal[hidden] {
	display: none;
}
.modal {
	position: fixed;
	inset: 0;
	z-index: 40;
	display: grid;
	place-items: center;
}
.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 62, 138, 0.25);
	backdrop-filter: blur(8px);
}
.modal-card {
	position: relative;
	z-index: 1;
	width: min(640px, 92vw);
	background: var(--white);
	border-radius: 22px;
	box-shadow: 0 30px 80px rgba(2, 62, 138, 0.25);
	padding: 22px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #0f172a;
}

.form {
	padding: 20px;
	display: grid;
	gap: 14px;
}

.form textarea {
	resize: vertical;
}

details {
	cursor: pointer;
	padding: 14px;
	margin-top: 5px;
}

.faq details {
	border-radius: 10px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
label {
	display: grid;
	gap: 6px;
	font-weight: 600;
}
input,
select,
textarea {
	padding: 12px 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	background: #fff;
	outline: none;
}
input:focus,
select:focus,
textarea:focus {
	border-color: var(--primary-2);
	box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}
.agree {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.discount-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-visible {
	opacity: 1;
	transform: none;
}
.reveal-delay {
	transition-delay: 0.15s;
}
.reveal-delay-2 {
	transition-delay: 0.3s;
}
.reveal-delay-3 {
	transition-delay: 0.45s;
}
.reveal-delay-4 {
	transition-delay: 0.6s;
}

@media (max-width: 920px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}
	.features {
		grid-template-columns: 1fr;
	}
	.grid-list .cards {
		grid-template-columns: 1fr 1fr;
	}
	.cards.two-col {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.form-row {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 580px) {
	nav {
		gap: 10px;
	}
	.grid-list .cards {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.reveal,
	.floating-card {
		transition: none;
		animation: none;
	}
}

a {
	color: var(--primary);
	text-decoration: none;
}

.reveal,
.reveal-delay,
.reveal-delay-2,
.reveal-delay-3,
.reveal-delay-4 {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay {
	transition-delay: 0.2s;
}
.reveal-delay-2 {
	transition-delay: 0.4s;
}
.reveal-delay-3 {
	transition-delay: 0.6s;
}
.reveal-delay-4 {
	transition-delay: 0.8s;
}

/* Burger */
.burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.burger span {
	display: block;
	height: 3px;
	width: 100%;
	background: var(--text);
	border-radius: 2px;
	transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
	opacity: 0;
}
.burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
	.burger {
		display: flex;
	}
	nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		backdrop-filter: blur(10px);
		display: none;
		flex-direction: column;
		align-items: flex-start;
		padding: 16px;
		gap: 12px;
		box-shadow: var(--shadow);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	nav.open {
		display: flex !important;
		max-height: 300px;
	}
	nav a,
	nav .btn {
		width: 100%;
	}
}

.attractions {
	margin: 48px auto;
	text-align: center;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 119, 182, 0.2);
}
.card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}
.card-body {
	padding: 16px;
}
.card-body h3 {
	margin: 0 0 8px;
	color: var(--primary);
}
.card-body p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.attractions .cta {
	margin-top: 32px;
}

.swiper {
	padding: 24px 0;
}

.swiper-slide {
	display: flex;
	flex-direction: column;
}

.card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 119, 182, 0.2);
}
.card img {
	width: 100%;
	height: 180px;
	object-fit: contain;
}
.card-body {
	padding: 16px;
}
.card-body h3 {
	margin: 0 0 8px;
	color: var(--primary);
}
.card-body p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.swiper-button-prev,
.swiper-button-next {
	color: var(--primary);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--white);
	box-shadow: var(--shadow);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: var(--primary);
	color: var(--white);
}
