/**
 * MMG Events Landing Page
 * Main color: #8EC14A
 * Logo accents: #FCD116, #0590D5, #E72041 (used sparingly)
 */

:root {
	--mmg-primary: #8EC14A;
	--mmg-primary-dark: #7aad3e;
	--mmg-primary-light: #a3d15e;
	--mmg-accent-yellow: #FCD116;
	--mmg-accent-blue: #0590D5;
	--mmg-accent-red: #E72041;
	--mmg-dark: #0f1211;
	--mmg-dark-soft: #171d1a;
	--mmg-dark-elevated: #1d2622;
	--mmg-dark-card: rgba(255, 255, 255, 0.04);
	--mmg-text: #ffffff;
	--mmg-text-muted: rgba(255, 255, 255, 0.78);
	--mmg-border: rgba(255, 255, 255, 0.12);
	--mmg-border-strong: rgba(255, 255, 255, 0.2);
	--mmg-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	--mmg-radius-lg: 18px;
	--mmg-radius-md: 12px;
	--mmg-section-padding: 96px;
	--mmg-section-padding-mobile: 64px;
	--mmg-content-width: 1200px;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body.mmg-events-landing {
	background: var(--mmg-dark);
	color: var(--mmg-text);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	max-width: 100vw;
}

body.mmg-events-landing::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(800px 500px at 90% -5%, rgba(142, 193, 74, 0.17), transparent 65%),
		radial-gradient(700px 420px at -10% 65%, rgba(5, 144, 213, 0.09), transparent 65%);
	z-index: -1;
}

#page.site {
	overflow-x: hidden;
	max-width: 100%;
}

#content.site-content {
	overflow-x: hidden;
	max-width: 100%;
}

/* Prevent fixed header from covering section content when scrolling to anchors */
.landing-section[id] {
	scroll-margin-top: 88px;
}

.mmg-events-landing-page.site-main {
	overflow-x: hidden;
	max-width: 100%;
}

.mmg-events-landing-page .content-wrapper {
	max-width: var(--mmg-content-width);
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	padding: 16px 0;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
	background: rgba(12, 14, 13, 0.9);
	backdrop-filter: blur(12px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	box-sizing: border-box;
	min-width: 0;
}

.site-branding {
	min-width: 0;
	flex-shrink: 1;
}

.site-branding .site-logo {
	display: block;
	max-width: 100%;
}

.site-branding .site-logo img {
	height: 48px;
	width: auto;
	max-width: 100%;
	display: block;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.header-nav .nav-link {
	color: var(--mmg-text);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 8px 0;
	position: relative;
	transition: color 0.2s;
}

.header-nav .nav-link:hover {
	color: var(--mmg-primary);
}

.header-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 0;
	height: 2px;
	background: var(--mmg-primary);
	transition: width 0.2s ease;
}

.header-nav .nav-link:hover::after,
.header-nav .nav-link.is-active::after {
	width: 100%;
}

.header-nav .nav-link.is-active {
	color: var(--mmg-primary-light);
}

.header-cta .btn-primary {
	display: inline-block;
	padding: 12px 22px;
	background: linear-gradient(135deg, var(--mmg-primary), var(--mmg-primary-light));
	color: #1a1a1a;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 8px 24px rgba(142, 193, 74, 0.35);
	transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(142, 193, 74, 0.45);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 14px 28px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
	cursor: pointer;
	border: 2px solid transparent;
	font-size: 0.9rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--mmg-primary), var(--mmg-primary-light));
	color: #1a1a1a;
	box-shadow: 0 10px 26px rgba(142, 193, 74, 0.28);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(142, 193, 74, 0.38);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.03);
	color: var(--mmg-text);
	border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
	border-color: var(--mmg-primary);
	color: var(--mmg-primary);
	transform: translateY(-2px);
}

/* Mobile menu */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
}

.hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--mmg-text);
	margin: 5px 0;
	transition: transform 0.3s, opacity 0.3s;
}

body.mobile-menu-open .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
body.mobile-menu-open .hamburger-line:nth-child(2) { opacity: 0; }
body.mobile-menu-open .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 13, 12, 0.96);
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.mobile-menu-open {
	overflow: hidden;
}


.mobile-menu-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.mobile-menu-nav .mobile-nav-link {
	color: var(--mmg-text);
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.mobile-menu-nav .mobile-cta {
	margin-top: 16px;
}

@media (max-width: 1024px) {
	.header-nav,
	.header-cta {
		display: none;
	}
	.mobile-menu-toggle {
		display: block;
	}
	.header-container {
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.header-container {
		padding: 0 16px;
	}
	.site-branding .site-logo img {
		height: 40px;
	}
	.mmg-events-landing-page .content-wrapper {
		padding: 0 16px;
	}
}

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

.hero-background {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, #0f1419 0%, #1a2520 50%, #0f1419 100%);
}

.hero-bg-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 100%),
		radial-gradient(ellipse at center, rgba(142, 193, 74, 0.12) 0%, transparent 62%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 80px 24px 100px;
	box-sizing: border-box;
	max-width: 100%;
	width: 100%;
}

.hero-eyebrow {
	display: inline-block;
	margin: 0 0 18px;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--mmg-primary-light);
	border: 1px solid rgba(142, 193, 74, 0.42);
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(142, 193, 74, 0.12);
}

.hero-title {
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
	font-family: "Sora", "Manrope", sans-serif;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-subheadline {
	font-size: clamp(18px, 2.2vw, 22px);
	color: var(--mmg-text-muted);
	margin: 0 0 12px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.hero-micro {
	font-size: 1rem;
	color: var(--mmg-text-muted);
	opacity: 0.9;
	margin: 0 0 32px;
}

.hero-proof-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 40px;
	margin-bottom: 44px;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--mmg-text-muted);
}

.hero-proof-strip span::before {
	content: "✓ ";
	color: var(--mmg-primary);
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.hero-ctas .btn {
	min-width: 200px;
	text-align: center;
	box-sizing: border-box;
}

@media (max-width: 480px) {
	.hero-ctas {
		width: 100%;
	}
	.hero-ctas .btn {
		min-width: 0;
		width: 100%;
	}
}

/* Sections common */
.landing-section {
	padding: var(--mmg-section-padding) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
}

.section-title {
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 700;
	text-align: center;
	margin: 0 0 18px;
	letter-spacing: -0.02em;
	font-family: "Sora", "Manrope", sans-serif;
}

.landing-services .section-title,
.landing-how .section-title,
.landing-why .section-title,
.landing-founders .section-title,
.landing-team .section-title {
	color: var(--mmg-primary);
}

.section-intro {
	margin: 0 auto 44px;
	max-width: 760px;
	text-align: center;
	color: var(--mmg-text-muted);
	font-size: 1.02rem;
}

/* Services */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.service-card {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	border: 1px solid var(--mmg-border);
	border-radius: var(--mmg-radius-lg);
	padding: 36px 28px;
	text-align: center;
	box-shadow: var(--mmg-shadow);
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
	border-color: var(--mmg-primary);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.service-card-image {
	height: 140px;
	margin: -1px -1px 0 -1px;
	border-radius: var(--mmg-radius-lg) var(--mmg-radius-lg) 0 0;
	overflow: hidden;
	background: var(--mmg-dark);
}

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

.service-card-icon {
	margin-bottom: 16px;
}

.service-card-icon img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	filter: drop-shadow(0 6px 14px rgba(142, 193, 74, 0.2));
}

.service-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--mmg-text);
}

.service-card-desc {
	font-size: 0.95rem;
	color: var(--mmg-text-muted);
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
	.landing-section {
		padding: var(--mmg-section-padding-mobile) 0;
	}
	.section-intro {
		margin-bottom: 30px;
	}
}

/* How We Work */
.how-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.how-step {
	text-align: center;
	padding: 32px 20px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	border-radius: var(--mmg-radius-md);
	border-left: 4px solid var(--mmg-primary);
	position: relative;
	overflow: hidden;
}

.how-step::before {
	content: "";
	position: absolute;
	inset: auto -20px -40px auto;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(142, 193, 74, 0.2), transparent 70%);
	pointer-events: none;
}

.how-step-num {
	display: inline-block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	background: var(--mmg-primary);
	color: #1a1a1a;
	font-weight: 700;
	font-size: 1.25rem;
	border-radius: 50%;
	margin-bottom: 16px;
}

.how-step-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
	color: var(--mmg-text);
}

@media (max-width: 900px) {
	.how-timeline {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	.how-timeline {
		grid-template-columns: 1fr;
	}
}

/* Team */
.team-founders {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-bottom: 48px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}

.team-key-roles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	min-width: 0;
}

.team-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
	border-radius: var(--mmg-radius-lg);
	overflow: hidden;
	border: 1px solid var(--mmg-border);
	box-shadow: var(--mmg-shadow);
	transition: border-color 0.2s, transform 0.2s;
	text-align: center;
	min-width: 0;
}

.team-card .team-card-image {
	flex-shrink: 0;
	margin-top: 20px;
}

.team-card:hover {
	border-color: rgba(142, 193, 74, 0.4);
	transform: translateY(-3px);
}

.team-card--founder .team-card-image {
	margin-top: 16px;
}

.team-card-image {
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--mmg-dark);
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.15);
	margin: 0 auto;
	width: 140px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transform: scale(1.01);
	transition: transform 0.35s ease;
}

.team-card:hover .team-card-image img {
	transform: scale(1.05);
}

.team-card-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--mmg-dark) 0%, #2a3328 100%);
}

.avatar-initials {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--mmg-primary);
	opacity: 0.9;
}

.team-card--founder .team-card-image {
	width: 120px;
	height: 120px;
	aspect-ratio: 1;
}

.team-card--founder .team-card-image img {
	object-fit: cover;
}

.team-card--founder .team-card-name {
	font-size: 1.05rem;
	padding-top: 14px;
}

.team-card--founder .team-card-role {
	font-size: 0.82rem;
	margin-bottom: 8px;
}

.team-card--founder .team-card-bio {
	font-size: 0.85rem;
	padding-bottom: 16px;
}

.team-card-name,
.team-card-role,
.team-card-bio {
	padding: 0 16px;
	margin: 0;
}

.team-card--founder .team-card-name,
.team-card--founder .team-card-role,
.team-card--founder .team-card-bio {
	padding: 0 14px;
}

.team-card-name {
	padding-top: 20px;
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.team-card-role {
	font-size: 0.9rem;
	color: var(--mmg-primary);
	margin-bottom: 10px;
	font-weight: 600;
}

.team-card-bio {
	font-size: 0.9rem;
	color: var(--mmg-text-muted);
	padding-bottom: 20px;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.team-founders {
		grid-template-columns: 1fr;
	}
	.team-key-roles {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.team-founders,
	.team-key-roles {
		display: flex;
		flex-direction: column;
		gap: 28px;
	}
}

@media (max-width: 600px) {
	.team-key-roles {
		grid-template-columns: 1fr;
	}
	.mmg-events-landing-page .content-wrapper {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Why Us */
.why-list {
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 560px;
	margin: 0 auto;
}

.why-list li {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 1.05rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 12px;
	margin-bottom: 10px;
}

.why-list li:last-child {
	margin-bottom: 0;
}

.why-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	background: var(--mmg-primary);
	border-radius: 50%;
}

.why-icon::after {
	content: "";
	display: block;
	width: 10px;
	height: 6px;
	margin: 8px 0 0 6px;
	border-left: 2px solid #1a1a1a;
	border-bottom: 2px solid #1a1a1a;
	transform: rotate(-45deg);
}

/* Proof */
.proof-block {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	border-radius: var(--mmg-radius-lg);
	padding: 40px;
	border: 1px solid var(--mmg-border);
	box-shadow: var(--mmg-shadow);
}

.proof-intro {
	text-align: center;
	color: var(--mmg-text-muted);
	margin: 0 0 32px;
}

.proof-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 24px;
}

.proof-metric {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 18px;
	text-align: center;
}

.proof-metric-value {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--mmg-primary-light);
	font-family: "Sora", "Manrope", sans-serif;
}

.proof-metric-label {
	font-size: 0.84rem;
	color: var(--mmg-text-muted);
	margin-top: 6px;
}

.proof-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.proof-placeholder {
	background: var(--mmg-dark);
	border: 2px dashed var(--mmg-border);
	border-radius: 8px;
	padding: 40px 24px;
	text-align: center;
	color: var(--mmg-text-muted);
	font-size: 0.95rem;
}

.proof-testimonial {
	margin: 0;
	padding: 26px;
	font-style: italic;
	color: var(--mmg-text-muted);
	border-left: 4px solid var(--mmg-primary);
	background: rgba(8, 10, 9, 0.58);
	border-radius: 0 8px 8px 0;
	font-size: 1.03rem;
}

@media (max-width: 900px) {
	.proof-metrics {
		grid-template-columns: 1fr;
	}
}

/* Contact form – glassmorphism card */
.landing-contact .content-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-wrapper {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}


.contact-intro {
	text-align: center;
	color: var(--mmg-text-muted);
	margin: 0 0 32px;
	font-size: 1rem;
}

.contact-form-card {
	max-width: 500px;
	box-sizing: border-box;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 28px 24px 24px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
	position: relative;
	min-width: 0;
}

.form-card-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	background: rgba(142, 193, 74, 0.2);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mmg-primary);
	font-size: 1.5rem;
}

.form-card-title {
	text-align: center;
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--mmg-text);
}

.form-card-subtitle {
	text-align: center;
	color: var(--mmg-text-muted);
	font-size: 0.92rem;
	margin: 0 0 20px;
}

/* Event type option rows */
.form-option-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 22px;
	min-width: 0;
}

.form-option-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	min-width: 0;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

.form-option-row:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
}

.form-option-row:has(.form-option-input:checked),
.form-option-row.is-selected {
	background: rgba(142, 193, 74, 0.12);
	border-color: var(--mmg-primary);
}

.form-option-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.form-option-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: var(--mmg-primary);
	color: #0f1211;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}

.form-option-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.form-option-title {
	font-weight: 600;
	color: var(--mmg-text);
	font-size: 0.98rem;
}

.form-option-desc {
	font-size: 0.82rem;
	color: var(--mmg-text-muted);
}

.form-option-arrow {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.75rem;
}

/* Form fields – keep inputs inside card */
.contact-form.glass-form {
	box-sizing: border-box;
	min-width: 0;
}

.contact-form.glass-form .form-fields {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.contact-form.glass-form .form-row {
	min-width: 0;
	box-sizing: border-box;
}

.form-row-double {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	min-width: 0;
}

@media (max-width: 420px) {
	.form-row-double {
		grid-template-columns: 1fr;
	}
}

.contact-form.glass-form .form-row label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--mmg-text-muted);
}

.contact-form.glass-form .form-row input,
.contact-form.glass-form .form-row select,
.contact-form.glass-form .form-row textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	color: var(--mmg-text);
	font-size: 0.98rem;
	font-family: inherit;
	transition: border-color 0.2s;
	min-width: 0;
}

.contact-form.glass-form .form-row input::placeholder,
.contact-form.glass-form .form-row textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.contact-form.glass-form .form-row input:focus,
.contact-form.glass-form .form-row select:focus,
.contact-form.glass-form .form-row textarea:focus {
	outline: none;
	border-color: var(--mmg-primary);
	background: rgba(255, 255, 255, 0.06);
}

.input-with-icon {
	position: relative;
}

.input-with-icon .input-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.9rem;
	pointer-events: none;
}

.input-with-icon input {
	padding-left: 40px !important;
}

.form-row-half {
	width: 100%;
}

.form-row-full {
	width: 100%;
}

.contact-form .form-row .required {
	color: var(--mmg-accent-red);
}

.contact-form.glass-form .form-actions {
	margin-top: 20px;
}

.contact-form.glass-form .form-actions .btn {
	width: 100%;
	padding: 14px 24px;
	font-size: 1rem;
	justify-content: center;
	gap: 10px;
	border-radius: 12px;
}

.btn-with-icon {
	display: inline-flex;
	align-items: center;
}

.btn-with-icon i {
	font-size: 0.95rem;
}

.contact-form .form-message {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 0.92rem;
	display: none;
}

.contact-form .form-message.success {
	display: block;
	background: rgba(142, 193, 74, 0.2);
	border: 1px solid var(--mmg-primary);
	color: var(--mmg-primary-light);
}

.contact-form .form-message.error {
	display: block;
	background: rgba(231, 32, 65, 0.15);
	border: 1px solid var(--mmg-accent-red);
	color: #ff6b6b;
}

.contact-next-steps {
	text-align: center;
	margin-top: 20px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--mmg-text-muted);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.contact-next-steps i {
	color: var(--mmg-primary);
	font-size: 1rem;
}

@media (max-width: 600px) {
	.contact-form-card {
		padding: 22px 18px 20px;
		border-radius: 20px;
	}
	.form-option-row {
		padding: 12px 14px;
	}
	.form-option-icon {
		width: 36px;
		height: 36px;
		min-width: 36px;
		font-size: 0.85rem;
	}
}

/* Footer */
.site-footer {
	background: rgba(12, 16, 14, 0.85);
	padding: 48px 24px 32px;
	border-top: 1px solid var(--mmg-border);
}

.footer-container {
	max-width: var(--mmg-content-width);
	margin: 0 auto;
	text-align: center;
}

.footer-logo img {
	height: 40px;
	width: auto;
	opacity: 0.9;
	margin-bottom: 12px;
}

.footer-tagline {
	font-size: 0.9rem;
	color: var(--mmg-text-muted);
	margin: 0 0 24px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 24px;
	margin-bottom: 24px;
}

.footer-nav a {
	color: var(--mmg-text-muted);
	text-decoration: none;
	font-size: 0.9rem;
}

.footer-nav a:hover {
	color: var(--mmg-primary);
}

.footer-copyright,
.footer-org {
	font-size: 0.85rem;
	color: var(--mmg-text-muted);
	opacity: 0.8;
	margin: 0;
}

.footer-org a {
	color: var(--mmg-primary);
	text-decoration: none;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* reveal-on-scroll */
.landing-section,
.team-card,
.service-card,
.how-step,
.proof-block,
.contact-layout {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.is-visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
}
