:root {
	--blue: #083d6f;
	--orange: #f6a426;
	--ink: #0e2a45;
	--muted: #6a7c8f;
	--bg: #f4f8fc;
	--card: #ffffff;
	--shadow: 0 18px 45px rgba(8, 61, 111, 0.14);
	--radius-xl: 24px;
	--radius-lg: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", Inter, Arial, sans-serif;
	color: var(--ink);
	background: radial-gradient(circle at 15% 10%, #ffffff 0%, var(--bg) 48%, #eaf2f9 100%);
	overflow-x: hidden;
	line-height: 1.6;
}

.container {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

.section {
	padding: 88px 0;
	position: relative;
	z-index: 1;
}

.section-title {
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	color: var(--blue);
	margin-bottom: 14px;
	letter-spacing: 0.2px;
}

.section-text {
	color: var(--muted);
	max-width: 760px;
}

.bg-orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
	animation: pulse 9s ease-in-out infinite alternate;
}

.orb {
	width: 260px;
	height: 260px;
	background: rgba(246, 164, 38, 0.28);
	bottom: -60px;
	right: -40px;
	animation-delay: 1.5s;
}

@keyframes pulse {
	from {
		transform: translateY(0) scale(1);
	}
	to {
		transform: translateY(-24px) scale(1.08);
	}
}

.hero {
	min-height: 90vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 28px;
}

.hero-grid {
	display: grid;
	gap: 42px;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
}

.brand-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.logo-mark {
	width: 68px;
	height: 68px;
	display: block;
	object-fit: contain;
}

.brand {
	font-family: "Montserrat", "Segoe UI", Inter, Arial, sans-serif;
	font-size: clamp(2rem, 5.7vw, 4.15rem);
	line-height: 1;
	letter-spacing: 1.2px;
	color: var(--blue);
	margin: 0;
	font-weight: 700;
}

.tagline {
	font-size: clamp(1.02rem, 1.9vw, 1.35rem);
	color: #4f6478;
	margin-bottom: 26px;
	max-width: 600px;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 25px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	padding: 12px 24px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(120deg, var(--blue), #1565a8);
	color: #fff;
	box-shadow: 0 12px 24px rgba(8, 61, 111, 0.28);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.85);
	color: var(--blue);
	border: 1px solid rgba(8, 61, 111, 0.18);
}

.btn:hover {
	transform: translateY(-2px);
}

.hero-card {
	background: linear-gradient(165deg, #ffffff, #f7fbff);
	border: 1px solid rgba(8, 61, 111, 0.1);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	padding: 26px;
	position: relative;
	overflow: hidden;
	transform: translateY(0);
	animation: floatCard 6s ease-in-out infinite;
}

.hero-card::before {
	content: "";
	position: absolute;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(246, 164, 38, 0.34), rgba(246, 164, 38, 0));
	right: -45px;
	top: -50px;
}

.hero-card h3 {
	color: var(--blue);
	font-size: 1.15rem;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}

.hero-card p {
	color: var(--muted);
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.pill {
	background: rgba(8, 61, 111, 0.08);
	color: var(--blue);
	border-radius: 999px;
	padding: 7px 13px;
	font-size: 0.88rem;
	font-weight: 600;
}

@keyframes floatCard {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.features-grid {
	margin-top: 36px;
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
	background: var(--card);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(8, 61, 111, 0.09);
	box-shadow: 0 8px 20px rgba(8, 61, 111, 0.08);
	padding: 24px;
	transition: transform 240ms ease, box-shadow 240ms ease;
}

.feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 30px rgba(8, 61, 111, 0.12);
}

.feature-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--blue), #2e77b7);
	margin-bottom: 14px;
	position: relative;
	overflow: hidden;
}

.feature-icon::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--orange);
	right: -4px;
	top: -4px;
}

.feature h3 {
	font-size: 1.05rem;
	color: var(--blue);
	margin-bottom: 8px;
}

.feature p {
	color: var(--muted);
	font-size: 0.95rem;
}

.contact-wrap {
	margin-top: 38px;
	background: linear-gradient(145deg, #ffffff, #f4f9ff);
	border-radius: var(--radius-xl);
	border: 1px solid rgba(8, 61, 111, 0.11);
	box-shadow: var(--shadow);
	padding: clamp(20px, 4vw, 34px);
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
}

.contact-info h3 {
	color: var(--blue);
	margin-bottom: 10px;
	font-size: 1.3rem;
}

.contact-info p,
.contact-info a {
	color: var(--muted);
	text-decoration: none;
	display: block;
	margin-bottom: 9px;
}

.contact-form {
	display: grid;
	gap: 10px;
}

.contact-form input,
.contact-form textarea {
	border-radius: 12px;
	border: 1px solid rgba(8, 61, 111, 0.2);
	background: #fff;
	padding: 12px 14px;
	font: inherit;
	color: var(--ink);
	transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--orange);
	box-shadow: 0 0 0 3px rgba(246, 164, 38, 0.2);
}

.contact-form textarea {
	min-height: 124px;
	resize: vertical;
}

footer {
	text-align: center;
	padding: 30px 12px 40px;
	color: #6f8192;
	font-size: 0.92rem;
}

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-cue {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 44px;
	border: 2px solid rgba(8, 61, 111, 0.35);
	border-radius: 999px;
}

.scroll-cue::after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	left: 50%;
	margin-left: -3px;
	top: 8px;
	animation: scrollDot 1.4s ease-in-out infinite;
}

@keyframes scrollDot {
	0% {
		opacity: 0;
		transform: translateY(0);
	}
	35% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(17px);
	}
}

@media (max-width: 980px) {
	.hero-grid,
	.contact-wrap {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
		padding-bottom: 80px;
	}

	.scroll-cue {
		display: none;
	}
}
