/* ==========================================================================
   UNIT Consultants — main stylesheet
   Brand: primary #0a174e (navy) | accent #ff6600 (orange) | softGray #f8f9fa
   ========================================================================== */

:root {
	--primary: #0a174e;
	--accent: #ff6600;
	--soft-gray: #f8f9fa;
	--text-body: #4b5563;
	--text-dark: #1f2937;
	--border-light: #f0f0f0;
	--radius-sm: 3px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--max-width: 1280px;
	--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--text-dark);
	background: #fff;
	overflow-x: hidden;
	line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

[id] { scroll-margin-top: 130px; }

.wrap {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex-grow: 1; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: var(--radius-sm);
	font-weight: 700;
	font-size: 1.05rem;
	border: none;
	transition: all 0.2s ease;
	cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #12225f; box-shadow: var(--shadow-lg); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { transform: scale(1.05); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f3f4f6; }
.btn-block { width: 100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav {
	background: #fff;
	border-bottom: 1px solid #f3f4f6;
	position: sticky;
	top: 0;
	z-index: 50;
}
.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 6.5rem;
}
.nav-brand .brand-link { display: flex; align-items: center; }
.logo-img, .nav-brand img { height: 4.5rem; width: auto; transition: transform 0.2s ease; }
.nav-brand .brand-link:hover img { transform: scale(1.05); }
.custom-logo-link img { height: 4.5rem; width: auto; }

.nav-menu-wrap { display: none; align-items: center; gap: 2.25rem; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links li a {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--primary);
	position: relative;
	padding-bottom: 4px;
	transition: color 0.2s ease;
}
.nav-links li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background: var(--accent);
	transition: width 0.3s ease;
}
.nav-links li a:hover::after,
.nav-links li.current-menu-item a::after { width: 100%; }
.nav-links li.current-menu-item a,
.nav-links li a:hover { color: var(--accent); }

.nav-cta { white-space: nowrap; padding: 0.85rem 1.75rem; font-size: 1rem; }

.nav-toggle {
	display: flex;
	background: none;
	border: none;
	color: var(--primary);
	padding: 0.5rem;
}
.nav-toggle svg { width: 2rem; height: 2rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: flex; }

.mobile-menu {
	display: none;
	background: #fff;
	border-top: 1px solid #fafafa;
	box-shadow: var(--shadow-xl);
	position: absolute;
	width: 100%;
}
.mobile-menu.is-open { display: block; }
.mobile-nav-links li a {
	display: block;
	padding: 1.25rem 0.75rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary);
	border-bottom: 1px solid #fafafa;
}
.mobile-menu .mobile-cta {
	display: block;
	padding: 1.25rem 0.75rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--accent);
}

@media (min-width: 900px) {
	.nav-menu-wrap { display: flex; }
	.nav-toggle { display: none; }
	.mobile-menu { display: none !important; }
}

/* ==========================================================================
   Hero / Page headers
   ========================================================================== */
.hero {
	position: relative;
	background: var(--primary);
	padding: 6rem 0 8rem;
	overflow: hidden;
}
.hero::before, .hero::after {
	content: '';
	position: absolute;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.1;
}
.hero::before { background: var(--accent); top: 0; right: 0; transform: translate(50%, -50%); }
.hero::after { background: #fff; bottom: 0; left: 0; transform: translate(-50%, 50%); }
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero h1 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--accent); }
.hero p {
	font-size: 1.25rem;
	color: #d1d5db;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }

.page-header {
	background: var(--primary);
	padding: 6rem 0 8rem;
	text-align: center;
}
.page-header h1 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 1.5rem; }
.page-header p { font-size: 1.25rem; color: #9ca3af; max-width: 640px; margin: 0 auto; }

.page-header-sm {
	background: var(--soft-gray);
	padding: 3rem 0;
	border-bottom: 1px solid #e5e7eb;
}
.page-header-sm h1 { font-size: 1.875rem; font-weight: 800; color: var(--primary); }
.page-header-sm p { color: #6b7280; font-size: 0.875rem; margin-top: 0.5rem; }

@media (min-width: 768px) {
	.hero h1, .page-header h1 { font-size: 3.75rem; }
}

/* ==========================================================================
   Sections & generic layout
   ========================================================================== */
.section { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }
.bg-white { background: #fff; }
.bg-soft { background: var(--soft-gray); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.text-white { color: #fff; }

.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-size: 1.875rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.section-head p { color: var(--text-body); max-width: 640px; margin: 0.5rem auto 0; }
.section-underline { width: 5rem; height: 4px; background: var(--accent); margin: 0 auto; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) {
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.grid-2-uneven { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
	.grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Feature cards (Home value props) ---------- */
.feature-card {
	text-align: center;
	padding: 2rem;
	border: 1px solid #fafafa;
	border-radius: var(--radius-lg);
	background: var(--soft-gray);
	transition: box-shadow 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-xl); }
.feature-icon { margin-bottom: 1.5rem; color: var(--accent); }
.feature-icon svg { width: 2.5rem; height: 2.5rem; }
.feature-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-body); }

/* ---------- Services preview bar (Home) ---------- */
.expertise-bar { padding: 3rem 0; }
.expertise-bar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.expertise-bar h2 { font-size: 1.5rem; font-weight: 700; color: #fff; }
.expertise-pills { display: flex; flex-wrap: wrap; gap: 1rem; }
.expertise-pill {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	transition: all 0.2s ease;
}
.expertise-pill:hover { background: var(--accent); border-color: var(--accent); }
.expertise-pill svg { width: 1rem; height: 1rem; color: var(--accent); }
.expertise-pill:hover svg { color: #fff; }

/* ---------- Why choose us / about image block ---------- */
.feature-image-wrap { position: relative; }
.feature-image-wrap img { border-radius: var(--radius-md); box-shadow: var(--shadow-xl); position: relative; z-index: 1; }
.feature-image-blob { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 16rem; height: 16rem; background: rgba(255,102,0,0.1); border-radius: 50%; z-index: 0; }
.feature-image-badge {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	background: #fff; padding: 2rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
	z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.feature-image-badge .num { font-size: 2.25rem; font-weight: 800; color: var(--primary); }
.feature-image-badge .label { font-size: 0.8rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; }

.check-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.check-item { display: flex; gap: 1rem; align-items: flex-start; }
.check-item .icon-wrap { flex-shrink: 0; background: rgba(255,102,0,0.1); padding: 0.35rem; border-radius: 50%; margin-top: 2px; }
.check-item .icon-wrap svg { width: 1.15rem; height: 1.15rem; color: var(--accent); }
.check-item h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.check-item p { color: var(--text-body); }
.text-link { display: inline-block; margin-top: 2rem; color: var(--accent); font-weight: 700; }
.text-link:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band { padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: 1.875rem; font-weight: 800; color: #fff; margin-bottom: 2rem; }
.cta-band p { font-size: 1.25rem; color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .cta-band h2 { font-size: 3rem; } }

/* ==========================================================================
   Services page cards
   ========================================================================== */
.services-section { background: var(--soft-gray); min-height: 60vh; }
.services-grid-wrap { margin-top: -4rem; padding-bottom: 6rem; }
.service-card {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 2rem;
	border: 1px solid #f3f4f6;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s ease;
	scroll-margin-top: 130px;
}
.service-card:hover { border-color: var(--accent); }
.service-card .service-icon { margin-bottom: 1.5rem; color: var(--accent); }
.service-card .service-icon svg { width: 3rem; height: 3rem; }
.service-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.service-card > p { color: var(--text-body); margin-bottom: 2rem; flex-grow: 1; }
.service-benefits { margin-bottom: 2.5rem; }
.service-benefits h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9ca3af; margin-bottom: 0.75rem; }
.benefit-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.65rem; }
.benefit-row svg { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; }
.benefit-row span { font-size: 0.9rem; color: #374151; font-weight: 500; }

.cta-strip {
	background: #fff;
	border-top: 1px solid #e5e7eb;
	padding: 4rem 0;
}
.cta-strip-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 2rem; text-align: center; }
.cta-strip h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.cta-strip p { color: var(--text-body); }
@media (min-width: 768px) { .cta-strip-inner { flex-direction: row; text-align: left; } }

/* ==========================================================================
   About page
   ========================================================================== */
.about-quote-badge {
	position: absolute; bottom: -2.5rem; left: -2.5rem;
	background: var(--primary); color: #fff;
	padding: 2rem; border-radius: var(--radius-md);
	box-shadow: var(--shadow-xl);
	border-left: 4px solid var(--accent);
	display: none;
	max-width: 320px;
}
.about-quote-badge .label { color: var(--accent); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.25rem; }
.about-quote-badge .quote { font-style: italic; font-size: 1.1rem; }
@media (min-width: 768px) { .about-quote-badge { display: block; } }

.team-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid #f3f4f6; transition: border-color 0.2s ease; }
.team-card:hover { border-color: var(--accent); }
.team-card-inner { padding: 2.5rem; }
.team-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.team-card-head h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.team-card-head .title { color: var(--accent); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.team-avatar { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(10,23,78,0.05); border: 1px solid rgba(10,23,78,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.team-avatar svg { width: 2rem; height: 2rem; color: var(--primary); }
.team-expertise { background: var(--soft-gray); padding: 1.25rem; border-radius: var(--radius-md); margin-bottom: 2rem; border-left: 4px solid var(--accent); }
.team-expertise .label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; margin-bottom: 0.5rem; }
.team-expertise .value { color: var(--primary); font-weight: 700; font-size: 0.9rem; line-height: 1.4; }
.team-bio { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; white-space: pre-line; text-align: justify; }

.values-row { text-align: center; }
.values-row .value-icon { background: rgba(255,255,255,0.1); width: 5rem; height: 5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.values-row .value-icon svg { width: 2.5rem; height: 2.5rem; color: var(--accent); }
.values-row h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.values-row p { color: #9ca3af; }

.compliance-block { text-align: center; max-width: 900px; margin: 0 auto; }
.compliance-block > svg { width: 4rem; height: 4rem; color: var(--accent); margin: 0 auto 2rem; }
.compliance-block h2 { font-size: 2.25rem; font-weight: 800; color: var(--primary); margin-bottom: 2rem; }
.compliance-block > p { font-size: 1.25rem; color: var(--text-body); margin-bottom: 3rem; }
.compliance-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 640px; margin: 0 auto; text-align: left; }
@media (min-width: 640px) { .compliance-grid { grid-template-columns: 1fr 1fr; } }
.compliance-item { display: flex; align-items: center; gap: 0.75rem; background: var(--soft-gray); padding: 1rem; border-radius: var(--radius-sm); border: 1px solid #f3f4f6; }
.compliance-item .dot { width: 0.5rem; height: 0.5rem; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.compliance-item span { font-weight: 600; color: var(--primary); }

/* ==========================================================================
   Careers page
   ========================================================================== */
.benefit-box { padding: 1.5rem; background: var(--soft-gray); border-radius: var(--radius-md); border: 1px solid #f3f4f6; transition: box-shadow 0.2s ease; }
.benefit-box:hover { box-shadow: var(--shadow-md); }
.benefit-box .icon { margin-bottom: 1rem; color: var(--accent); }
.benefit-box h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.benefit-box p { color: var(--text-body); font-size: 0.9rem; }

.job-card {
	background: #fff; padding: 2rem; border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md); border: 1px solid #f3f4f6;
	display: flex; flex-direction: column; gap: 1.5rem;
	transition: border-color 0.2s ease;
	margin-bottom: 1.5rem;
}
.job-card:hover { border-color: var(--accent); }
.job-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.job-type-tag { background: rgba(255,102,0,0.1); color: var(--accent); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.5rem; border-radius: var(--radius-sm); }
.job-location { color: #9ca3af; font-size: 0.75rem; font-weight: 500; }
.job-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.job-dept { color: #6b7280; font-weight: 500; font-size: 0.9rem; margin-bottom: 1rem; }
.job-desc { color: var(--text-body); font-size: 0.9rem; }
.job-apply { display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start; }
@media (min-width: 768px) { .job-card { flex-direction: row; align-items: center; justify-content: space-between; } }

.apply-steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.apply-step { display: flex; gap: 1.5rem; }
.apply-step .step-num { font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.2); line-height: 1; }
.apply-step h4 { font-size: 1.25rem; font-weight: 700; color: var(--accent); margin-bottom: 0.25rem; }
.apply-step p { color: #9ca3af; font-size: 0.9rem; }

.apply-direct-box { background: #fff; padding: 2.5rem; border-radius: var(--radius-md); color: var(--primary); text-align: center; }
.apply-direct-box .icon-circle { background: rgba(255,102,0,0.1); width: 5rem; height: 5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.apply-direct-box .icon-circle svg { width: 2.5rem; height: 2.5rem; color: var(--accent); }
.apply-direct-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.apply-direct-box > p { color: var(--text-body); margin-bottom: 2rem; }
.apply-direct-box .apply-email { font-size: 1.5rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 2rem; }
.apply-direct-box .apply-email:hover { text-decoration: underline; }
.apply-perks { display: flex; flex-direction: column; gap: 0.75rem; }
.apply-perk { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.9rem; color: #6b7280; }
.apply-perk svg { width: 1rem; height: 1rem; color: #22c55e; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-section { background: var(--soft-gray); min-height: 60vh; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: -3rem; padding-bottom: 5rem; position: relative; z-index: 1; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 2fr; } }

.contact-info-card, .contact-form-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid #f3f4f6; padding: 2.5rem; }
.contact-form-card { padding: 2.5rem; }
@media (min-width: 1024px) { .contact-form-card { padding: 3.5rem; } }
.contact-info-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent); display: inline-block; }
.contact-detail-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-row .icon-box { background: rgba(255,102,0,0.1); padding: 0.5rem; border-radius: var(--radius-sm); flex-shrink: 0; }
.contact-detail-row .icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.contact-detail-row h4 { font-weight: 700; color: var(--primary); margin-bottom: 0.15rem; }
.contact-detail-row p, .contact-detail-row a { color: var(--text-body); font-size: 0.9rem; }
.contact-detail-row a:hover { color: var(--accent); }

.urgent-box { background: var(--primary); color: #fff; padding: 2.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); margin-top: 2rem; }
.urgent-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.urgent-box p { color: #9ca3af; font-size: 0.9rem; margin-bottom: 1.5rem; }
.urgent-box .btn { width: 100%; }

.contact-form-card h2 { font-size: 1.875rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.contact-form-card > p.form-sub { color: #6b7280; margin-bottom: 2.5rem; }

.form-notice { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 2rem; font-weight: 600; font-size: 0.95rem; }
.form-notice.success { background: #dcfce7; color: #166534; }
.form-notice.error { background: #fee2e2; color: #991b1b; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: var(--radius-sm);
	border: 1px solid #e5e7eb;
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.2s ease;
	background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(255,102,0,0.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--primary); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { height: 5rem; width: auto; margin-bottom: 1.25rem; border-radius: var(--radius-sm); }
.footer-desc { color: #9ca3af; font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: #fff; transition: color 0.2s ease; }
.footer-social a:hover { color: var(--accent); }
.footer-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid #374151; display: inline-block; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: #9ca3af; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; color: #9ca3af; font-size: 0.9rem; margin-bottom: 1rem; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-widgets { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #1e2a5e; }
.footer-widget-title { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #1e2a5e; text-align: center; font-size: 0.75rem; color: #6b7280; }

/* ==========================================================================
   Blog / default WP content (index, single, page fallback)
   ========================================================================== */
.content-wrap { max-width: 800px; margin: 0 auto; padding: 5rem 1.5rem; }
.content-wrap article { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #f0f0f0; }
.content-wrap article:last-child { border-bottom: none; }
.content-wrap h1.entry-title,
.content-wrap h2.entry-title { color: var(--primary); font-weight: 800; margin-bottom: 1rem; }
.content-wrap h2.entry-title a { color: var(--primary); }
.content-wrap h2.entry-title a:hover { color: var(--accent); }
.content-wrap .entry-meta { color: #9ca3af; font-size: 0.85rem; margin-bottom: 1rem; }
.content-wrap .entry-content { color: var(--text-body); line-height: 1.8; }
.content-wrap .entry-content p { margin-bottom: 1.25rem; }
.content-wrap .entry-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }
.content-wrap .entry-content a { color: var(--accent); text-decoration: underline; }
.content-wrap .entry-content h2, .content-wrap .entry-content h3 { color: var(--primary); margin: 2rem 0 1rem; }
.pagination-nav { display: flex; justify-content: space-between; margin-top: 3rem; }
.pagination-nav a { color: var(--accent); font-weight: 700; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.screen-reader-text { position: absolute; left: -9999px; }
.text-center { text-align: center; }
