/* =========================================================
   M&M Group — Custom styles
   ========================================================= */

/* Sticky header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 99;
	border-bottom: 1px solid #e8f0fe;
}

/* Hero section */
.hero-section {
	position: relative;
	overflow: hidden;
}
.hero-section::after {
	content: "";
	position: absolute;
	inset: auto -10% -40% auto;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 60%);
	pointer-events: none;
}

/* Eyebrow label */
.eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2563eb;
}

/* Service cards */
.service-card {
	border: 1px solid #e8f0fe;
	border-radius: 12px;
	background: #fff;
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(11, 18, 32, 0.08);
}
.service-card .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: #e8f0fe;
	color: #2563eb;
}

/* Stats */
.stat-number {
	font-weight: 800;
	color: #2563eb;
	line-height: 1;
}

/* Buttons */
.wp-block-button__link {
	transition: background-color 0.2s ease, transform 0.2s ease;
}
.is-style-fill .wp-block-button__link:hover {
	background-color: #1d4ed8;
}
.is-style-outline .wp-block-button__link {
	border: 2px solid currentColor;
}

/* Footer */
.site-footer {
	background: #0f2a4a;
	color: #c3d0e0;
}
.site-footer a {
	color: #c3d0e0;
	text-decoration: none;
	transition: color 0.2s ease;
}
.site-footer a:hover {
	color: #fff;
}
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 {
	color: #fff;
}

/* Testimonial */
.testimonial {
	border-left: 4px solid #2563eb;
}

/* Blog cards */
.post-card {
	border: 1px solid #e8f0fe;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(11, 18, 32, 0.08);
}

/* Page hero band */
.page-hero {
	background: linear-gradient(135deg, #0b1220, #0f2a4a 60%, #1d4ed8);
	color: #fff;
}

/* Hero panel (mock dashboard) */
.hero-panel {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(6px);
}

@media (max-width: 781px) {
	.hero-section::after {
		display: none;
	}
}
