/*
Theme Name: Al Stunner Theme
Theme URI: https://alstunnersolution.com
Author: Al Stunner Solution LLC
Description: Premium light-theme custom WordPress corporate theme for Al Stunner Solution LLC — IT & Software Services.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: al-stunner-theme
*/

/* ==========================================================================
   1. Variables & Reset
   ========================================================================== */
:root {
	--als-white: #ffffff;
	--als-off-white: #f7f8fa;
	--als-surface: #f2f4f7;
	--als-charcoal: #1a1d22;
	--als-charcoal-soft: #4a4f57;
	--als-muted: #767c86;
	--als-border: #e6e8ec;
	--als-accent: #1e88f5;
	--als-accent-dark: #0f6fd6;
	--als-accent-light: #eaf3fe;
	--als-radius: 10px;
	--als-radius-lg: 16px;
	--als-shadow: 0 4px 24px rgba(20, 24, 32, 0.06);
	--als-shadow-hover: 0 10px 32px rgba(20, 24, 32, 0.10);
	--als-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--als-container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--als-font);
	color: var(--als-charcoal);
	background: var(--als-white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { line-height: 1.25; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--als-charcoal-soft); }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px);
}
.als-skip-link:focus {
	position: fixed; top: 8px; left: 8px; background: var(--als-accent); color: #fff;
	padding: 10px 16px; z-index: 9999; border-radius: 6px; width: auto; height: auto; clip: auto;
}

.als-container {
	max-width: var(--als-container);
	margin: 0 auto;
	padding: 0 24px;
}

.als-section { padding: 88px 0; }
.als-section-tight { padding: 56px 0; }
.als-section-alt { background: var(--als-off-white); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.als-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--als-accent);
	margin-bottom: 14px;
}
.als-section-head { max-width: 680px; margin: 0 0 48px; }
.als-section-head.als-center { margin-left: auto; margin-right: auto; text-align: center; }
.als-section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.als-section-head p { font-size: 17px; }

/* Buttons */
.als-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	transition: all 0.25s cubic-bezier(.2,.8,.2,1);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}
.als-btn-primary { background: var(--als-accent); color: #fff; box-shadow: 0 6px 18px rgba(30,136,245,0.22); }
.als-btn-primary::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}
.als-btn-primary:hover::before { transform: translateX(120%); }
.als-btn-primary:hover { background: var(--als-accent-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(30,136,245,0.32); }
.als-btn-secondary { background: transparent; color: var(--als-charcoal); border-color: var(--als-border); }
.als-btn-secondary:hover { border-color: var(--als-charcoal); background: var(--als-surface); transform: translateY(-2px); }
.als-btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   2. Header
   ========================================================================== */
.als-site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(255,255,255,0.85);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--als-border);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}
.als-site-header.is-scrolled {
	background: rgba(255,255,255,0.97);
	box-shadow: 0 8px 24px rgba(20,24,32,0.06);
}
.als-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 96px;
}
.als-logo img { height: 60px; width: auto; transition: height 0.25s ease; }
.als-site-header.is-scrolled .als-logo img { height: 50px; }
.als-nav-menu { display: flex; align-items: center; gap: 34px; }
.als-nav-menu li a {
	font-weight: 600;
	font-size: 15px;
	color: var(--als-charcoal-soft);
	transition: color 0.2s ease;
	position: relative;
}
.als-nav-menu li a:hover, .als-nav-menu li.current-menu-item a { color: var(--als-accent); }
.als-primary-nav { flex: 1; display: flex; justify-content: center; }

.als-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	padding: 0;
}
.als-menu-toggle span { display: block; height: 2px; width: 24px; background: var(--als-charcoal); border-radius: 2px; transition: all 0.25s ease; }
.als-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.als-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.als-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
	.als-header-cta { display: none; }
	.als-menu-toggle { display: flex; }
	.als-primary-nav {
		position: absolute;
		top: 96px;
		left: 0;
		right: 0;
		background: var(--als-white);
		border-bottom: 1px solid var(--als-border);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	.als-primary-nav.is-open { max-height: 480px; }
	.als-nav-menu { flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 20px; width: 100%; }
	.als-nav-menu li { width: 100%; border-bottom: 1px solid var(--als-border); }
	.als-nav-menu li a { display: block; padding: 14px 0; }
}

/* ==========================================================================
   3. Hero
   ========================================================================== */
@keyframes alsFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes alsFloat {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-14px); }
}
@keyframes alsPulseGlow {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 0.9; }
}

.als-hero { position: relative; padding: 100px 0 88px; overflow: hidden; }
.als-hero::before {
	content: "";
	position: absolute;
	top: -180px; right: -160px;
	width: 560px; height: 560px;
	background: radial-gradient(circle, rgba(30,136,245,0.16), transparent 70%);
	border-radius: 50%;
	z-index: 0;
	animation: alsPulseGlow 6s ease-in-out infinite;
}
.als-hero::after {
	content: "";
	position: absolute;
	bottom: -220px; left: -160px;
	width: 480px; height: 480px;
	background: radial-gradient(circle, rgba(30,136,245,0.10), transparent 70%);
	border-radius: 50%;
	z-index: 0;
}
.als-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.als-hero-content { animation: alsFadeUp 0.8s cubic-bezier(.2,.8,.2,1) both; }
.als-hero-content h1 { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 20px; }
.als-hero-content h1 .als-accent-word {
	background: linear-gradient(90deg, var(--als-accent), var(--als-accent-dark));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.als-hero-content p { font-size: 18px; max-width: 520px; margin-bottom: 32px; }
.als-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.als-hero-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 560px; }
.als-hero-highlight { animation: alsFadeUp 0.8s cubic-bezier(.2,.8,.2,1) both; }
.als-hero-highlight:nth-child(1) { animation-delay: 0.05s; }
.als-hero-highlight:nth-child(2) { animation-delay: 0.15s; }
.als-hero-highlight:nth-child(3) { animation-delay: 0.25s; }
.als-hero-highlight:nth-child(4) { animation-delay: 0.35s; }
.als-hero-highlight-icon {
	width: 44px; height: 44px; border-radius: 12px;
	background: var(--als-accent-light); color: var(--als-accent);
	display: flex; align-items: center; justify-content: center;
	font-size: 20px !important; margin-bottom: 10px;
	transition: transform 0.25s ease;
}
.als-hero-highlight:hover .als-hero-highlight-icon { transform: translateY(-4px) scale(1.06); }
.als-hero-highlight span.als-hh-label { font-size: 13px; font-weight: 700; color: var(--als-charcoal); display: block; line-height: 1.3; }

.als-hero-visual {
	position: relative;
	z-index: 1;
	background: linear-gradient(145deg, #0b1120, #0f1b33);
	border-radius: var(--als-radius-lg);
	border: 1px solid rgba(30,136,245,0.25);
	aspect-ratio: 4/3.2;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(10,20,40,0.25);
	animation: alsFadeUp 0.9s cubic-bezier(.2,.8,.2,1) both, alsFloat 7s ease-in-out infinite 0.9s;
}
.als-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
	.als-hero-inner { grid-template-columns: 1fr; }
	.als-hero { padding: 56px 0 56px; }
	.als-hero-highlights { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   4. Services Cards
   ========================================================================== */
.als-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.als-service-card {
	background: var(--als-white);
	border: 1px solid var(--als-border);
	border-radius: var(--als-radius-lg);
	padding: 32px 26px;
	box-shadow: var(--als-shadow);
	transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.als-service-card:hover { transform: translateY(-6px); box-shadow: var(--als-shadow-hover); border-color: rgba(30,136,245,0.3); }
.als-service-icon {
	width: 52px; height: 52px;
	display: flex; align-items: center; justify-content: center;
	background: var(--als-accent-light);
	color: var(--als-accent);
	border-radius: 14px;
	font-size: 24px !important;
	margin-bottom: 20px;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.als-service-card:hover .als-service-icon { transform: rotate(-6deg) scale(1.08); background: var(--als-accent); color: #fff; }
.als-service-title { font-size: 19px; margin-bottom: 10px; }
.als-service-desc { font-size: 15px; margin-bottom: 18px; }
.als-learn-more { font-weight: 700; font-size: 14px; color: var(--als-accent); }
.als-learn-more:hover { color: var(--als-accent-dark); }

/* ==========================================================================
   5. Intro / Why Choose Us / generic content blocks
   ========================================================================== */
.als-intro-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .als-intro-grid { grid-template-columns: 1fr; } }
.als-intro-visual {
	position: relative;
	background: linear-gradient(155deg, #0b1120, #10203d);
	border-radius: var(--als-radius-lg);
	aspect-ratio: 4/3;
	border: 1px solid rgba(30,136,245,0.25);
	overflow: hidden;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 20px 50px rgba(10,20,40,0.2);
}
.als-intro-visual::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(30,136,245,0.14) 1px, transparent 1px),
		linear-gradient(90deg, rgba(30,136,245,0.14) 1px, transparent 1px);
	background-size: 34px 34px;
	mask-image: radial-gradient(circle at center, #000 40%, transparent 85%);
}
.als-intro-visual-icon {
	position: relative; z-index: 1;
	width: 96px; height: 96px; border-radius: 26px;
	background: rgba(30,136,245,0.14);
	border: 1px solid rgba(30,136,245,0.4);
	display: flex; align-items: center; justify-content: center;
	color: var(--als-accent);
	font-size: 42px !important;
	animation: alsFloat 6s ease-in-out infinite;
}

.als-values-grid, .als-why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.als-value-card {
	padding: 26px 22px;
	background: var(--als-white);
	border: 1px solid var(--als-border);
	border-radius: var(--als-radius);
	transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
	position: relative;
}
.als-value-card::before {
	content: "";
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--als-accent);
	display: inline-block;
	margin-bottom: 14px;
	box-shadow: 0 0 0 6px var(--als-accent-light);
}
.als-value-card:hover { transform: translateY(-5px); box-shadow: var(--als-shadow); border-color: rgba(30,136,245,0.3); }
.als-value-card h3 { font-size: 17px; margin-bottom: 8px; }
.als-value-card p { font-size: 14px; margin: 0; }

/* Process steps */
.als-process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}
.als-process-step {
	padding: 28px 20px;
	background: var(--als-white);
	border: 1px solid var(--als-border);
	border-radius: var(--als-radius);
	position: relative;
	transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.als-process-step:hover { transform: translateY(-5px); box-shadow: var(--als-shadow); border-color: rgba(30,136,245,0.3); }
.als-process-number { font-size: 32px; font-weight: 800; color: var(--als-accent-light); -webkit-text-stroke: 1.5px var(--als-accent); display: block; margin-bottom: 10px; }
.als-process-step h3 { font-size: 16px; margin-bottom: 6px; }
.als-process-step p { font-size: 14px; margin: 0; }

/* Founder */
.als-founder-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .als-founder-grid { grid-template-columns: 1fr; } }
.als-founder-photo {
	border-radius: var(--als-radius-lg);
	overflow: hidden;
	border: 1px solid var(--als-border);
	box-shadow: var(--als-shadow);
	aspect-ratio: 4/5;
}
.als-founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.als-founder-name { font-size: 24px; margin-bottom: 2px; }
.als-founder-role { color: var(--als-accent); font-weight: 600; margin-bottom: 20px; display: block; }
.als-founder-block h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--als-muted); margin: 24px 0 8px; }
.als-founder-block h4:first-child { margin-top: 0; }

/* CTA band */
.als-cta-band {
	background: linear-gradient(135deg, #12141a, #1a1d22 60%, #0f1b33);
	color: #fff;
	border-radius: var(--als-radius-lg);
	padding: 56px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(10,20,40,0.22);
}
.als-cta-band::before {
	content: "";
	position: absolute; top: -60%; right: -10%;
	width: 340px; height: 340px;
	background: radial-gradient(circle, rgba(30,136,245,0.35), transparent 70%);
	border-radius: 50%;
}
.als-cta-band > * { position: relative; z-index: 1; }
.als-cta-band h2 { color: #fff; margin-bottom: 6px; font-size: 26px; }
.als-cta-band p { color: #c7cbd3; margin: 0; }
.als-cta-band .als-btn-primary { background: var(--als-accent); }
.als-cta-band .als-btn-secondary { border-color: rgba(255,255,255,0.3); color: #fff; }
.als-cta-band .als-btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* Empty state (Articles Coming Soon) */
.als-empty-state { text-align: center; padding: 90px 24px; max-width: 560px; margin: 0 auto; }
.als-empty-icon {
	width: 74px; height: 74px; border-radius: 50%;
	background: var(--als-accent-light); color: var(--als-accent);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 24px; font-size: 32px !important;
}
.als-empty-state h2 { font-size: 26px; margin-bottom: 10px; }

/* Page hero (inner pages) */
.als-page-hero { padding: 64px 0 48px; background: var(--als-off-white); border-bottom: 1px solid var(--als-border); }
.als-page-hero h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.als-page-hero p { font-size: 17px; max-width: 640px; }
.als-breadcrumbs { font-size: 13px; color: var(--als-muted); margin-bottom: 16px; }
.als-breadcrumbs a { color: var(--als-muted); }
.als-breadcrumbs a:hover { color: var(--als-accent); }

/* Benefits / process reused list */
.als-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .als-two-col { grid-template-columns: 1fr; } }
.als-check-list li { position: relative; padding-left: 30px; margin-bottom: 14px; font-size: 15px; color: var(--als-charcoal-soft); }
.als-check-list li::before {
	content: "";
	position: absolute; left: 0; top: 4px;
	width: 18px; height: 18px; border-radius: 50%;
	background: var(--als-accent-light);
	border: 1.5px solid var(--als-accent);
}
.als-check-list li::after {
	content: "";
	position: absolute; left: 5px; top: 8px;
	width: 8px; height: 4px;
	border-left: 2px solid var(--als-accent);
	border-bottom: 2px solid var(--als-accent);
	transform: rotate(-45deg);
}

/* ==========================================================================
   6. Contact page
   ========================================================================== */
.als-contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
@media (max-width: 900px) { .als-contact-grid { grid-template-columns: 1fr; } }
.als-contact-info-card { background: var(--als-off-white); border: 1px solid var(--als-border); border-radius: var(--als-radius-lg); padding: 32px; }
.als-contact-info-card h3 { font-size: 18px; margin-bottom: 20px; }
.als-contact-info-card li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; font-size: 15px; }
.als-contact-info-card .dashicons { color: var(--als-accent); }

.als-form-row { margin-bottom: 20px; }
.als-form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.als-form-row input, .als-form-row select, .als-form-row textarea {
	width: 100%;
	padding: 13px 16px;
	border-radius: 8px;
	border: 1px solid var(--als-border);
	font-family: inherit;
	font-size: 15px;
	background: var(--als-white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.als-form-row input:focus, .als-form-row select:focus, .als-form-row textarea:focus {
	outline: none; border-color: var(--als-accent); box-shadow: 0 0 0 3px rgba(30,136,245,0.15);
}
.als-form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .als-form-two { grid-template-columns: 1fr; } }
.als-form-message { margin-top: 16px; padding: 14px 16px; border-radius: 8px; font-size: 14px; display: none; }
.als-form-message.is-success { display: block; background: #e8f8ee; color: #16794c; }
.als-form-message.is-error { display: block; background: #fdeceb; color: #b3261e; }
.als-hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ==========================================================================
   7. Blog / Articles listing
   ========================================================================== */
.als-articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.als-article-card { border: 1px solid var(--als-border); border-radius: var(--als-radius-lg); overflow: hidden; background: var(--als-white); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.als-article-card:hover { box-shadow: var(--als-shadow-hover); transform: translateY(-3px); }
.als-article-thumb { aspect-ratio: 16/10; background: var(--als-surface); overflow: hidden; }
.als-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.als-article-body { padding: 22px; }
.als-article-meta { font-size: 12.5px; color: var(--als-muted); margin-bottom: 10px; display: flex; gap: 10px; flex-wrap: wrap; }
.als-article-title { font-size: 18px; margin-bottom: 8px; }
.als-article-title a:hover { color: var(--als-accent); }
.als-article-excerpt { font-size: 14.5px; margin-bottom: 0; }

.als-single-article { max-width: 760px; margin: 0 auto; }
.als-single-article .als-article-meta { margin-bottom: 24px; }
.als-single-article-content { font-size: 17px; }
.als-single-article-content img { border-radius: var(--als-radius); margin: 24px 0; }
.als-single-article-content h2 { margin-top: 1.6em; }
.als-tags { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.als-tags a { font-size: 13px; padding: 6px 14px; border-radius: 999px; background: var(--als-surface); color: var(--als-charcoal-soft); }
.als-share-links { display: flex; gap: 10px; margin-top: 28px; }
.als-share-links a { width: 38px; height: 38px; border-radius: 50%; background: var(--als-surface); display: flex; align-items: center; justify-content: center; }

.als-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.als-pagination a, .als-pagination span { padding: 10px 16px; border-radius: 8px; border: 1px solid var(--als-border); font-size: 14px; }
.als-pagination .current { background: var(--als-accent); color: #fff; border-color: var(--als-accent); }

/* ==========================================================================
   8. Footer
   ========================================================================== */
.als-site-footer { background: var(--als-charcoal); color: #c7cbd3; padding: 64px 0 0; margin-top: 40px; }
.als-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 860px) { .als-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .als-footer-grid { grid-template-columns: 1fr; } }
.als-footer-logo-wrap { display: inline-block; background: #fff; border-radius: 12px; padding: 10px 16px; margin-bottom: 16px; }
.als-footer-logo { height: 40px; width: auto; display: block; }
.als-footer-brand p { font-size: 14px; max-width: 320px; color: #9aa0ab; }
.als-footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; color: #7d8494; }
.als-footer-col ul li { margin-bottom: 12px; font-size: 14.5px; color: #c7cbd3; }
.als-footer-col ul li a:hover { color: var(--als-accent); }
.als-footer-contact li a { color: #c7cbd3; }
.als-social-links { display: flex; gap: 10px; margin-top: 16px; }
.als-social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #c7cbd3; transition: all 0.25s ease; }
.als-social-links a:hover { border-color: var(--als-accent); color: #fff; background: var(--als-accent); transform: translateY(-3px); }
.als-footer-bottom {
	padding: 22px 24px;
	display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.als-footer-bottom p { margin: 0; font-size: 13.5px; color: #7d8494; }
.als-footer-legal { display: flex; gap: 20px; }
.als-footer-legal a { font-size: 13.5px; color: #9aa0ab; }
.als-footer-legal a:hover { color: var(--als-accent); }

/* ==========================================================================
   9. 404 & Legal / generic content pages
   ========================================================================== */
.als-404 { text-align: center; padding: 120px 24px; }
.als-404 h1 { font-size: 96px; color: var(--als-accent-light); -webkit-text-stroke: 2px var(--als-accent); margin-bottom: 0; }
.als-404 h2 { margin-bottom: 12px; }
.als-legal-content { max-width: 760px; margin: 0 auto; font-size: 16px; }
.als-legal-content h2 { margin-top: 1.6em; font-size: 22px; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
	outline: 2px solid var(--als-accent);
	outline-offset: 2px;
}
