/* ============================================
   PROVANTA — Design System
   Aesthetic: Warm Editorial Consultancy
   ============================================ */

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

:root {
	--blue: #0070e0;
	--blue-light: #eaf2fb;
	--blue-mid: #d1e3f6;
	--navy: #0f1729;
	--navy-soft: #1a2440;
	--white: #ffffff;
	--off-white: #faf8f5;
	--warm-cream: #f5f0ea;
	--gray-100: #f4f2ef;
	--gray-200: #e5e2dc;
	--gray-300: #d0cdc6;
	--gray-400: #a09d96;
	--gray-500: #6e6b65;
	--gray-600: #48463f;
	--accent: #d4952a;
	--accent-light: #f8ebd4;
	--accent-dark: #b87d1e;
	--text: #1d1d1f;
	--text-secondary: #52514e;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
	--font-serif: 'Lora', Georgia, serif;
	--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
	--max-width: 1200px;
	--section-pad: clamp(45px, 3vw, 90px);
	--hero-pad: clamp(60px, 4vw, 100px);
	--servicehero-pad: clamp(32px, 3vw, 120px);
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	color: var(--text);
	background: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ---- Utility ---- */
.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

.mono {
	font-family: var(--font-mono);
	font-size: 0.8em;
	letter-spacing: -0.02em;
}

.label {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--accent);
}

main {
	position: relative;
	z-index: 0;
}

/* ---- Scroll reveal ---- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
				transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-group > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-group > .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(250, 248, 245, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

.logo img {
	height: 55px;
	width: auto;
}

/* -- Nav -- */
.main-nav {
	display: flex;
	align-items: center;
	gap: 2px;
}

.main-nav > li {
	list-style: none;
	position: relative;
}

.main-nav > li > a {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 16px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text);
	border-radius: var(--radius-sm);
	transition: color 0.2s, background 0.2s;
}

.main-nav > li > a:hover {
	color: var(--blue);
	background: var(--blue-light);
}

.main-nav > li > a .caret {
	width: 10px;
	height: 10px;
	opacity: 0.4;
	transition: transform 0.2s, opacity 0.2s;
}

.main-nav > li:hover > a .caret {
	transform: rotate(180deg);
	opacity: 0.7;
}

/* Dropdown */
.dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	min-width: 260px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	padding: 8px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	list-style: none;
}

.dropdown::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}

.main-nav > li:hover > .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dropdown li a {
	display: block;
	padding: 8px 14px;
	font-size: 0.875rem;
	font-weight: 450;
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
	background: var(--blue-light);
	color: var(--blue);
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: var(--radius-sm);
	transition: background 0.2s;
}

.menu-toggle:hover {
	background: var(--gray-100);
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
	position: relative;
	padding: calc(100px + var(--hero-pad)) 0 calc(var(--hero-pad) + 70px);
	overflow: hidden;
	background: var(--off-white);
}

/* Warm subtle gradient instead of dot grid */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(212, 149, 42, 0.04) 0%, transparent 40%, rgba(0, 112, 224, 0.03) 100%);
	pointer-events: none;
}

.hero .container {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-content {
	max-width: 560px;
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 100px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--accent);
	margin-bottom: 28px;
}

.hero-label .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.4rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--navy);
	margin-bottom: 10px;
}

.hero h1 em {
	font-style: normal;
	color: var(--blue);
}

.hero-subtitle {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	font-weight: 400;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 36px;
	max-width: 480px;
}

.hero-subtitle strong {
	font-weight: 600;
	color: var(--text);
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: var(--radius-xl);
	border: none;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn:active {
	transform: translateY(0);
}

.btn-primary {
	background: var(--blue);
	color: var(--white);
	box-shadow: 0 2px 12px rgba(0, 112, 224, 0.25);
}

.btn-primary:hover {
	background: #005cbf;
	box-shadow: 0 4px 20px rgba(0, 112, 224, 0.35);
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
	border-color: var(--blue);
	color: var(--blue);
	background: var(--blue-light);
}

.btn .arrow {
	transition: transform 0.2s;
}

.btn:hover .arrow {
	transform: translateX(3px);
}

/* Hero visual — Editorial photo */
.hero-visual {
	position: relative;
}

.hero-image-wrapper {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow:
		0 8px 40px rgba(15, 23, 41, 0.12),
		0 2px 12px rgba(15, 23, 41, 0.06);
}

.hero-image-wrapper img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

/* Warm accent strip on image */
.hero-image-wrapper::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--blue));
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Floating badge on hero image */
.hero-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: var(--radius-md);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge-icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: var(--accent-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
}

.hero-badge-text {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.3;
}

.hero-badge-text span {
	display: block;
	font-weight: 400;
	color: var(--text-secondary);
	font-size: 0.75rem;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	padding: 0;
	position: relative;
	overflow: hidden;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
	z-index: 1;
}

.stat-item {
	padding: 40px 24px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-value {
	font-family: var(--font-mono);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}

.stat-label {
	font-size: 0.85rem;
	font-weight: 450;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.02em;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
	margin-bottom: 56px;
}

.section-header .label {
	margin-bottom: 14px;
}

.section-header h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--navy);
}

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

.section-header p {
	margin-top: 14px;
	font-size: 1.05rem;
	color: var(--text-secondary);
	max-width: 600px;
	line-height: 1.65;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
	padding: var(--section-pad) 0;
}

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

.service-card {
	background: var(--off-white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	border-color: var(--blue);
	box-shadow: 0 8px 32px rgba(0, 112, 224, 0.08);
	transform: translateY(-4px);
}

.service-icon {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-md);
	background: var(--blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--blue);
}

.service-card:nth-child(even) .service-icon {
	background: var(--accent-light);
	color: var(--accent);
}

.service-card h3 {
	font-size: 1.1rem;
	font-weight: 650;
	letter-spacing: -0.01em;
	color: var(--navy);
	margin-bottom: 10px;
}

.service-card p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.6;
	flex: 1;
	margin-bottom: 20px;
}

.card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--blue);
	transition: gap 0.2s;
}

.card-link:hover {
	gap: 10px;
}

/* ============================================
   TESTIMONIALS — Carousel
   ============================================ */
.testimonials {
	padding: var(--section-pad) 0;
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	position: relative;
}

.testimonials .section-header {
	text-align: center;
	margin-bottom: 48px;
}

.testimonials .section-header h2 {
	color: var(--white);
}

.testimonials .section-header p {
	color: rgba(255, 255, 255, 0.6);
	margin-left: auto;
	margin-right: auto;
}

.testimonial-carousel {
	position: relative;
	max-width: 820px;
	margin: 0 auto;
	overflow: hidden;
}

.testimonial-track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
	min-width: 100%;
	padding: 0 20px;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 48px 44px;
	text-align: center;
	position: relative;
}

.testimonial-card::before {
	content: "\201C";
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 5rem;
	line-height: 1;
	color: var(--accent);
	opacity: 0.25;
	font-family: var(--font-serif);
}

.testimonial-card blockquote {
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	font-style: italic;
	margin-bottom: 32px;
	padding-top: 24px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.testimonial-author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--blue));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--white);
}

.testimonial-author-info cite {
	font-style: normal;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--white);
	display: block;
}

.testimonial-author-info span {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Carousel dots */
.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}

.testimonial-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
	padding: 0;
}

.testimonial-dot.active {
	background: var(--accent);
	transform: scale(1.2);
}

.testimonial-dot:hover {
	background: rgba(255, 255, 255, 0.4);
}

/* ============================================
   EXPERTISE / WHY PROVANTA
   ============================================ */
.expertise {
	padding: var(--section-pad) 0;
}

.expertise-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.expertise-content h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--navy);
	margin-bottom: 20px;
}

.expertise-content h2 em {
	font-style: normal;
	color: var(--blue);
}

.expertise-content > p {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 16px;
}

.expertise-content .btn {
	margin-top: 16px;
}

.expertise-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature-item {
	display: flex;
	gap: 18px;
	padding: 24px;
	background: var(--off-white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-item:hover {
	border-color: var(--accent);
	box-shadow: 0 4px 16px rgba(212, 149, 42, 0.06);
}

.feature-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: var(--radius-sm);
	background: var(--accent-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
}

.feature-item:nth-child(even) .feature-icon {
	background: var(--blue-light);
	color: var(--blue);
}

.feature-item h3 {
	font-size: 0.95rem;
	font-weight: 650;
	color: var(--navy);
	margin-bottom: 4px;
}

.feature-item p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.55;
}

/* ============================================
   LEADERSHIP / WHO WE ARE
   ============================================ */
.leadership {
	padding: var(--section-pad) 0 calc(36px + var(--section-pad) );
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	position: relative;
	overflow: hidden;
}

.leadership .container {
	position: relative;
	z-index: 1;
}

.leadership .section-header h2 {
	color: var(--white);
}

.leadership .section-header p {
	color: rgba(255, 255, 255, 0.65);
}

/* Value cards on dark background */
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.value-card-dark {
	padding: 40px 32px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	position: relative;
	overflow: hidden;
	transition: background 0.3s, border-color 0.3s;
}

.value-card-dark::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-dark));
	opacity: 0;
	transition: opacity 0.3s;
}

.value-card-dark:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(212, 149, 42, 0.3);
}

.value-card-dark:hover::before {
	opacity: 1;
}

.value-number {
	font-family: var(--font-mono);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0.04em;
	margin-bottom: 18px;
}

.value-card-dark h3 {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 12px;
	line-height: 1.3;
}

.value-card-dark p {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
	padding: var(--section-pad) 0;
	scroll-margin-top: 80px;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.contact-info h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--navy);
	margin-bottom: 16px;
}

.contact-info h2 em {
	font-style: normal;
	color: var(--blue);
}

.contact-info > p {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.65;
	margin-bottom: 32px;
}

.contact-detail {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.contact-detail-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: var(--radius-sm);
	background: var(--accent-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
}

.contact-detail span {
	font-size: 0.92rem;
	color: var(--text-secondary);
}

.contact-form {
	background: var(--off-white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 40px;
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	font-family: var(--font-body);
	font-size: 0.92rem;
	color: var(--text);
	background: var(--white);
	border: 1.5px solid var(--gray-200);
	border-radius: var(--radius-sm);
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(0, 112, 224, 0.1);
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--gray-400);
}

.contact-form .cf-turnstile {
	margin-bottom: 8px;
}

.contact-form .btn {
	width: 100%;
	justify-content: center;
	margin-top: 6px;
}

.contact-form .btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.form-error {
	color: #d32f2f;
	font-size: 0.88rem;
	font-weight: 500;
	margin-bottom: 16px;
	padding: 10px 14px;
	background: #fde8e8;
	border-radius: var(--radius-sm);
}

.form-success p {
	color: var(--navy);
	font-size: 1.05rem;
	font-weight: 500;
	padding: 32px 0;
	text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
	background: var(--navy);
	padding: 64px 0 0;
	position: relative;
	overflow: hidden;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	position: relative;
	z-index: 1;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
	height: 32px;
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	max-width: 280px;
	margin-bottom: 20px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.65);
	transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
	background: var(--accent);
	color: var(--white);
}

.footer-col h3 {
	font-size: 0.82rem;
	font-weight: 650;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 18px;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 10px;
}

.footer-col a {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--white);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px 0;
	position: relative;
	z-index: 1;
}

.footer-bottom p {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
	display: flex;
	gap: 20px;
}

.footer-legal a {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s;
}

.footer-legal a:hover {
	color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

	.expertise-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.contact-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.main-nav {
		display: none;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		max-height: calc(100vh - 72px);
		background: var(--white);
		flex-direction: column;
		padding: 24px;
		gap: 4px;
		overflow-y: auto;
		box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	}

	.main-nav.open {
		display: flex;
	}

	.main-nav > li > a {
		padding: 12px 16px;
		font-size: 1rem;
	}

	.dropdown {
		position: static;
		transform: none;
		box-shadow: none;
		border: none;
		background: var(--gray-100);
		border-radius: var(--radius-sm);
		opacity: 1;
		visibility: visible;
		margin-top: 4px;
		display: none;
	}

	.main-nav > li.dropdown-open > .dropdown {
		display: block;
	}

	.main-nav > li:hover > .dropdown {
		transform: none;
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-subtitle {
		max-width: 100%;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-visual {
		max-width: 480px;
		margin: 0 auto;
	}

	.hero-badge {
		bottom: 16px;
		left: 16px;
		padding: 10px 14px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stat-item {
		padding: 28px 20px;
	}

	.stat-item:nth-child(2) {
		border-right: none;
	}

	.stat-item:nth-child(1),
	.stat-item:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.footer-legal {
		flex-wrap: wrap;
		justify-content: center;
	}

	.testimonial-card {
		padding: 36px 24px;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.stat-item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

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

	.stat-value {
		font-size: 1.5rem;
	}

	.stat-label {
		font-size: 1.05rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-image-wrapper img {
		height: 280px;
	}
}

/* ============================================
   SERVICE PAGES
   ============================================ */

/* -- Service Hero -- */
.service-hero {
	padding: calc(48px + var(--servicehero-pad)) 0 calc(72px + var(--servicehero-pad));
	background: var(--off-white);
	position: relative;
}

.service-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(212, 149, 42, 0.04) 0%, transparent 40%, rgba(0, 112, 224, 0.03) 100%);
	pointer-events: none;
}

.service-hero .container {
	position: relative;
	z-index: 1;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--gray-400);
	margin-bottom: 60px;
}

.breadcrumb a {
	color: var(--text-secondary);
	transition: color 0.2s;
}

.breadcrumb a:hover {
	color: var(--blue);
}

.breadcrumb svg {
	color: var(--gray-300);
}

.breadcrumb span {
	color: var(--blue);
	font-weight: 500;
}

.service-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.service-hero-content {
	max-width: 680px;
}

.service-hero-visual {
	position: relative;
}

.service-hero-image-wrapper {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow:
		0 8px 40px rgba(15, 23, 41, 0.12),
		0 2px 12px rgba(15, 23, 41, 0.06);
}

.service-hero-image-wrapper::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--blue));
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.service-hero-image-wrapper img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.service-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 100px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--accent);
	margin-bottom: 28px;
}

.service-hero h1 {
	font-size: clamp(2.2rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--navy);
	margin-bottom: 20px;
}

.service-hero h1 em {
	font-style: normal;
	color: var(--blue);
}

.service-hero-subtitle {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	color: var(--text-secondary);
	line-height: 1.65;
	margin-bottom: 36px;
	max-width: 560px;
}

.service-hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* -- Problem Section (dark) -- */
.service-problem {
	padding: var(--section-pad) 0;
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	position: relative;
	overflow: hidden;
}

.service-problem .container {
	position: relative;
	z-index: 1;
}

.service-problem .label {
	color: rgba(255, 255, 255, 0.4);
}

.service-problem-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
}

.service-problem-layout.two-col {
	grid-template-columns: 1fr 1fr;
	align-items: start;
}

.service-problem-content h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 20px;
}

.service-problem-content h2 em {
	font-style: normal;
	color: var(--blue);
}

.service-problem-content > p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin-bottom: 16px;
}

.problem-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	border-left: 4px solid var(--accent);
}

.problem-card-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background: rgba(212, 149, 42, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	margin-bottom: 16px;
}

.problem-card h3 {
	font-size: 1rem;
	font-weight: 650;
	color: var(--white);
	margin-bottom: 14px;
}

.problem-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.problem-card li {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
	padding-left: 20px;
	position: relative;
}

.problem-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0.5;
}

/* -- Solution / Benefits Grid -- */
.service-solution {
	padding: var(--section-pad) 0;
	background: var(--off-white);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.benefit-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
	border-color: var(--blue);
	box-shadow: 0 8px 32px rgba(0, 112, 224, 0.08);
	transform: translateY(-4px);
}

.benefit-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background: var(--blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
	margin-bottom: 16px;
}

.benefit-card:nth-child(even) .benefit-icon {
	background: var(--accent-light);
	color: var(--accent);
}

.benefit-card h3 {
	font-size: 1rem;
	font-weight: 650;
	color: var(--navy);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.benefit-card p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* -- Process CTA -- */
.service-process-cta {
	padding: var(--section-pad) 0;
	background: var(--white);
}

.process-cta-card {
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	border-radius: var(--radius-xl);
	padding: 56px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}

.process-cta-content h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 16px;
}

.process-cta-content h2 em {
	font-style: normal;
	color: var(--blue);
}

.process-cta-content p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
	margin-bottom: 28px;
}

.process-cta-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.process-step {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	transition: background 0.2s, border-color 0.2s;
}

.process-step:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(212, 149, 42, 0.3);
}

.process-step-num {
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 0.75rem;
	color: var(--accent);
}

/* ============================================
   SERVICES HUB PAGE
   ============================================ */

/* -- Hub hero (full-width text, no image) -- */
.services-hub-hero {
	max-width: 720px;
}

.services-hub-hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.4rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--navy);
	margin-bottom: 24px;
}

.services-hub-hero h1 em {
	font-style: normal;
	color: var(--blue);
}

.services-hub-subtitle {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 640px;
}

/* -- Intro (opportunity) section -- */
.services-hub-intro {
	padding: var(--section-pad) 0;
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	position: relative;
	overflow: hidden;
}

.services-hub-intro-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: start;
}

.services-hub-intro-content .label {
	color: rgba(255, 255, 255, 0.4);
}

.services-hub-intro-content h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 20px;
}

.services-hub-intro-content h2 em {
	font-style: normal;
	color: var(--blue);
}

.services-hub-intro-content p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin-bottom: 16px;
}

.services-hub-intro-detail p {
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.75;
	margin-bottom: 16px;
}

.services-hub-intro-detail p:first-child {
	padding-top: 52px;
}

/* -- Services grid section -- */
.services-hub-grid-section {
	padding: var(--section-pad) 0;
	background: var(--off-white);
}

.services-hub-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.services-hub-card {
	display: flex;
	gap: 24px;
	padding: 36px 32px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	text-decoration: none;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.services-hub-card:hover {
	border-color: var(--blue);
	box-shadow: 0 12px 40px rgba(0, 112, 224, 0.1);
	transform: translateY(-4px);
}

.services-hub-card-icon {
	width: 56px;
	height: 56px;
	min-width: 56px;
	border-radius: var(--radius-md);
	background: var(--blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
}

.services-hub-card:nth-child(even) .services-hub-card-icon {
	background: var(--accent-light);
	color: var(--accent);
}

.services-hub-card-body h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.services-hub-card-body p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.65;
	margin-bottom: 16px;
}

.services-hub-card-link {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--blue);
	transition: color 0.2s;
}

.services-hub-card:nth-child(even) .services-hub-card-link {
	color: var(--accent-dark);
}

.services-hub-card:hover .services-hub-card-link {
	color: var(--accent);
}

.services-hub-card:nth-child(even):hover .services-hub-card-link {
	color: var(--blue);
}

/* -- CTA banner with stats -- */
.services-hub-cta {
	padding: var(--section-pad) 0;
	background: var(--white);
}

.services-hub-cta-card {
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	border-radius: var(--radius-xl);
	padding: 56px;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 48px;
	align-items: center;
}

.services-hub-cta-content h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 16px;
}

.services-hub-cta-content h2 em {
	font-style: normal;
	color: var(--blue);
}

.services-hub-cta-content p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
	margin-bottom: 28px;
}

.services-hub-cta-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.services-hub-stat {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-md);
	padding: 24px 20px;
	text-align: center;
	transition: background 0.2s, border-color 0.2s;
}

.services-hub-stat:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(212, 149, 42, 0.3);
}

.services-hub-stat-value {
	display: block;
	font-family: var(--font-mono);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: -0.02em;
	margin-bottom: 4px;
}

.services-hub-stat-label {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
}

/* -- Services Hub Responsive -- */
@media (max-width: 1024px) {
	.services-hub-intro-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.services-hub-intro-detail p:first-child {
		padding-top: 0;
	}

	.services-hub-cta-card {
		grid-template-columns: 1fr;
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.services-hub-hero {
		text-align: center;
		max-width: 100%;
	}

	.services-hub-hero .service-hero-actions {
		justify-content: center;
	}

	.services-hub-subtitle {
		max-width: 100%;
	}

	.services-hub-grid {
		grid-template-columns: 1fr;
	}

	.services-hub-card {
		flex-direction: column;
		padding: 28px 24px;
	}

	.services-hub-cta-card {
		padding: 32px 24px;
	}

	.services-hub-cta-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.services-hub-cta-stats {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   PROCESS FLOW PAGE
   ============================================ */

.process-flow-section {
	padding: var(--section-pad) 0 calc(var(--section-pad) + 20px);
	background: var(--white);
}

.process-flow-intro {
	padding: var(--section-pad) 0;
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	position: relative;
	overflow: hidden;
}

.process-flow-intro .label {
	color: rgba(255, 255, 255, 0.4);
}

.process-flow-intro h2 {
	color: var(--white);
}

.process-flow-intro h2 em {
	font-style: normal;
	color: var(--blue);
}

.process-flow-intro .section-header > p:last-child {
	color: rgba(255, 255, 255, 0.6);
}

.process-flow {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 420px;
	margin: 0 auto;
}

/* -- Step button (the whole card) -- */
.process-flow-step {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 100%;
	padding: 18px 24px;
	background: var(--off-white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	outline: none;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.process-flow-step:hover {
	border-color: var(--blue);
	box-shadow: 0 8px 28px rgba(0, 112, 224, 0.1);
	transform: translateY(-2px);
	background: var(--white);
}

.process-flow-step:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 2px;
}

/* -- Number badge inside card -- */
.process-flow-num {
	font-family: var(--font-mono);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.02em;
	min-width: 28px;
}

/* -- Icon -- */
.process-flow-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: var(--radius-sm);
	background: var(--blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
	transition: background 0.3s, color 0.3s;
}

.process-flow-step:nth-child(4n+3) .process-flow-icon {
	background: var(--accent-light);
	color: var(--accent);
}

.process-flow-step:hover .process-flow-icon {
	background: var(--blue);
	color: var(--white);
}

.process-flow-step:nth-child(4n+3):hover .process-flow-icon {
	background: var(--accent);
	color: var(--white);
}

/* -- Title -- */
.process-flow-step h3 {
	font-size: 1rem;
	font-weight: 650;
	color: var(--navy);
	letter-spacing: -0.01em;
}

/* -- Arrow connector -- */
.process-flow-arrow {
	display: flex;
	justify-content: center;
	padding: 4px 0;
	color: var(--gray-300);
}

.process-flow-arrow-iterate {
	gap: 12px;
}

.process-flow-arrow-up {
	color: var(--accent);
}

/* -- Modal overlay -- */
.process-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(15, 23, 41, 0.65);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	animation: processModalFadeIn 0.25s ease;
}

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

@keyframes processModalFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.process-modal {
	background: var(--white);
	border-radius: var(--radius-xl);
	max-width: 640px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 24px 80px rgba(15, 23, 41, 0.25);
	animation: processModalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes processModalSlideIn {
	from { opacity: 0; transform: translateY(20px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.process-modal-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 32px 36px 0;
}

.process-modal-step-badge {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--navy) 0%, #1a2e50 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--accent);
}

.process-modal-header h2 {
	flex: 1;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -0.02em;
}

.process-modal-close {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: var(--gray-100);
	color: var(--gray-500);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.process-modal-close:hover {
	background: var(--gray-200);
	color: var(--navy);
}

.process-modal-body {
	padding: 24px 36px 36px;
}

.process-modal-body p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 14px;
}

.process-modal-body p:last-child {
	margin-bottom: 0;
}

/* -- Process Flow Responsive -- */
@media (max-width: 768px) {
	.process-modal-header {
		padding: 24px 24px 0;
	}

	.process-modal-body {
		padding: 20px 24px 28px;
	}

	.process-modal-header h2 {
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	.process-flow-step {
		padding: 14px 16px;
		gap: 12px;
	}

	.process-flow-icon {
		display: none;
	}

	.process-flow-step h3 {
		font-size: 0.92rem;
	}

	.process-modal-header {
		padding: 20px 18px 0;
		gap: 12px;
	}

	.process-modal-body {
		padding: 16px 18px 24px;
	}
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* -- Mission banner -- */
.about-mission {
	padding: var(--section-pad) 0;
	background: var(--white);
}

.about-mission-card {
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	border-radius: var(--radius-xl);
	padding: 56px 64px;
	text-align: center;
}

.about-mission-card blockquote {
	font-family: var(--font-serif);
	font-size: clamp(1.15rem, 2.2vw, 1.45rem);
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	font-style: italic;
	max-width: 800px;
	margin: 20px auto 0;
}

/* -- Locations -- */
.about-locations {
	padding: var(--section-pad) 0;
	background: var(--off-white);
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.location-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.location-card:hover {
	border-color: var(--accent);
	box-shadow: 0 4px 16px rgba(212, 149, 42, 0.06);
}

.location-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background: var(--accent-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	margin-bottom: 16px;
}

.location-card:nth-child(2) .location-icon {
	background: var(--blue-light);
	color: var(--blue);
}

.location-card h3 {
	font-size: 1rem;
	font-weight: 650;
	color: var(--navy);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.location-card p {
	font-size: 0.88rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* -- About Page Responsive -- */
@media (max-width: 1024px) {
	.locations-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.about-mission-card {
		padding: 40px 28px;
	}
}

/* -- Service Testimonial (single, on-page) -- */
.service-testimonial {
	padding: var(--section-pad) 0;
	background: var(--off-white);
}

.service-testimonial-card {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	padding: 48px 40px;
}

.service-testimonial-card::before {
	content: "\201C";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 5rem;
	line-height: 1;
	color: var(--accent);
	opacity: 0.2;
	font-family: var(--font-serif);
}

.service-testimonial-card blockquote {
	font-family: var(--font-serif);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 400;
	line-height: 1.7;
	color: var(--text);
	font-style: italic;
	margin-bottom: 28px;
	padding-top: 20px;
}

/* -- Service Page Responsive -- */
@media (max-width: 1024px) {
	.service-hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.service-hero-visual {
		max-width: 520px;
	}

	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-problem-layout,
	.service-problem-layout.two-col {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.process-cta-card {
		grid-template-columns: 1fr;
		padding: 40px;
	}

	.process-cta-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.service-hero-content {
		text-align: center;
		max-width: 100%;
	}

	.service-hero-subtitle {
		max-width: 100%;
	}

	.service-hero-actions {
		justify-content: center;
	}

	.service-hero-visual {
		max-width: 480px;
		margin: 0 auto;
	}

	.service-hero-image-wrapper img {
		height: 320px;
	}

	.breadcrumb {
		justify-content: center;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.process-cta-card {
		padding: 32px 24px;
	}

	.process-cta-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 480px) {
	.service-hero-image-wrapper img {
		height: 260px;
	}

	.process-cta-steps {
		grid-template-columns: 1fr;
	}

	.process-step {
		padding: 12px 14px;
	}
}

/* ============================================
   CONTACT PAGE — What to expect grid
   ============================================ */
.contact-expect-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.contact-expect-item {
	padding: 32px 24px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	text-align: center;
	transition: background 0.3s, border-color 0.3s;
}

.contact-expect-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(212, 149, 42, 0.3);
}

.contact-expect-icon {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	background: rgba(212, 149, 42, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	margin: 0 auto 16px;
}

.contact-expect-item:nth-child(even) .contact-expect-icon {
	background: rgba(0, 112, 224, 0.15);
	color: var(--blue);
}

.contact-expect-item h2 {
	font-size: 1rem;
	font-weight: 650;
	color: var(--white);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.contact-expect-item p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

/* -- Contact Page Responsive -- */
@media (max-width: 1024px) {
	.contact-expect-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.contact-expect-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-section {
	padding: var(--section-pad) 0;
	background: var(--white);
}

.faq-category {
	margin-bottom: 48px;
}

.faq-category:last-child {
	margin-bottom: 0;
}

.faq-category-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 0;
	padding: 16px 24px;
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	border-radius: var(--radius-md);
	cursor: pointer;
	user-select: none;
	transition: margin-bottom 0.3s;
}

.faq-category.open .faq-category-header {
	margin-bottom: 24px;
}

.faq-category-header .faq-category-caret {
	margin-left: auto;
	color: var(--white);
	transition: transform 0.3s;
	flex-shrink: 0;
}

.faq-category.open .faq-category-header .faq-category-caret {
	transform: rotate(180deg);
}

.faq-category .faq-list {
	display: none;
}

.faq-category.open .faq-list {
	display: block;
}

.faq-category-number {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0.04em;
}

.faq-category-header h2 {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--white);
}

/* Accordion items */
.faq-item {
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	margin-bottom: 8px;
	background: var(--off-white);
	transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:last-child {
	margin-bottom: 0;
}

.faq-item:hover {
	border-color: var(--gray-300);
}

.faq-item[open] {
	border-color: var(--accent);
	box-shadow: 0 2px 12px rgba(212, 149, 42, 0.08);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--navy);
	cursor: pointer;
	list-style: none;
	line-height: 1.4;
	transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::marker {
	display: none;
	content: "";
}

/* Chevron icon */
.faq-item summary::after {
	content: "";
	width: 20px;
	height: 20px;
	min-width: 20px;
	margin-left: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23a09d96' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] summary::after {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d4952a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.faq-item[open] summary {
	color: var(--accent-dark);
}

.faq-answer {
	padding: 0 24px 20px;
}

.faq-answer p {
	font-size: 0.92rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* -- FAQ Responsive -- */
@media (max-width: 768px) {
	.faq-item summary {
		padding: 16px 18px;
		font-size: 0.9rem;
	}

	.faq-answer {
		padding: 0 18px 16px;
	}

	.faq-category-header h2 {
		font-size: 1.15rem;
	}
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
	padding: var(--section-pad) 0;
	background: var(--white);
}

.legal-content {
	max-width: 760px;
}

.legal-content h2 {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--navy);
	margin-top: 40px;
	margin-bottom: 12px;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content h3 {
	font-size: 1.05rem;
	font-weight: 650;
	color: var(--navy);
	margin-top: 28px;
	margin-bottom: 8px;
}

.legal-content p {
	font-size: 0.95rem;
	color: var(--text);
	line-height: 1.75;
	margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
	margin-bottom: 16px;
	padding-left: 24px;
}

.legal-content li {
	font-size: 0.95rem;
	color: var(--text);
	line-height: 1.75;
	margin-bottom: 6px;
}

.legal-content strong {
	font-weight: 650;
	color: var(--navy);
}

.legal-content a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-content a:hover {
	color: var(--accent-dark);
}

/* ============================================
   BLOG — Listing & Article Pages
   ============================================ */

/* -- Featured Article Card (dark section) -- */
.blog-featured {
	padding: var(--section-pad) 0;
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	position: relative;
	overflow: hidden;
}

.blog-featured .container {
	position: relative;
	z-index: 1;
}

.blog-featured-card {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: start;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 40px 36px;
	transition: background 0.3s, border-color 0.3s;
	position: relative;
	overflow: hidden;
}

.blog-featured-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--blue));
	opacity: 0;
	transition: opacity 0.3s;
}

.blog-featured-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(212, 149, 42, 0.3);
}

.blog-featured-card:hover::before {
	opacity: 1;
}

.blog-featured-content .blog-meta {
	color: rgba(255, 255, 255, 0.65);
}

.blog-featured-content .blog-meta-author {
	color: rgba(255, 255, 255, 0.8);
}

.blog-featured-content .blog-meta-sep {
	color: rgba(255, 255, 255, 0.5);
}

.blog-featured-content h2 {
	font-family: var(--font-serif);
	font-size: clamp(1.4rem, 2.5vw, 1.8rem);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 14px;
}

.blog-featured-content p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 640px;
}

.blog-featured-accent {
	padding-top: 4px;
}

.blog-featured-label {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--accent);
	padding: 4px 10px;
	border-radius: 100px;
}

.blog-read-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--accent);
	transition: gap 0.2s;
}

.blog-featured-card:hover .blog-read-link {
	gap: 8px;
}

/* -- Blog Meta (shared) -- */
.blog-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: var(--gray-400);
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.blog-meta-author {
	font-weight: 600;
	color: var(--text-secondary);
}

.blog-meta-sep {
	color: var(--gray-300);
}

/* -- Blog Card Grid -- */
.blog-listing {
	padding: var(--section-pad) 0;
	background: var(--off-white);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.blog-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.blog-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 28px 26px;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
	border-color: var(--blue);
	box-shadow: 0 8px 32px rgba(0, 112, 224, 0.08);
	transform: translateY(-4px);
}

.blog-card h3 {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--navy);
	margin-bottom: 10px;
}

.blog-card p {
	font-size: 0.88rem;
	color: var(--text-secondary);
	line-height: 1.6;
	flex: 1;
	margin-bottom: 16px;
}

.blog-card-meta-foot {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--gray-400);
	letter-spacing: 0.02em;
}

/* -- Article Header (uses .service-hero) -- */
.article-title {
	font-family: var(--font-serif);
	font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--navy);
}

/* -- Article Body -- */
.article-body {
	padding: var(--section-pad) 0;
}

.article-content {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

.article-body p {
	font-size: 1.05rem;
	color: var(--text);
	line-height: 1.8;
	margin-bottom: 24px;
}

.article-body .article-lead {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--navy);
	line-height: 1.7;
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--gray-200);
}

.article-body h2 {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 2.5vw, 1.55rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--navy);
	margin-top: 40px;
	margin-bottom: 16px;
}

.article-body h3 {
	font-size: 1.1rem;
	font-weight: 650;
	color: var(--navy);
	margin-top: 32px;
	margin-bottom: 12px;
}

.article-body strong {
	font-weight: 650;
	color: var(--navy);
}

.article-body ul,
.article-body ol {
	margin-bottom: 24px;
	padding-left: 24px;
}

.article-body li {
	font-size: 1.05rem;
	color: var(--text);
	line-height: 1.8;
	margin-bottom: 8px;
}

.article-body blockquote {
	margin: 32px 0;
	padding: 24px 28px;
	border-left: 3px solid var(--accent);
	background: var(--off-white);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-body blockquote p {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-style: italic;
	color: var(--text-secondary);
	margin-bottom: 0;
}

/* -- Article Footer -- */
.article-footer {
	padding: 0 0 var(--section-pad);
}

.article-footer .article-content {
	padding-top: 32px;
	border-top: 1px solid var(--gray-200);
}

.article-author-card {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.article-author-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--blue));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--white);
	flex-shrink: 0;
}

.article-author-info {
	display: flex;
	flex-direction: column;
}

.article-author-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gray-400);
	margin-bottom: 2px;
}

.article-author-name {
	font-size: 1rem;
	font-weight: 650;
	color: var(--navy);
}

.article-author-role {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.article-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--blue);
	transition: gap 0.2s;
}

.article-back-link:hover {
	gap: 12px;
}

/* -- Related Articles -- */
.blog-related {
	padding: var(--section-pad) 0;
	background: var(--off-white);
}

.blog-related-dark {
	background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 100%);
	position: relative;
	overflow: hidden;
}

.blog-related-dark .container {
	position: relative;
	z-index: 1;
}

.blog-related-dark .section-header h2 {
	color: var(--white);
}

.blog-related-dark .blog-card {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
}

.blog-related-dark .blog-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(212, 149, 42, 0.3);
	box-shadow: none;
}

.blog-related-dark .blog-card h3 {
	color: var(--white);
}

.blog-related-dark .blog-card p {
	color: rgba(255, 255, 255, 0.6);
}

.blog-related-dark .blog-meta {
	color: rgba(255, 255, 255, 0.65);
}

.blog-related-dark .blog-meta-author {
	color: rgba(255, 255, 255, 0.8);
}

.blog-related-dark .blog-meta-sep {
	color: rgba(255, 255, 255, 0.5);
}

.blog-related-dark .blog-card-meta-foot {
	color: rgba(255, 255, 255, 0.35);
}

/* -- Blog Responsive -- */
@media (max-width: 1024px) {
	.blog-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.blog-grid-3 {
		grid-template-columns: 1fr;
	}

	.blog-featured-card {
		grid-template-columns: 1fr;
		padding: 28px 24px;
	}

	.blog-featured-accent {
		position: absolute;
		top: 14px;
		right: 14px;
	}

	.article-header h1 {
		font-size: clamp(1.5rem, 5vw, 2rem);
	}

	.article-body p,
	.article-body li {
		font-size: 1rem;
	}

	.article-body .article-lead {
		font-size: 1.1rem;
	}
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: var(--navy);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

#cookie-banner.visible {
	transform: translateY(0);
}

.cookie-banner-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cookie-banner-inner p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.5;
}

.cookie-banner-inner a {
	color: var(--white);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookie-banner-inner a:hover {
	color: var(--accent);
}

#cookie-banner .btn-outline {
	color: rgba(255, 255, 255, 0.75);
	border-color: rgba(255, 255, 255, 0.25);
}

#cookie-banner .btn-outline:hover {
	color: var(--white);
	border-color: var(--white);
}

.cookie-banner-actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.btn-sm {
	padding: 8px 18px;
	font-size: 0.8rem;
}

@media (max-width: 600px) {
	.cookie-banner-inner {
		flex-direction: column;
		text-align: center;
		padding: 20px 20px;
		gap: 14px;
	}
}
