:root {
	--gold: #2563eb;
	--gold-light: #60a5fa;
	--dark: #ffffff;
	--dark-2: #f8fafc;
	--dark-3: #f1f5f9;
	--dark-4: #e2e8f0;
	--text: #0f172a;
	--text-muted: #475569;
	--border: rgba(37, 99, 235, 0.1);
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Inter", sans-serif;
	background: var(--dark);
	color: var(--text);
	font-size: 17px;
	line-height: 1.7;
}
h1,
h2,
h3,
h4 {
	font-family: "Outfit", sans-serif;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* NAV */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(16px);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.nav-logo {
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-decoration: none;
}
.nav-logo-main {
	font-family: "Outfit", sans-serif;
	font-size: 1.25rem;
	color: var(--gold);
	font-weight: 700;
}
.nav-logo-sub {
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.nav-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.nav-cta {
	display: none;
	padding: 0.6rem 1.6rem;
	background: var(--gold);
	color: var(--dark);
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.25s;
}
.nav-cta:hover {
	background: var(--gold-light);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}
@media (min-width: 768px) {
	.nav-cta {
		display: inline-block;
	}
}
.menu-btn {
	background: none;
	border: 1px solid var(--border);
	color: var(--gold);
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.25s;
}
.menu-btn:hover {
	background: var(--border);
}

/* HERO */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: var(--dark);
	padding-top: 80px;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background: url("./img/bg.png") center/cover no-repeat;
	opacity: 0.3;
}
.hero-glow-1 {
	position: absolute;
	top: -10%;
	right: -5%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(201, 168, 76, 0.12) 0%,
		transparent 70%
	);
}
.hero-glow-2 {
	position: absolute;
	bottom: -10%;
	left: -5%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(201, 168, 76, 0.07) 0%,
		transparent 70%
	);
}
.hero-content {
	position: relative;
	z-index: 2;
	padding: 4rem 0;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 1.2rem;
	border-radius: 50px;
	border: 1px solid var(--border);
	background: rgba(201, 168, 76, 0.05);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 2rem;
}
.hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.5);
	}
}
.hero h1 {
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--text);
	margin-bottom: 1.5rem;
	max-width: 900px;
}
.hero h1 em {
	color: var(--gold);
	font-style: italic;
}
.hero-sub {
	font-size: 1.2rem;
	color: var(--text);
	max-width: 600px;
	margin-bottom: 3rem;
	font-weight: 300;
}
.hero-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 5rem;
}
.btn-primary {
	padding: 1rem 2.5rem;
	background: var(--gold);
	color: var(--dark);
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.btn-primary:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(37, 99, 235, 0.25);
}
.btn-secondary {
	padding: 1rem 2.5rem;
	background: transparent;
	color: var(--text);
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s;
	border: 1px solid var(--gold);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.btn-secondary:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(37, 99, 235, 0.05);
	transform: translateY(-2px);
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	padding-top: 3rem;
	border-top: 1px solid var(--border);
	max-width: 700px;
}
@media (min-width: 600px) {
	.hero-stats {
		grid-template-columns: repeat(4, 1fr);
	}
}
.hero-stat-num {
	font-family: "Outfit", sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--gold);
}
.hero-stat-label {
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-top: 0.25rem;
}
/* SECTION HEADERS */
.section-tag {
	display: inline-block;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}
.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--text);
	margin-bottom: 1rem;
}
.section-desc {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 620px;
	font-weight: 300;
}
.gold-line {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent);
	margin-bottom: 1.5rem;
	border-radius: 2px;
}

/* SECTION: OFFERS */
.section-offers {
	padding: 7rem 0;
}
.offers-header {
	margin-bottom: 4rem;
}
.offers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.offers-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.offer-card {
	background: var(--dark-3);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2.5rem;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.offer-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}
.offer-card:hover {
	transform: translateY(-6px);
	border-color: var(--gold);
	box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
}
.offer-card:hover::before {
	opacity: 1;
}
.offer-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(201, 168, 76, 0.1);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--gold);
}
.offer-card h3 {
	font-size: 1.3rem;
	color: var(--text);
	margin-bottom: 0.8rem;
}
.offer-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* SECTION: FEATURES */
.section-features {
	padding: 7rem 0;
	background: var(--dark-2);
}
.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
}
@media (min-width: 768px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.feature-item {
	background: var(--dark);
	padding: 2.5rem;
	transition: background 0.3s;
}
.feature-item:hover {
	background: var(--dark-2);
}
.feature-num {
	font-family: "Outfit", sans-serif;
	font-size: 3rem;
	color: rgba(37, 99, 235, 0.08);
	font-weight: 800;
	line-height: 1;
	margin-bottom: 1rem;
}
.feature-item h3 {
	font-size: 1.15rem;
	color: var(--gold);
	margin-bottom: 0.6rem;
}
.feature-item p {
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* SECTION: ABOUT */
.section-about {
	padding: 7rem 0;
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.about-img-wrap {
	position: relative;
}
.about-img {
	width: 100%;
	border-radius: 20px;
	display: block;
	border: 1px solid var(--border);
}
.about-img-badge {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	background: var(--gold);
	color: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	font-family: "Outfit", sans-serif;
}
.about-img-badge .num {
	font-size: 2.5rem;
	font-weight: 800;
	display: block;
	line-height: 1;
}
.about-img-badge .lbl {
	font-size: 0.7rem;
	font-style: normal;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* SECTION: WHY */
.section-why {
	padding: 7rem 0;
	background: var(--dark-2);
}
.why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 4rem;
}
@media (min-width: 768px) {
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.why-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.why-card {
	background: var(--dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	transition: all 0.3s;
}
.why-card:hover {
	border-color: var(--gold);
	transform: translateY(-4px);
}
.why-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 10px;
	background: rgba(37, 99, 235, 0.05);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
}
.why-card h3 {
	font-size: 1.05rem;
	color: var(--text);
	margin-bottom: 0.4rem;
	font-family: "Inter", sans-serif;
	font-weight: 600;
}
.why-card p {
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* SECTION: REVIEWS */
.section-reviews {
	padding: 7rem 0;
}
.reviews-header {
	margin-bottom: 4rem;
}
.reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.review-card {
	background: var(--dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	transition: all 0.3s;
}
.review-card:hover {
	border-color: var(--gold);
	transform: translateY(-4px);
}
.review-quote {
	font-size: 4rem;
	color: var(--gold);
	opacity: 0.3;
	font-family: "Playfair Display", serif;
	line-height: 0.8;
	margin-bottom: 1rem;
}
.review-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}
.review-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.review-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--border);
}
.review-name {
	font-weight: 600;
	color: var(--text-muted);
	font-size: 0.95rem;
}
.review-stars {
	color: var(--gold);
	font-size: 0.8rem;
}

/* SECTION: FAQ */
.section-faq {
	padding: 7rem 0;
	background: var(--dark-2);
}
.faq-list {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
}
.faq-item {
	background: var(--dark-2);
}
.faq-question {
	width: 100%;
	text-align: left;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	color: var(--text);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	transition: background 0.2s;
}
.faq-question:hover {
	background: var(--dark-3);
}
.faq-answer {
	padding: 0 2rem 1.5rem;
	color: var(--text);
	line-height: 1.7;
	display: none;
}
.faq-item.open .faq-answer {
	display: block;
}
.faq-chevron {
	min-width: 20px;
	color: var(--gold);
	transition: transform 0.3s;
}
.faq-item.open .faq-chevron {
	transform: rotate(180deg);
}

/* SECTION: CONTACT */
.section-contact {
	padding: 7rem 0;
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}
@media (min-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}
.contact-form-wrap {
	background: var(--dark-3);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.5rem;
}
.contact-form-wrap h3 {
	font-size: 1.8rem;
	color: #000000;
	margin-bottom: 0.5rem;
}
.contact-form-wrap p {
	color: var(--text);
	opacity: 0.8;
	margin-bottom: 2rem;
	font-size: 0.95rem;
}
.form-group {
	margin-bottom: 1.2rem;
}
.form-group label {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
	font-weight: 500;
}
.form-group input,
.form-group textarea {
	width: 100%;
	background: var(--dark-4);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 0.9rem 1.1rem;
	color: #000000;
	font-family: "Inter", sans-serif;
	font-size: 0.95rem;
	transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--gold);
}
.form-group textarea {
	resize: none;
	height: 120px;
}
.contact-info p {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 3rem;
}
.contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.contact-detail-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: rgba(201, 168, 76, 0.1);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
}
.contact-detail-text .label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
}
.contact-detail-text .value {
	color: var(--text-muted);
	font-weight: 500;
	margin-top: 2px;
}

/* FOOTER */
.site-footer {
	background: var(--dark-2);
	border-top: 1px solid var(--border);
	padding: 4rem 0 2rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.footer-brand-name {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	color: var(--gold);
	margin-bottom: 0.3rem;
}
.footer-brand-sub {
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.footer-nav-title {
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
	font-weight: 600;
}
.footer-nav-list {
	list-style: none;
}
.footer-nav-list li {
	margin-bottom: 0.5rem;
}
.footer-nav-list a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}
.footer-nav-list a:hover {
	color: var(--gold);
}
.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.footer-bottom p {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* SCROLL TO TOP */
#scrollToTopBtn {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 99;
	width: 48px;
	height: 48px;
	background: var(--gold);
	color: var(--dark);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
	transition: all 0.3s;
}
#scrollToTopBtn:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
}

/* DIVIDER */
.divider {
	width: 100%;
	height: 1px;
	background: var(--border);
	margin: 0;
}

/* HEADER INCLUDE */
#HEADER,
#FOOTER {
	display: block;
}
