:root {
	--navy: #0B1F3B;
	--graphite: #121826;
	--light: #E6EAF2;
	--gold: #D4AF37;
	--gold-hover: #B8962E;
	--overlay: rgba(11, 31, 59, 0.85);
}

* {
	box-sizing: border-box;
}

body {
	background-color: var(--navy);
	color: var(--light);
	font-family: 'Inter', sans-serif;
	margin: 0;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	color: var(--light);
	margin-bottom: 1rem;
}

/* Typography Responsiveness */
@media screen and (min-width: 1024px) {
	h1 {
		font-size: 3.5rem;
	}

	h2 {
		font-size: 2.2rem;
	}

	.site-name {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 1023px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.site-name {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 767px) {
	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.4rem;
	}

	.site-name {
		font-size: 0.9rem;
	}
}

.section-padding {
	padding: 80px 0;
}

.bg-darker {
	background-color: var(--graphite);
}

.text-center {
	text-align: center;
}

.mb-50 {
	margin-bottom: 50px;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(11, 31, 59, 0.95);
	backdrop-filter: blur(10px);
	padding: 15px 0;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-area {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--light);
}

.site-logo {
	height: 40px;
	margin-right: 15px;
}

.main-nav .menu {
	background: transparent;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: nowrap;
	gap: 5px;
}

.main-nav .menu li {
	background: transparent;
}

.main-nav .menu a {
	color: var(--light);
	font-weight: 600;
	transition: color 0.3s, background 0.3s;
	background: transparent;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.main-nav .menu a:hover,
.main-nav .menu a:focus {
	color: var(--gold);
	background: rgba(212, 175, 55, 0.1);
}

.burger-menu {
	display: none;
	background: none;
	border: none;
	color: var(--gold);
	font-size: 2rem;
	cursor: pointer;
}

/* Hero */
.full-height-hero {
	padding: 100px 0;
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.hero-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--overlay);
}

.capsule-wrapper {
	position: relative;
	z-index: 2;
	background: rgba(18, 24, 38, 0.6);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 50px;
	padding: 60px 40px;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-capsule-logo {
	height: 80px;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.scroll-arrow {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	font-size: 2.5rem;
	color: var(--gold);
	animation: bounce 2s infinite;
	margin-top: 20px;
	cursor: pointer;
	text-decoration: none;
	display: block;
	transition: color 0.3s;
}

.scroll-arrow:hover {
	color: var(--gold-hover);
}

/* Scroll offset for fixed header */
section[id] {
	scroll-margin-top: 80px;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0) translateX(-50%);
	}

	40% {
		transform: translateY(-10px) translateX(-50%);
	}

	60% {
		transform: translateY(-5px) translateX(-50%);
	}
}

/* Buttons */
.gold-btn,
.primary-gold-btn {
	background-color: var(--gold);
	color: var(--navy) !important;
	font-weight: 700;
	border-radius: 30px;
	transition: all 0.3s ease;
	border: none;
	padding: 15px 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gold-btn:hover,
.primary-gold-btn:hover {
	background-color: var(--gold-hover);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* About */
.marker-list {
	list-style: none;
	margin: 20px 0 0 0;
}

.marker-list li {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.marker-list i {
	color: var(--gold);
	font-size: 1.5rem;
	margin-right: 15px;
	margin-top: 3px;
}

.image-blur-wrapper {
	position: relative;
	padding: 20px;
}

.about-main-img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	object-fit: cover;
	height: 450px;
}

/* Services */
.service-card {
	background: var(--navy);
	border-radius: 15px;
	overflow: hidden;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.3s;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: var(--gold);
}

.card-img-holder {
	height: 250px;
	overflow: hidden;
}

.card-img-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-content {
	padding: 25px;
}

/* Support Cards */
.support-card {
	background: var(--graphite);
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	height: 100%;
	border-bottom: 3px solid transparent;
	transition: border-color 0.3s;
}

.support-card:hover {
	border-color: var(--gold);
}

.support-card i {
	font-size: 3rem;
	color: var(--gold);
	margin-bottom: 20px;
	display: block;
}

/* Advantages */
.advantage-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.advantage-item i {
	font-size: 2.5rem;
	color: var(--gold);
	margin-right: 20px;
	min-width: 50px;
}

.blur-bg-img {
	width: 100%;
	height: 400px;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	filter: blur(2px);
	border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Calculator */
.calculator-box {
	background: var(--graphite);
	padding: 50px;
	border-radius: 30px;
	border: 1px solid rgba(212, 175, 55, 0.2);
}

.total-display {
	margin-top: 40px;
	text-align: center;
	padding: 20px;
	background: rgba(212, 175, 55, 0.1);
	border-radius: 15px;
}

.total-display h3 {
	color: var(--gold);
	font-size: 3rem;
	margin: 10px 0 0 0;
}

input[type="range"] {
	accent-color: var(--gold);
	width: 100%;
}

/* Audience */
.audience-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	height: 350px;
}

.audience-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.audience-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px 25px;
	background: linear-gradient(to bottom, transparent 0%, rgba(11, 31, 59, 0.6) 30%, rgba(11, 31, 59, 0.92) 100%);
}

.audience-info h5 {
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.audience-info p {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	opacity: 0.95;
}

/* Pricing */
.pricing-card {
	background: var(--graphite);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s;
}

.pricing-card.featured {
	border: 2px solid var(--gold);
	transform: scale(1.05);
	background: var(--navy);
}

.price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--gold);
	margin: 20px 0;
}

.price span {
	font-size: 1rem;
	color: var(--light);
	opacity: 0.7;
}

.pricing-features {
	list-style: none;
	margin: 0 0 30px 0;
	padding: 0;
	text-align: left;
}

.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li::before {
	content: '✓';
	color: var(--gold);
	margin-right: 10px;
}

/* Trust */
.trust-img-holder img {
	width: 100%;
	border-radius: 20px;
	height: 400px;
	object-fit: cover;
}

/* Testimonials */
.testimonial-card {
	background: var(--graphite);
	padding: 30px;
	border-radius: 20px;
	position: relative;
	height: 100%;
}

.quote-icon {
	color: var(--gold);
	font-size: 2rem;
	margin-bottom: 15px;
}

.user-info {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.user-info img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
	object-fit: cover;
}

/* Footer */
.site-footer {
	background: #050e1a;
	padding: 60px 0 20px;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-tile {
	margin-bottom: 30px;
}

.footer-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--light);
	margin-bottom: 20px;
}

.footer-logo img {
	height: 30px;
	margin-right: 10px;
}

.footer-tile h5 {
	color: var(--gold);
	margin-bottom: 20px;
}

.footer-tile ul a {
	color: var(--light);
	opacity: 0.8;
	transition: opacity 0.3s;
}

.footer-tile ul a:hover {
	opacity: 1;
	color: var(--gold);
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.9rem;
	opacity: 0.6;
}

/* Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-content {
	background: var(--navy);
	padding: 40px;
	border-radius: 20px;
	max-width: 500px;
	width: 100%;
	position: relative;
	border: 1px solid var(--gold);
	overflow-y: auto;
	max-height: 90vh;
}

.close-modal {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	color: var(--light);
	font-size: 2rem;
	cursor: pointer;
}

.input-group input,
.input-group input[type="text"],
.input-group input[type="email"] {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	background: var(--graphite);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--light);
	border-radius: 8px;
	font-size: 1rem;
	box-shadow: none;
}

.input-group input:focus,
.input-group input[type="text"]:focus,
.input-group input[type="email"]:focus {
	background: var(--graphite);
	color: var(--light);
	border-color: var(--gold);
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
	outline: none;
}

.input-group input::placeholder {
	color: rgba(230, 234, 242, 0.4);
}

.modal-content h3 {
	color: var(--light);
}

.modal-content h3 span {
	color: var(--gold);
}

.thank-you-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--navy);
	z-index: 3000;
	display: none;
	align-items: center;
	justify-content: center;
}

.thank-you-screen i {
	font-size: 5rem;
	color: var(--gold);
	margin-bottom: 20px;
}

/* Mobile Nav */
@media screen and (max-width: 1100px) {
	.burger-menu {
		display: block;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--navy);
		display: none;
		padding: 20px;
		border-bottom: 1px solid var(--gold);
	}

	.main-nav.active {
		display: block;
	}

	.main-nav .menu {
		flex-direction: column;
	}

	.main-nav .menu li {
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 767px) {
	.capsule-wrapper {
		padding: 40px 20px;
		border-radius: 30px;
	}

	.pricing-card.featured {
		transform: none;
		margin: 20px 0;
	}

	.about-main-img,
	.blur-bg-img,
	.trust-img-holder img {
		height: 300px;
	}
}

/* Main container padding (top and sides) */
.regShieldWrap {
	padding: 30px 20px 0 20px;
	box-sizing: border-box;
}

/* Stock Typography Styles */
.regShieldWrap h1 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.2;
	color: #fff;
}

.regShieldWrap h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 14px;
	line-height: 1.2;
	color: #fff;
}

.regShieldWrap h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.3;
	color: #fff;
}

.regShieldWrap h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.3;
	color: #fff;
}

.regShieldWrap h5 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
	color: #fff;
}

.regShieldWrap p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #fff;
}

/* List Styles */
.regShieldWrap ul {
	margin-bottom: 15px;
	padding-left: 20px;
	list-style-type: disc;
}

.regShieldWrap li {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 6px;
	color: #fff;
}

/* Reset margin for the last element in container */
.regShieldWrap>*:last-child {
	margin-bottom: 0;
}