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

body {
	font-family: Inter, sans-serif;
	font-optical-sizing: auto;
	color: #333;
}

.maxed {
	max-width: 1300px;
	margin: 0 auto;
}

.maxed-sm {
	max-width: 550px;
	margin: 0 auto;
}

/* Header Navigation */
.header-container {
	background: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1rem;
}

.logo {
	height: 50px;
}

.nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	transition: color 0.3s;
}

.nav a:hover {
	color: #e30613;
}

.btn-primary {
	background: #e30613;
	color: white !important;
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-primary:hover {
	background: #c10510;
}

/* Hero Section */
.hero {
	position: relative;
	height: 500px;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
}

.hero-logo {
	width: 250px;
	margin-bottom: 2rem;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.hero-cta {
	background: #e30613;
	color: white;
	padding: 1rem 2rem;
	border-radius: 30px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
	transition: transform 0.3s;
}

.hero-cta:hover {
	transform: translateY(-2px);
}

.hero-banner {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #2463eb;
	color: white;
	text-align: center;
	padding: 1rem;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Sections */
.section {
	padding: 4rem 3rem;
}

.section-title {
	font-size: 38px;
	font-weight: 400;
}

.dots-light {
	background: radial-gradient(circle, #ebebeb 1px, transparent 1px);
	background-size: 20px 20px;
}
.dots-primary {
	background: #2d53ff
		radial-gradient(circle, rgb(89, 112, 242) 1px, transparent 1px);
	color: white;
	background-size: 20px 20px;
}

.section-title .highlight {
	color: #e30613;
}

.section-title-wrapper {
	margin-top: 60px;
	margin-bottom: 1.5rem;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.section-title-wrapper hr {
	margin: auto;
	height: 3px;
	width: 100px;
	background: #001524;
}

.section p {
	font-family: Inter;
	font-weight: 300;
	font-style: Light;
	font-size: 22px;
	leading-trim: NONE;
	line-height: 42px;
	letter-spacing: 0%;
	vertical-align: middle;
	margin-bottom: 40px;
}

/* Banner Section */
.banner-section {
	background: #2463eb;
	color: white;
	text-align: center;
	padding: 2rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-size: 24px;
	font-weight: 100;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Dark Section */
.dark-section {
	background: #1a1a1a;
	color: white;
	padding: 4rem 3rem;
	text-align: center;
}

.dark-section h2 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	letter-spacing: 1px;
}

/* Image Gallery */
.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 2rem;
	border-radius: 10px;
	overflow: hidden;
}

.gallery img {
	object-fit: cover;
	overflow: hidden;
	width: 100%;
	height: 200px;
}

.gallery .gallery-lg {
	grid-column: span 3;
	object-fit: cover;
	height: 350px;
}

/* Steps Section */
.steps-section {
	background: white;
	padding: 4rem 3rem;
	position: relative;
	overflow: hidden;
}

.steps-header {
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.steps-header h2 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.steps-header h2 .number {
	font-weight: 600;
	font-style: SemiBold;
	font-size: 58px;
	letter-spacing: 0%;

	color: #e30613;
	border-bottom: 4px solid #2d53ff;
	margin-bottom: 10px;
}

.steps-header p {
	font-weight: 600;
	font-size: 28px;
	color: #001524;
}

.steps-container {
	position: relative;
	display: grid;
	z-index: 1;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 4rem;
}

.step {
	display: flex;
	gap: 20px;
	justify-content: start;
	align-items: flex-start;
}

.step-number {
	font-size: 56px;
	font-weight: 700;
	color: #001524;
}

.step-content p {
	padding-top: 10px;
	font-size: 16px;
	color: #000000;
}

.steps-decoration-icon {
	position: absolute;
	right: -10px;
	top: -10px;
}

/* Form Section */
.form-section {
	padding: 4rem 3rem;
	text-align: center;
}

.form-section h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	line-height: 1.3;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-form input,
.contact-form textarea {
	padding: 1rem;
	border: none;
	border-radius: 5px;
	font-size: 0.9rem;
	font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #999;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 1px;
}

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

.contact-form button {
	background: #e30613;
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 5px;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s;
	align-self: start;
	min-width: 150px;
}

.contact-form button:hover {
	background: #c10510;
}

/* Footer */
.footer {
	background: white;
	padding: 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-brand img {
	width: 150px;
}

.footer-brand p {
	color: #999;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-section h3 {
	color: #333;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-section a {
	display: block;
	color: #2463eb;
	text-decoration: none;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: #e30613;
}

.footer-section p {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.header {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}

	.nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.section {
		padding: 2rem 1.5rem;
	}

	.banner-section {
		flex-direction: column;
	}

	.gallery {
		grid-template-columns: 1fr;
	}

	.gallery .gallery-lg {
		grid-column: span 1;
	}

	.steps-container {
		grid-template-columns: 1fr;
	}

	.footer {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand {
		align-items: center;
	}

	.a-plus-badge {
		display: none;
	}
}
