:root {
	--navy:   #0A1520;
	--navy-2: #0F1E2E;
	--navy-3: #152536;
	--gold:   #D4AF37;
	--gold-2: #EDD97A;
	--gold-dim: rgba(212,175,55,0.15);
	--emerald: #10B981;
	--emerald-2: #0EA271;
	--white:  #F5F0E8;
	--muted:  rgba(245,240,232,0.55);
	--border: rgba(212,175,55,0.18);
}

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

html { scroll-behavior: smooth; }

body {
	background: var(--navy);
	color: var(--white);
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}

/* ─── BACKGROUND TEXTURE ─── */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 10% 0%, rgba(212,175,55,0.06) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 90% 100%, rgba(16,185,129,0.05) 0%, transparent 60%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
}

/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 5vw;
	background: rgba(10,21,32,0.85);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
}

.logo-icon {
	width: 38px;
	height: 38px;
}

.logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.55rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 0.02em;
}

.logo-text span {
	color: var(--white);
	font-weight: 400;
	font-size: 0.85rem;
	display: block;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.7;
	line-height: 1;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2.2rem;
	list-style: none;
}

.nav-links a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.75;
	transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.btn-demo {
	background: var(--emerald);
	color: #fff;
	border: none;
	padding: 0.6rem 1.4rem;
	border-radius: 4px;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
}

.btn-demo:hover { background: var(--emerald-2); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 9rem 5vw 5rem;
}

/* Arch mosaic graphic */
.hero-arch {
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 700px;
	max-width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.07;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gold-dim);
	border: 1px solid var(--border);
	color: var(--gold);
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.38rem 0.9rem;
	border-radius: 100px;
	margin-bottom: 1.8rem;
	animation: fadeUp 0.7s ease both;
}

.hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.8rem, 6vw, 5.2rem);
	font-weight: 700;
	line-height: 1.08;
	color: var(--white);
	max-width: 820px;
	margin-bottom: 0.5rem;
	animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
	font-style: italic;
	color: var(--gold);
}

.tagline {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1rem, 2vw, 1.3rem);
	font-style: italic;
	color: var(--gold-2);
	letter-spacing: 0.04em;
	margin-bottom: 1.5rem;
	animation: fadeUp 0.7s 0.18s ease both;
}

.hero p {
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 600px;
	margin: 0 auto 2.4rem;
	animation: fadeUp 0.7s 0.25s ease both;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	animation: fadeUp 0.7s 0.33s ease both;
}

.btn-primary {
	background: var(--emerald);
	color: #fff;
	padding: 0.85rem 2rem;
	border-radius: 5px;
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(16,185,129,0.25);
}

.btn-primary:hover {
	background: var(--emerald-2);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(16,185,129,0.35);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 1px solid var(--border);
	padding: 0.85rem 2rem;
	border-radius: 5px;
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-outline:hover {
	border-color: var(--gold);
	background: var(--gold-dim);
	transform: translateY(-2px);
}

/* ─── MODULE PILLS ─── */
.pills-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
	margin-top: 3.5rem;
	animation: fadeUp 0.7s 0.42s ease both;
}

.pill {
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--border);
	color: var(--gold-2);
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	padding: 0.4rem 0.95rem;
	border-radius: 100px;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	transition: background 0.2s, border-color 0.2s;
	cursor: default;
}

.pill:hover {
	background: var(--gold-dim);
	border-color: rgba(212,175,55,0.45);
}

.pill-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--emerald);
	flex-shrink: 0;
}

/* ─── STATS BAR ─── */
.stats-bar {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: rgba(15,30,46,0.6);
	backdrop-filter: blur(10px);
	padding: 2rem 5vw;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.8rem 3.5vw;
	border-right: 1px solid var(--border);
	min-width: 140px;
}

.stat-item:last-child { border-right: none; }

.stat-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
}

.stat-label {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 0.3rem;
}

/* ─── SECTION HEADER ─── */
section {
	position: relative;
	z-index: 1;
}

.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-label {
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--emerald);
	margin-bottom: 0.8rem;
	display: block;
}

.section-header h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
}

.section-header h2 em {
	color: var(--gold);
	font-style: italic;
}

.section-header p {
	color: var(--muted);
	margin-top: 0.8rem;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* ─── FEATURES ─── */
.features {
	padding: 6rem 5vw;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
	gap: 1.4rem;
	max-width: 1160px;
	margin: 0 auto;
}

.feature-card {
	background: var(--navy-2);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 2rem 1.8rem;
	transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.feature-card:hover {
	border-color: rgba(212,175,55,0.4);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
	width: 46px; height: 46px;
	background: var(--gold-dim);
	border: 1px solid var(--border);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	font-size: 1.3rem;
}

.feature-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gold-2);
	margin-bottom: 0.6rem;
}

.feature-card p {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

.feature-tag {
	display: inline-block;
	margin-top: 1rem;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--emerald);
	background: rgba(16,185,129,0.08);
	border: 1px solid rgba(16,185,129,0.2);
	padding: 0.22rem 0.65rem;
	border-radius: 100px;
}

/* ─── PRICING ─── */
.pricing {
	padding: 6rem 5vw;
	background: linear-gradient(180deg, transparent, rgba(15,30,46,0.5), transparent);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.2rem;
	max-width: 1100px;
	margin: 0 auto 2.5rem;
}

.pricing-card {
	background: var(--navy-2);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 2rem 1.6rem;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s, transform 0.2s;
	position: relative;
}

.pricing-card.featured {
	border-color: var(--gold);
	background: var(--navy-3);
	transform: scale(1.025);
	box-shadow: 0 0 40px rgba(212,175,55,0.12);
}

.pricing-badge {
	position: absolute;
	top: -12px; left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--navy);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.22rem 0.8rem;
	border-radius: 100px;
	white-space: nowrap;
}

.pricing-card:hover:not(.featured) {
	border-color: rgba(212,175,55,0.35);
	transform: translateY(-3px);
}

.plan-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 0.4rem;
}

.plan-price {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.plan-price sup {
	font-size: 1.1rem;
	vertical-align: super;
	font-weight: 400;
}

.plan-price .per {
	font-size: 0.85rem;
	color: var(--muted);
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
}

.plan-desc {
	color: var(--muted);
	font-size: 0.82rem;
	margin-bottom: 1.4rem;
	min-height: 2.5em;
}

.plan-divider {
	border: none;
	border-top: 1px solid var(--border);
	margin-bottom: 1.2rem;
}

.plan-features {
	list-style: none;
	flex: 1;
	margin-bottom: 1.6rem;
}

.plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 0.55rem;
}

.plan-features li::before {
	content: '✓';
	color: var(--emerald);
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}

.btn-plan {
	display: block;
	text-align: center;
	padding: 0.75rem 1rem;
	border-radius: 5px;
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-plan.outline {
	border: 1px solid var(--border);
	color: var(--white);
}

.btn-plan.outline:hover {
	border-color: var(--gold);
	background: var(--gold-dim);
}

.btn-plan.solid {
	background: var(--emerald);
	color: #fff;
	border: none;
	box-shadow: 0 4px 14px rgba(16,185,129,0.25);
}

.btn-plan.solid:hover {
	background: var(--emerald-2);
	transform: translateY(-1px);
}

/* Founding Partner callout */
.founding-callout {
	max-width: 680px;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
	border: 1px solid rgba(212,175,55,0.35);
	border-radius: 10px;
	padding: 1.8rem 2rem;
	text-align: center;
}

.founding-callout h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 0.5rem;
}

.founding-callout p {
	color: var(--muted);
	font-size: 0.9rem;
	margin-bottom: 1.2rem;
}

.discount-badge {
	display: inline-block;
	background: var(--gold);
	color: var(--navy);
	font-weight: 700;
	font-size: 1.5rem;
	padding: 0.2rem 0.8rem;
	border-radius: 4px;
	margin-bottom: 0.5rem;
	font-family: 'Cormorant Garamond', serif;
}

/* ─── CONTACT ─── */
.contact-section {
	padding: 5rem 5vw 6rem;
	max-width: 680px;
	margin: 0 auto;
	scroll-margin-top: 5.5rem;
}

.contact-section__cta {
	text-align: center;
	margin-top: 1.5rem;
}

.contact-section__cta .btn-primary {
	border: none;
	cursor: pointer;
	font-family: 'DM Sans', sans-serif;
}

/* ─── CONTACT MODAL ─── */
body.riwaq-modal-open {
	overflow: hidden;
}

.riwaq-modal[hidden] {
	display: none;
}

.riwaq-modal.is-open {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	box-sizing: border-box;
}

.riwaq-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 10, 18, 0.75);
	backdrop-filter: blur(6px);
}

.riwaq-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
	max-height: min(90vh, 720px);
	overflow-y: auto;
	background: var(--navy-2);
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.riwaq-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.35rem 1.35rem 0.75rem;
	border-bottom: 1px solid var(--border);
}

.riwaq-modal__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

.riwaq-modal__close {
	flex-shrink: 0;
	background: transparent;
	border: 1px solid var(--border);
	color: var(--white);
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 6px;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.riwaq-modal__close:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.riwaq-modal__body {
	padding: 1.25rem 1.35rem 1.5rem;
}

.riwaq-modal__body .contact-notice {
	margin-bottom: 1rem;
}

.riwaq-modal__body .contact-form__grid {
	grid-template-columns: 1fr;
}

@media (min-width: 480px) {
	.riwaq-modal__body .contact-form__grid {
		grid-template-columns: 1fr 1fr;
	}
	.riwaq-modal__body .contact-form__field--full {
		grid-column: 1 / -1;
	}
}

.contact-notice {
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	font-size: 0.92rem;
	line-height: 1.5;
}

.contact-notice--success {
	background: rgba(16,185,129,0.12);
	border: 1px solid rgba(16,185,129,0.35);
	color: var(--white);
}

.contact-notice--error {
	background: rgba(239,68,68,0.1);
	border: 1px solid rgba(239,68,68,0.35);
	color: var(--white);
}

.contact-form {
	position: relative;
}

.contact-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.25rem;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.contact-form__field--full {
	grid-column: 1 / -1;
}

.contact-form label {
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--muted);
}

.contact-form .required {
	color: var(--gold);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	background: var(--navy-2);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 0.65rem 0.85rem;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.95rem;
	color: var(--white);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(245,240,232,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: rgba(212,175,55,0.5);
	box-shadow: 0 0 0 2px var(--gold-dim);
}

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

.contact-form__actions {
	margin-top: 1.25rem;
}

.contact-form__actions .btn-primary {
	border: none;
	cursor: pointer;
	font-family: 'DM Sans', sans-serif;
}

.contact-form__fine-print {
	margin-top: 1rem;
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.5;
}

/* Honeypot: hidden from users, not display:none (some bots ignore display:none) */
.riwaq-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* ─── FOOTER ─── */
footer {
	position: relative;
	z-index: 1;
	border-top: 1px solid var(--border);
	padding: 3rem 5vw 2rem;
	text-align: center;
}

.footer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 1.5rem;
}

.footer-hadith {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	color: var(--gold-2);
	font-size: 1rem;
	max-width: 580px;
	margin: 0 auto 0.5rem;
	line-height: 1.6;
}

.footer-hadith-attr {
	font-size: 0.75rem;
	color: var(--muted);
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
}

.footer-copy {
	font-size: 0.78rem;
	color: var(--muted);
	letter-spacing: 0.04em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ─── HAMBURGER BUTTON (mobile only) ─── */
.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 8px 10px;
	cursor: pointer;
	z-index: 110;
	margin-left: auto;
}

.nav-hamburger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.2s;
	transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── ABOUT SECTION ─── */
.about-section {
	position: relative;
	z-index: 1;
	padding: 5rem 5vw;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: rgba(15, 30, 46, 0.4);
}

.about-inner {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 3rem;
	align-items: start;
}

.about-avatar {
	display: flex;
	justify-content: center;
}

.about-avatar svg {
	width: 100px;
	height: 100px;
	opacity: 0.85;
}

.about-content .section-label {
	text-align: left;
}

.about-content h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
	margin: 0.5rem 0 1.2rem;
}

.about-content h2 em {
	color: var(--gold);
	font-style: italic;
}

.about-content p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.about-content strong {
	color: var(--white);
	font-weight: 500;
}

.about-location {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.82rem !important;
	color: var(--gold-2) !important;
	letter-spacing: 0.04em;
	margin-top: 0.5rem;
}

/* ─── SELECT (qualifying dropdown) ─── */
.contact-form select {
	width: 100%;
	background: var(--navy-2);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 0.65rem 0.85rem;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.95rem;
	color: var(--white);
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form select:focus {
	outline: none;
	border-color: rgba(212, 175, 55, 0.5);
	box-shadow: 0 0 0 2px var(--gold-dim);
}

.contact-form select option {
	background: var(--navy-2);
	color: var(--white);
}

/* ─── FOOTER LINKS ─── */
.footer-links {
	font-size: 0.8rem;
	color: var(--muted);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.footer-links a {
	color: var(--gold-2);
	text-decoration: none;
	opacity: 0.75;
	transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
	.nav-hamburger { display: flex; }

	.nav-links {
		display: flex !important;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		position: fixed;
		top: 0;
		right: 0;
		width: min(80vw, 280px);
		height: 100dvh;
		background: var(--navy-2);
		border-left: 1px solid var(--border);
		padding: 5rem 1.5rem 2rem;
		transform: translateX(110%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 105;
		overflow-y: auto;
	}

	.nav-links.is-open {
		transform: translateX(0);
	}

	.nav-links li {
		width: 100%;
		border-bottom: 1px solid var(--border);
	}

	.nav-links li:last-child {
		border-bottom: none;
		margin-top: 1rem;
	}

	.nav-links a {
		display: block;
		padding: 1rem 0;
		font-size: 1rem;
		text-transform: none;
		letter-spacing: 0.02em;
		opacity: 1;
	}

	.btn-demo {
		width: 100%;
		text-align: center;
		padding: 0.75rem 1rem;
	}

	.nav-overlay {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(5, 10, 18, 0.6);
		backdrop-filter: blur(3px);
		z-index: 104;
	}

	.nav-overlay.is-open {
		display: block;
	}

	.about-inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.about-avatar {
		display: none;
	}

	.stat-item { border-right: none; border-bottom: 1px solid var(--border); }
	.stat-item:last-child { border-bottom: none; }
	.pricing-card.featured { transform: none; }
	.contact-form__grid { grid-template-columns: 1fr; }
}
