* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.site-header {
	position: sticky;
	top: 0;
	background: #fff;
	border-bottom: 1px solid #e6e8ec;
	z-index: 1000;
	overflow: visible;
}

body {
	font-family: 'Rubik', sans-serif;
	color: #0f1926;
	background: #f7f8fb;
}

body.no-scroll {
	overflow: hidden;
}

a {
	color: inherit;
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
	height: 88px;
	gap: 20px;
	position: relative;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #0f1926;
}

.brand img {
	height: 64px;
}

.brand-name {
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	display: inline-block;
}

.primary-nav {
	display: flex;
	align-items: center;
}

.primary-nav ul {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav a {
	font-weight: 600;
	color: #1f2733;
	font-size: clamp(0.85rem, 1vw + 0.2rem, 1rem);
	padding: 12px 0;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	display: inline-block;
	line-height: 1;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	outline: none;
	text-decoration: underline;
	text-underline-offset: 6px;
	color: #1d87ff;
}

.menu-btn {
	display: none;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	position: relative;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.menu-btn .menu-bar,
.menu-btn .menu-bar::before,
.menu-btn .menu-bar::after {
	display: block;
	height: 2px;
	width: 24px;
	background: #0f1926;
	border-radius: 2px;
}

.menu-btn .menu-bar {
	position: relative;
}

.menu-btn .menu-bar::before,
.menu-btn .menu-bar::after {
	content: "";
	position: absolute;
	left: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn .menu-bar::before {
	transform: translateY(-8px);
}

.menu-btn .menu-bar::after {
	transform: translateY(8px);
}

.menu-btn.is-active .menu-bar {
	background: transparent;
}

.menu-btn.is-active .menu-bar::before {
	transform: rotate(45deg);
}

.menu-btn.is-active .menu-bar::after {
	transform: rotate(-45deg);
}

.menu-btn .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.hero-full {
	position: relative;
	padding: 180px 0 120px;
	color: #fff;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8,15,30,0.55);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.hero-text h1 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-text .lead {
	font-size: 18px;
	max-width: 580px;
	margin-bottom: 30px;
	color: rgba(255,255,255,0.85);
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 14px;
	margin-bottom: 18px;
	color: rgba(255,255,255,0.8);
}

.hero-actions .btn {
	margin-right: 15px;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 38px;
}

.btn-primary {
	background: #ffc100;
	border: none;
	color: #0f1926;
}

.btn-outline {
	border: 2px solid rgba(255,255,255,0.9);
	background: transparent;
	color: #fff;
}

.hero-stats {
	list-style: none;
	display: flex;
	gap: 40px;
	margin-top: 40px;
}

.hero-stats li {
	text-align: left;
}

.hero-stats strong {
	font-size: 38px;
	display: block;
}

.hero-stats span {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(255,255,255,0.7);
}

.page-hero {
	position: relative;
	padding: 140px 0 100px;
	background: url('../images/bg.jpg') center/center/cover;
	color: #fff;
	overflow: hidden;
}

.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(12, 20, 40, 0.65);
}

.page-hero .page-heading {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}

.page-hero .page-heading h1 {
	font-size: 42px;
	margin-bottom: 15px;
}

.page-heading p {
	font-size: 18px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.8);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.service-card {
	background: #fff;
	color: #0f1926;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 20px 45px rgba(9, 25, 45, 0.08);
}

.service-card i {
	font-size: 32px;
	color: #1d87ff;
	margin-bottom: 16px;
	display: block;
}

.service-card h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.service-card p {
	color: #4f5668;
	line-height: 1.6;
}

.pricing-table {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.pricing-card {
	border-radius: 18px;
	background: #fff;
	padding: 28px;
	box-shadow: 0 25px 50px rgba(9, 25, 45, 0.1);
	display: flex;
	flex-direction: column;
}

.pricing-card h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.pricing-card .price {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #1d87ff;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	line-height: 1.8;
	color: #4f5668;
}

.pricing-card .btn {
	margin-top: auto;
	border-radius: 30px;
	padding: 12px;
	font-weight: 600;
}

.section {
	padding: 80px 0;
}

.section-heading {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 50px;
}

.section-heading h2 {
	font-size: 32px;
	margin-bottom: 16px;
}

.section-heading p {
	font-size: 16px;
	color: #4f5668;
}

.services-cards {
	margin-top: 30px;
}

.service-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	min-height: 260px;
	box-shadow: 0 25px 50px rgba(9,25,45,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
}

.service-card i {
	font-size: 32px;
	color: #1d87ff;
	margin-bottom: 16px;
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 8px;
}

.service-card p {
	color: #55636d;
	line-height: 1.6;
	line-height: 1.6;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 35px 60px rgba(9,25,45,0.15);
}

.process-grid {
	gap: 20px;
}

.process-item {
	background: #fff;
	border-radius: 18px;
	padding: 30px;
	box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

.process-item h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #202a33;
}

.process-item p {
	color: #55636d;
	line-height: 1.7;
}

.contact-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 20px 45px rgba(15,25,45,0.09);
}

.contact-card h3 {
	font-size: 26px;
	margin-bottom: 18px;
}

.contact-card p {
	color: #5a6371;
	margin-bottom: 10px;
	line-height: 1.6;
}

.contact-card .form-control {
	border-radius: 12px;
	border: 1px solid #dde3ec;
	padding: 16px;
	margin-bottom: 16px;
	font-size: 16px;
}

.cta-section {
	background: #0f1926;
}

.cta-card {
	background: #1d2834;
	border-radius: 24px;
	padding: 50px;
	color: #fff;
	text-align: center;
	box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.cta-card h2 {
	font-size: 32px;
	margin-bottom: 12px;
}

.cta-card p {
	color: rgba(255,255,255,0.75);
	margin-bottom: 24px;
	font-size: 16px;
}

footer {
	padding: 60px 0 20px;
	background: #0f1926;
	color: rgba(255,255,255,0.9);
}

.footer-content {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer-brand {
	max-width: 320px;
}

.footer-brand img {
	height: 48px;
	margin-bottom: 12px;
}

.footer-links {
	min-width: 180px;
}

.footer-links h4 {
	margin-bottom: 12px;
	font-size: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffc100;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-links a {
	color: rgba(255,255,255,0.85);
	text-decoration: none;
}

.footer-links a:hover {
	color: #ffc100;
}

.footer-contact {
	min-width: 220px;
}

.footer-contact h4 {
	font-size: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffc100;
}

.footer-bottom {
	margin-top: 30px;
	text-align: center;
	color: rgba(255,255,255,0.65);
	font-size: 14px;
}

@media (max-width: 991px) {
	.hero-stats {
		flex-direction: column;
	}

	.hero-text h1 {
		font-size: 38px;
	}

	.hero-actions .btn {
		margin-bottom: 12px;
	}

	.services-cards .col-md-4 {
		margin-bottom: 20px;
	}

	.primary-nav {
		display: none;
	}

	.primary-nav.open {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		padding: 18px 24px;
		box-shadow: 0 12px 25px rgba(15, 25, 45, 0.1);
		z-index: 10;
	}

	.primary-nav.open ul {
		flex-direction: column;
		gap: 12px;
	}

	.menu-btn {
		display: flex;
	}

	.header-inner {
		height: 72px;
	}
}

@media (max-width: 767px) {
	.hero-full {
		padding: 140px 0 90px;
	}

	.hero-text h1 {
		font-size: 32px;
	}

	.hero-actions {
		display: flex;
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
		text-align: center;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}
}
