/*!
Theme Name: Finpact Media
Theme URI: https://finpactmedia.com/
Author: Devon Krogh
Author URI: https://finpactmedia.com/
Description: Custom theme for Finpact Media - financial marketing agency
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: finpact-media
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Design Tokens
# Reset / Normalize
# Base Typography
# Base Elements
# Layout
# Header & Navigation
# Buttons & Links
# Footer
# Homepage Sections
# Utilities
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Design Tokens
--------------------------------------------------------------*/

:root {
	/* Colors — from finpactmedia.com Elementor kit post-219.css */
	--color-primary: #1B365D;
	--color-secondary: #2C6E49;
	--color-accent: #C5A46D;
	--color-accent-hover: #B68D40;
	--color-text: #222831;
	--color-text-light: #555;
	--color-text-muted: #959595;
	--color-bg: #FFFFFF;
	--color-bg-light: #F5F7FA;
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-border: #E0E4E8;
	--color-divider: #D5D5D5;

	/* Typography — from kit post-219.css font-family declarations */
	--font-heading: "Figtree", sans-serif;
	--font-subheading: "Lexend", sans-serif;
	--font-nav: "Inter", sans-serif;
	--font-body: "DM Sans", sans-serif;

	/* Font Sizes — from kit h1-h6 + global typography variables */
	--text-xs: 0.8125rem;           /* 13px */
	--text-sm: 0.875rem;            /* 14px */
	--text-base: 1.12rem;           /* ~18px — kit --e-global-typography-text-font-size */
	--text-md: 0.9375rem;           /* 15px — card links, dates */
	--text-lg: 1.25rem;             /* 20px — kit h4 */
	--text-xl: 1.5rem;              /* 24px — kit h4, testimonial */
	--text-2xl: 1.6rem;             /* 26px — kit h3 */
	--text-3xl: 2.25rem;            /* 36px — kit h2 */
	--text-4xl: 3rem;               /* 48px — kit h1 */

	/* Font Weights — from kit */
	--weight-regular: 400;
	--weight-medium: 500;
	--weight-semibold: 600;
	--weight-bold: 700;

	/* Line Heights — from kit h2/h3 */
	--lh-heading: 1.15;
	--lh-h2: 2.5rem;                /* kit h2 line-height */
	--lh-h3: 2rem;                  /* kit h3 line-height */
	--lh-body: 1.6;
	--lh-button: 1.2rem;            /* kit button line-height */

	/* Spacing — from post-121.css section padding values */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: 4rem;
	--space-3xl: 6rem;

	/* Layout — from post-121.css --content-width + --padding-left/right */
	--container-max: 1280px;
	--container-narrow: 900px;
	--container-padding: 4rem;            /* from post-121 section padding-left/right */

	/* Section vertical padding — from post-121.css major sections */
	--section-padding-y: 6rem;
	--section-padding-y-sm: 4rem;

	/* Grid gaps — from post-121.css --gap values */
	--grid-gap-lg: 4rem;            /* why-choose 3-column */
	--grid-gap-md: 2rem;            /* services, insights */

	/* Buttons — from kit post-219.css + post-121.css button declarations */
	--btn-radius: 5px;              /* kit border-radius */
	--btn-padding: 15px 30px;       /* Elementor size-default */
	--btn-padding-sm: 10px 20px;    /* Elementor size-sm */
	--btn-font-size: 1rem;          /* kit button font-size */
	--btn-font-weight: 600;         /* post-121.css button font-weight */
	--btn-line-height: 1.2rem;      /* kit button line-height */

	/* Borders & Shadows — from post-387 card styles */
	--radius-sm: 5px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--shadow-card: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
	--shadow-card-hover: 0px 2px 24px 0px rgba(0, 0, 0, 0.18);
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);

	/* Transitions — from post-121.css transition-duration */
	--transition: 0.3s ease;
}

/*--------------------------------------------------------------
# Reset / Normalize
--------------------------------------------------------------*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

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

/*--------------------------------------------------------------
# Base Typography
--------------------------------------------------------------*/

body {
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: var(--weight-medium);
	line-height: 1.6;
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: var(--weight-bold);
	color: var(--color-primary);
	line-height: var(--lh-heading);
	margin-top: 0;
}

h1 {
	font-size: var(--text-4xl);
	margin-bottom: var(--space-md);
}

h2 {
	font-size: var(--text-3xl);
	font-weight: var(--weight-bold);
	line-height: var(--lh-h2);
	margin-bottom: var(--space-md);
}

h3 {
	font-size: var(--text-2xl);
	font-weight: var(--weight-semibold);
	line-height: var(--lh-h3);
	margin-bottom: var(--space-sm);
}

h4 {
	font-size: var(--text-xl);
	font-weight: var(--weight-medium);
	margin-bottom: var(--space-sm);
}

h5 {
	font-size: var(--text-lg);
	font-weight: var(--weight-medium);
	margin-bottom: var(--space-xs);
}

h6 {
	font-size: var(--text-base);
	font-weight: var(--weight-medium);
	margin-bottom: var(--space-xs);
}

p {
	margin-top: 0;
	margin-bottom: var(--space-md);
}

/*--------------------------------------------------------------
# Base Elements
--------------------------------------------------------------*/

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

figure {
	margin: 0;
}

ul,
ol {
	margin: 0 0 var(--space-md);
	padding-left: var(--space-lg);
}

li {
	margin-bottom: var(--space-xs);
}

blockquote {
	margin: var(--space-lg) 0;
	padding: var(--space-md) var(--space-lg);
	border-left: 4px solid var(--color-accent);
	font-style: italic;
	color: var(--color-text-light);
}

hr {
	border: 0;
	height: 1px;
	background: #E0E0E0;
	margin: var(--space-xl) 0;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: var(--space-md);
}

embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

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

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

.section {
	padding: var(--section-padding-y) 0;
}

.section-light {
	background-color: var(--color-bg-light);
}

.site-main {
	min-height: 60vh;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--color-white);
	box-shadow: var(--shadow-sm);
}

.header-inner {
	max-width: 90rem;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.site-branding {
	flex-shrink: 0;
}

.site-branding a {
	display: flex;
	align-items: center;
}

.site-branding img,
.custom-logo,
.site-logo {
	width: auto;
	height: auto;
	max-height: 53px;
	max-width: 100%;
	display: block;
}

.site-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: var(--weight-bold);
	color: var(--color-primary);
	text-decoration: none;
}

.site-title:hover {
	color: var(--color-primary);
}

/* Navigation — Inter 16px/600 from post-16.css */
.main-navigation {
	display: none;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: var(--space-lg);
}

.main-navigation li {
	margin: 0;
}

.main-navigation a {
	font-family: var(--font-nav);
	font-size: 1rem;
	font-weight: var(--weight-semibold);
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
	padding: 0.25rem 0;
	position: relative;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
	color: var(--color-primary);
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-accent);
	transition: width var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
	width: 100%;
}

/* Header CTA — Lexend 16px/600, accent bg, no border */
.header-cta {
	flex-shrink: 0;
	display: none;
}

.header-cta .btn {
	white-space: nowrap;
}

/* Hamburger Menu Toggle */
.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--space-xs);
	z-index: 1001;
}

.hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-primary);
	transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.main-navigation.toggled {
	display: block;
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--color-white);
	z-index: 999;
	padding: var(--space-lg);
	overflow-y: auto;
}

.main-navigation.toggled ul {
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.main-navigation.toggled li {
	width: 100%;
}

.main-navigation.toggled a {
	display: block;
	padding: var(--space-sm) 0;
	font-size: var(--text-lg);
	border-bottom: 1px solid var(--color-bg-light);
}

.main-navigation.toggled a::after {
	display: none;
}

@media screen and (min-width: 960px) {
	.menu-toggle {
		display: none;
	}

	.main-navigation {
		display: block;
	}

	.header-cta {
		display: block;
	}
}

/*--------------------------------------------------------------
# Buttons & Links
--------------------------------------------------------------*/

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-accent-hover);
}

/* Buttons — from kit: Lexend, 1rem, 600, 5px radius, padding 15px 30px */
.btn {
	display: inline-block;
	font-family: var(--font-subheading);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	line-height: var(--btn-line-height);
	text-decoration: none;
	border-radius: var(--btn-radius);
	padding: var(--btn-padding);
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition);
	border: 2px solid transparent;
	text-align: center;
}

/* Primary gold filled — from kit global-515 */
.btn-primary {
	background-color: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
}

.btn-primary:hover {
	background-color: var(--color-accent-hover);
	color: var(--color-white);
	border-color: var(--color-accent-hover);
}

/* Secondary navy filled */
.btn-secondary {
	background-color: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
}

.btn-secondary:hover {
	background-color: #142847;
	color: var(--color-white);
	border-color: #142847;
}

/* Outline — from post-121.css global-533: white bg, navy text, gold border */
.btn-outline {
	background-color: var(--color-white);
	color: var(--color-primary);
	border-color: var(--color-accent);
}

.btn-outline:hover {
	background-color: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
}

/* Outline on dark backgrounds — white border, white text */
.btn-outline-light {
	background-color: transparent;
	color: var(--color-white);
	border-color: var(--color-white);
}

.btn-outline-light:hover {
	background-color: var(--color-white);
	color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	background-color: #1B365D;
	color: #FAF9F5;
	font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 96px 32px 72px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 56px;
	align-items: start;
}

/* Brand column */

.footer-brand-link {
	display: inline-block;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.footer-brand-link:hover,
.footer-brand-link:focus {
	opacity: 0.85;
}

.footer-logo {
	height: 64px;
	width: auto;
	display: block;
	/* SVG ships in brand colors; brightness+invert tints it cream-on-navy. */
	filter: brightness(0) invert(1);
}

/* Column headings — gold small-caps eyebrow, all 4 columns share baseline */

.footer-heading {
	font-family: "Figtree", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #C5A46D;
	margin: 0 0 24px 0;
}

/* Quick Links nav */

.footer-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav-list li {
	margin: 0 0 12px 0;
}

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

.footer-nav-list a {
	font-size: 15px;
	color: #FAF9F5;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus {
	color: #C5A46D;
}

/* Get in Touch — stacked sub-blocks with their own gold eyebrows */

.footer-contact-block {
	margin-bottom: 24px;
}

.footer-contact-block:last-of-type {
	margin-bottom: 0;
}

.footer-eyebrow {
	display: block;
	font-family: "Figtree", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #C5A46D;
	margin-bottom: 6px;
}

.footer-contact-value {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(250, 249, 245, 0.9);
	margin: 0;
}

.footer-contact-value a {
	color: rgba(250, 249, 245, 0.9);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-contact-value a:hover,
.footer-contact-value a:focus {
	color: #C5A46D;
}

/* CTA text link — last element in Get in Touch column */

.footer-cta-link {
	display: inline-block;
	margin-top: 28px;
	font-family: "Figtree", sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #FAF9F5;
	text-decoration: none;
	border-bottom: 1px solid #C5A46D;
	padding-bottom: 4px;
	transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.footer-cta-link:hover,
.footer-cta-link:focus {
	color: #C5A46D;
	border-bottom-width: 2px;
	padding-bottom: 3px; /* keep baseline stable when border thickens */
}

.footer-cta-arrow {
	display: inline-block;
	margin-left: 4px;
	transition: transform 0.2s ease;
}

.footer-cta-link:hover .footer-cta-arrow,
.footer-cta-link:focus .footer-cta-arrow {
	transform: translateX(4px);
}

/* Social icons — circular gold outline */

.social-links {
	display: flex;
	gap: 12px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid #C5A46D;
	color: #C5A46D;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
	background-color: #C5A46D;
	color: #1B365D;
}

.social-links svg {
	width: 18px;
	height: 18px;
}

/* Bottom copyright bar — one horizontal row, de-emphasized */

.footer-bottom {
	border-top: 1px solid rgba(250, 249, 245, 0.15);
}

.footer-bottom-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 24px 32px;
}

.footer-copyright {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(250, 249, 245, 0.55);
	text-align: center;
}

.footer-copyright a {
	color: rgba(250, 249, 245, 0.55);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-copyright a:hover,
.footer-copyright a:focus {
	color: #C5A46D;
}

.footer-sep {
	margin: 0 12px;
	color: rgba(250, 249, 245, 0.3);
}

/* Desktop — 4-col asymmetric grid (Brand 28% / Links 15% / Contact 42% / Social 15%) */

@media screen and (min-width: 768px) {
	.footer-inner {
		grid-template-columns: 28% 15% 42% 15%;
		gap: 0;
		column-gap: 32px;
		padding: 120px 48px 80px;
	}

	.footer-copyright {
		text-align: left;
	}
}

/* Mobile stack order: Brand → Get in Touch → Quick Links → Follow Us */

@media screen and (max-width: 767px) {
	.footer-brand   { order: 1; }
	.footer-contact { order: 2; }
	.footer-nav     { order: 3; }
	.footer-social  { order: 4; }

	/* Separators between bottom-bar items wrap poorly when stacked; hide them
	   on narrow widths and let the links flow as a list. */
	.footer-sep {
		display: none;
	}

	.footer-copyright {
		line-height: 2;
	}

	.footer-copyright a {
		display: inline-block;
		margin: 0 8px;
	}
}

/*--------------------------------------------------------------
# Homepage Sections
--------------------------------------------------------------*/

/* Hero — from post-121.css: 35c5401 (bg overlay), 63b6771 (content), 686a1e5 (h1), 6283d2d (p) */
.hero {
	position: relative;
	min-height: 90vh;                  /* 35c5401: --min-height: 90vh */
	display: flex;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	/* 35c5401 ::before: linear-gradient(90deg, primary 25%, transparent 100%) */
	background: linear-gradient(90deg, var(--color-primary) 25%, rgba(27, 54, 93, 0) 100%);
	opacity: 1;                        /* 35c5401: --overlay-opacity: 1 (desktop) */
	z-index: 1;
}

.hero-inner {
	max-width: 82rem;                  /* 63b6771 custom CSS: max-width: 82rem */
	margin: 0 auto;
	padding: var(--space-3xl) var(--container-padding);
	width: 100%;
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 30rem;                  /* 686a1e5 + 6283d2d custom CSS: max-width: 30rem */
}

.hero-content h1 {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: var(--weight-bold);
	color: var(--color-white);         /* 686a1e5: color: --e-global-color-187b96c (#FFF) */
	margin-bottom: var(--space-md);
	line-height: 1.15;
}

.hero-content p {
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: var(--space-lg);
	line-height: 1.7;
}

@media screen and (min-width: 768px) {
	.hero-content h1 {
		font-size: 3.5rem;
	}
}

/* 35c5401 tablet: gradient 53%, opacity 0.93 */
@media screen and (max-width: 1024px) {
	.hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 53%, rgba(27, 54, 93, 0) 100%);
		opacity: 0.93;
	}
}

/* Why Choose Finpact */
.why-choose {
	padding: var(--space-3xl) 0;
	background: var(--color-white);
}

.why-choose .container {
	text-align: center;
}

.why-choose h2 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin-bottom: var(--space-2xl);
}

.why-choose-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--grid-gap-lg);
	margin-bottom: var(--space-2xl);
}

.why-choose-card {
	text-align: center;
	padding: var(--space-lg);
}

/* Icons are downloaded SVGs with built-in gradient circles — 140px from post-121.css */
.why-choose-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-md);
}

.why-choose-icon img {
	width: 140px;                      /* 4eb75410: font-size: 140px; svg height: 140px */
	height: 140px;
}

.why-choose-card h3 {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	color: var(--color-primary);
	margin-bottom: var(--space-sm);
}

.why-choose-card p {
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: var(--weight-medium);
	line-height: var(--lh-body);
	max-width: 380px;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.why-choose-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Testimonial / Real Results — green bg with pattern image + dark overlay */
/* Testimonial — from post-121.css: 1983e65f (outer), 62c9d9b (text), 5f646eee (inner) */
.testimonial {
	background-color: var(--color-secondary);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: var(--color-white);
	padding: 0;                        /* padding handled by inner container */
	position: relative;
}

.testimonial-overlay {
	position: absolute;
	inset: 0;
	/* 1983e65f ::before: background-color: #000000A6, --overlay-opacity: 0.5 */
	background-color: rgba(0, 0, 0, 0.65);
	opacity: 0.5;
	z-index: 1;
}

/* ebc28aa: color: --e-global-color-23a6625 (#F5F7FA) */
.testimonial-heading {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	color: var(--color-bg-light);
	margin-bottom: var(--space-lg);
}

/* 1983e65f: padding 4rem all sides, gap 3rem, content-width 1280px */
.testimonial-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 4rem;                     /* 1983e65f: --padding: 4rem all sides */
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;                         /* 1983e65f: --gap: 3rem 3rem */
	align-items: center;
	position: relative;
	z-index: 2;
}

/* 62c9d9b: DM Sans, 1.5rem, weight 500, text-shadow */
.testimonial-content blockquote {
	border: none;
	padding: 0;
	margin: 0;
	font-style: normal;
	font-family: var(--font-body);
	font-size: 1.5rem;                 /* 62c9d9b: font-size: 1.5rem */
	font-weight: var(--weight-medium); /* 62c9d9b: font-weight: 500 */
	line-height: 1.8;
	color: var(--color-white);
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* 62c9d9b */
	position: relative;
}

.testimonial-content blockquote::before {
	display: none;
}

.testimonial-content blockquote p {
	color: var(--color-white);
	margin-bottom: var(--space-md);
}

.testimonial-attribution {
	font-style: normal;
	font-weight: var(--weight-semibold);
	font-family: var(--font-subheading);
	font-size: var(--text-base);
}

.testimonial-attribution span {
	display: block;
	font-weight: var(--weight-regular);
	font-size: var(--text-sm);
	opacity: 0.8;
	margin-top: 0.25rem;
}

.testimonial-action {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.testimonial-inner {
		grid-template-columns: 2fr 1fr;
	}

	.testimonial-action {
		text-align: right;
	}
}

/* Services */
.services {
	padding: var(--space-3xl) 0;
	background: var(--color-white);
}

.services .container {
	text-align: center;
}

.services h2 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin-bottom: var(--space-2xl);
}

/* b673de1: gap: 4rem 4rem (desktop), 33.3333% columns */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;                         /* b673de1: --gap: 4rem 4rem */
	margin-bottom: var(--space-2xl);
	text-align: left;
}

.service-item {
	padding: 0;
}

/* Green circle icons at 2.5rem with white SVG — from live site view-stacked */
.service-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--color-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-md);
}

.service-icon svg {
	width: 26px;
	height: 26px;
	color: var(--color-white);
	stroke: var(--color-white);
	fill: none;
}

.service-item h3 {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: var(--weight-bold);
	color: var(--color-primary);
	margin-bottom: var(--space-sm);
}

.service-item p {
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: var(--weight-medium);
	line-height: var(--lh-body);
	margin-bottom: var(--space-sm);
}

.service-item .learn-more {
	font-family: var(--font-subheading);
	font-size: var(--text-md);
	font-weight: var(--weight-semibold);
	color: var(--color-secondary);
	text-decoration: none;
	transition: color var(--transition);
}

.service-item .learn-more:hover {
	color: var(--color-primary);
}

@media screen and (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 960px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* b673de1 tablet: --gap: 2rem 2rem */
@media screen and (max-width: 1024px) {
	.services-grid {
		gap: 2rem;
	}

	.testimonial-inner {
		padding: 4rem 3rem;            /* 1983e65f tablet: --padding: 4rem 3rem */
		gap: 2rem;                     /* 1983e65f tablet: --gap: 2rem 2rem */
	}

	/* 62c9d9b tablet: font-size: 1.12rem */
	.testimonial-content blockquote {
		font-size: 1.12rem;
	}
}

/* Green CTA Band — from post-121.css: 101583bf, min-height: 16.7rem */
.cta-band {
	background-color: var(--color-secondary);
	min-height: 16.7rem;               /* 101583bf: min-height: 16.7rem */
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
}

.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.1);
}

.cta-band .container {
	position: relative;
	z-index: 1;
	width: 100%;
}

/* 101583bf: title font-size 2.2rem, weight 700, margin-bottom 2.3rem */
.cta-band h2 {
	font-family: var(--font-heading);
	color: var(--color-white);
	font-size: 2.2rem;                 /* 101583bf: font-size: 2.2rem */
	font-weight: var(--weight-bold);   /* 101583bf: font-weight: 700 */
	margin-bottom: 2.3rem;             /* 101583bf: margin-bottom: 2.3rem */
}

/* Insights */
.insights {
	padding: var(--space-3xl) 0;
	background: var(--color-white);
}

.insights .container {
	text-align: center;
}

.insights h2 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin-bottom: var(--space-2xl);
}

.insights-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--grid-gap-md);
	margin-bottom: var(--space-2xl);
	text-align: left;
}

/* Insight cards — shadow/radius from post-387 */
.insight-card {
	background: var(--color-white);
	border-radius: var(--btn-radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--transition), transform var(--transition);
	display: flex;
	flex-direction: column;
}

.insight-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}

.insight-card-image {
	display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

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

.insight-card-content {
	padding: 19px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* 3e6d8b5: DM Sans, 1.12rem, weight 500, color secondary, padding 20px 0 */
.insight-card h3 {
	font-family: var(--font-body);
	font-size: var(--text-base);       /* 3e6d8b5: font-size: 1.12rem */
	font-weight: var(--weight-medium); /* 3e6d8b5: font-weight: 500 */
	color: var(--color-secondary);     /* 3e6d8b5: color: --e-global-color-secondary */
	margin-bottom: 0;
	padding: 20px 0;                   /* 3e6d8b5: padding: 20px 0px 20px 0px */
	line-height: 1.4;
}

.insight-card h3 a {
	color: inherit;
	text-decoration: none;
}

.insight-card h3 a:hover {
	color: var(--color-primary);
}

/* READ MORE — from post-387: Lexend 15px/600, accent gold, transparent bg */
.insight-card .read-more {
	font-family: var(--font-subheading);
	font-size: var(--text-md);
	font-weight: var(--btn-font-weight);
	color: var(--color-accent);
	text-decoration: none;
	transition: color var(--transition);
}

.insight-card .read-more:hover {
	color: var(--color-accent-hover);
}

/* Divider — from post-387: 1px solid #D5D5D5 */
.insight-card-divider {
	border-top: 1px solid var(--color-divider);
	margin: var(--space-sm) 0;
}

/* Date — from post-387: Inter 15px/400, #959595, 14px calendar icon */
.insight-card-date {
	font-size: var(--text-md);
	font-family: var(--font-nav);
	font-weight: var(--weight-regular);
	color: var(--color-text-muted);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.insight-card-date svg {
	color: var(--color-text-muted);
	flex-shrink: 0;
}

@media screen and (min-width: 768px) {
	.insights-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	/* When the post count leaves one orphan card in the last
	   row (count mod 3 === 1), center that card under the
	   middle column instead of pinning it to the left. */
	.insights-grid > .insight-card:last-child:nth-child(3n - 2) {
		grid-column: 2 / 3;
	}
}

/* Contact Section */
/* 2b921213: padding 6rem, bg --e-global-color-23a6625 (#F5F7FA) */
.contact-section {
	padding: var(--section-padding-y) 0;
	padding-bottom: calc(var(--section-padding-y) + 160px); /* room for 213px divider */
	background: var(--color-bg-light);
	position: relative;
}

/* Triangle shape divider at bottom — SVG path from live site */
.shape-divider-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	pointer-events: none;
}

/* 2b921213: svg width: calc(193% + 1.3px), height: 213px */
.shape-divider-bottom svg {
	display: block;
	width: calc(193% + 1.3px);
	height: 213px;                     /* 2b921213: height: 213px */
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.shape-divider-bottom path {
	fill: var(--color-primary);
}

/* 51ba268 custom CSS: max-width: 33rem for heading area */
.contact-section .container {
	max-width: var(--container-max);
}

.contact-section h2 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	text-align: center;
	margin-bottom: var(--space-xs);
}

.contact-section .section-subtitle {
	text-align: center;
	color: var(--color-text-light);
	margin-bottom: var(--space-2xl);
}

.contact-form {
	max-width: 640px;
	margin: 0 auto;
}

.form-group {
	margin-bottom: var(--space-md);
}

.form-group label {
	display: block;
	font-family: var(--font-subheading);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	color: var(--color-text);
	margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-text);
	background: var(--color-white);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.08);
}

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

.contact-form .btn {
	width: 100%;
	padding: 0.875rem;
}

/* Contact Form 7 overrides — match our .form-group styling */
.wpcf7 .contact-form {
	max-width: 640px;
	margin: 0 auto;
}

.wpcf7 .form-group {
	margin-bottom: var(--space-md);
}

.wpcf7 .form-group label {
	display: block;
	font-family: var(--font-subheading);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	color: var(--color-text);
	margin-bottom: var(--space-xs);
}

.wpcf7 .wpcf7-form-control-wrap {
	display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
	font-size: var(--text-sm);
	color: #dc3545;
	margin-top: 0.25rem;
}

.wpcf7 .wpcf7-spinner {
	display: none;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-text);
	background: var(--color-white);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.08);
}

.wpcf7 textarea {
	resize: vertical;
	min-height: 140px;
}

.wpcf7 input[type="submit"] {
	display: block;
	width: 100%;
	font-family: var(--font-subheading);
	font-size: 1rem;
	font-weight: var(--weight-semibold);
	line-height: 1.2;
	padding: 0.875rem;
	background-color: var(--color-accent);
	color: var(--color-white);
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background-color var(--transition);
}

.wpcf7 input[type="submit"]:hover {
	background-color: var(--color-accent-hover);
}

.wpcf7-response-output {
	margin-top: var(--space-md) !important;
	padding: var(--space-sm) !important;
	border-radius: var(--radius-sm) !important;
}

/*--------------------------------------------------------------
# Content Defaults
--------------------------------------------------------------*/

.entry-header {
	margin-bottom: var(--space-lg);
}

.entry-title {
	font-family: var(--font-heading);
	font-weight: var(--weight-bold);
	color: var(--color-primary);
}

.entry-content {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.post,
.page {
	margin: 0 0 var(--space-lg);
}

.updated:not(.published) {
	display: none;
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/

/* About Hero — 4b1baf74: min-height 90vh, flex centered */
.about-hero {
	position: relative;
	min-height: 90vh;                  /* 4b1baf74: --min-height: 90vh */
	display: flex;
	align-items: center;               /* 4b1baf74: --align-items: center */
	justify-content: center;           /* 4b1baf74: --justify-content: center */
	color: var(--color-white);
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	text-align: center;
}

.about-hero-overlay {
	position: absolute;
	inset: 0;
	background-color: var(--color-primary);
	opacity: 0.75;
	z-index: 1;
}

.about-hero-inner {
	position: relative;
	z-index: 2;
	padding: var(--space-3xl) var(--container-padding);
	max-width: var(--container-narrow);
	margin: 0 auto;
}

.about-hero h1 {
	color: var(--color-white);
	font-size: var(--text-lg);
	font-weight: var(--weight-semibold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: var(--space-sm);
}

.about-hero h2 {
	color: var(--color-white);
	font-size: var(--text-4xl);
	line-height: 1.15;
	margin-bottom: var(--space-md);
}

.about-hero p {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--space-lg);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* 4b1baf74 mobile: padding 3rem 1rem, no min-height */
@media screen and (max-width: 767px) {
	.about-hero {
		min-height: auto;
	}

	.about-hero-inner {
		padding: 3rem 1rem;
	}
}

/* Our Story */
.about-story-inner {
	max-width: var(--container-narrow);
	margin: 0 auto;
	text-align: center;
}

.about-story-inner h3 {
	color: var(--color-secondary);
	margin-bottom: var(--space-md);
}

.about-story-inner p {
	font-size: var(--text-base);
	line-height: var(--lh-body);
	margin-bottom: var(--space-lg);
}

/* Who We Work With — white card container with shadow */
.about-clients-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: var(--space-2xl);
	overflow: hidden;
}

.about-clients-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-2xl);
	align-items: center;
}

.about-clients-image img {
	border-radius: var(--radius-md);
	width: 100%;
}

.about-clients-content h2 {
	margin-bottom: var(--space-md);
}

.about-clients-content p {
	margin-bottom: var(--space-md);
}

/* Checkmark bullet list */
.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-sm) var(--space-lg);
}

.check-list li {
	position: relative;
	padding-left: 1.75rem;
	font-weight: var(--weight-medium);
	margin: 0;
}

.check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 18px;
	height: 18px;
	background-color: var(--color-secondary);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 11px;
	background-position: center;
	background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
	.about-clients-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Leadership — heading + two card grid */
.about-leadership h2 {
	margin-bottom: var(--space-2xl);
}

.leadership-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-2xl);
}

.leader-card {
	text-align: center;
}

.leader-photo {
	margin-bottom: var(--space-lg);
}

.leader-photo img {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	border-radius: var(--radius-md);
}

.leader-info h3 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin-bottom: 0.25rem;
}

.leader-info h4 {
	font-family: var(--font-subheading);
	color: var(--color-secondary);
	font-weight: var(--weight-semibold);
	margin-bottom: var(--space-md);
}

.leader-info p {
	font-size: var(--text-base);
	line-height: var(--lh-body);
	text-align: left;
}

@media screen and (min-width: 768px) {
	.leadership-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/

/* Services Hero — 8195fb5: min-height 90vh, LEFT-ALIGNED text, image on right */
.services-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.services-hero-overlay {
	position: absolute;
	inset: 0;
	/* 35fa9a44: gradient from left (solid navy) to right (transparent) */
	background: linear-gradient(90deg, var(--color-primary) 25%, rgba(27, 54, 93, 0) 100%);
	opacity: 1;
	z-index: 1;
}

.services-hero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: var(--space-3xl) var(--container-padding);
	width: 100%;
}

.hero-eyebrow {
	display: block;
	font-family: var(--font-subheading);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-accent);
	margin-bottom: var(--space-sm);
}

.services-hero h1 {
	color: var(--color-white);
	font-size: var(--text-4xl);
	line-height: 1.15;
	margin-bottom: var(--space-md);
	max-width: 30rem;
}

.services-hero p {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--space-lg);
	max-width: 30rem;
}

@media screen and (min-width: 768px) {
	.services-hero h1 {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 1024px) {
	.services-hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 53%, rgba(27, 54, 93, 0) 100%);
		opacity: 0.93;
	}
}

@media screen and (max-width: 767px) {
	.services-hero {
		min-height: auto;
	}

	.services-hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 100%, rgba(27, 54, 93, 0) 89%);
		opacity: 0.85;
	}

	.services-hero-inner {
		padding: 3rem 1.25rem;
	}
}

/* Why Finance Needs Digital Marketing — 3-column grid with gradient icon squares */
.services-why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-2xl);
	margin-bottom: var(--space-2xl);
}

.services-why-card {
	text-align: center;
}

/* 833c0eb: gradient rounded square, 6.5rem, border-radius 16px, padding 1rem */
.services-why-icon {
	width: 6.5rem;
	height: 6.5rem;
	border-radius: 16px;
	background-image: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-md);
	padding: 1rem;
}

.services-why-icon img {
	width: 36px;
	height: 36px;
	filter: brightness(0) invert(1);  /* make FA icons white */
}

.services-why-card h3 {
	color: var(--color-primary);
	margin-bottom: var(--space-sm);
}

.services-why-card p {
	max-width: 380px;
	margin: 0 auto;
	line-height: var(--lh-body);
}

@media screen and (min-width: 768px) {
	.services-why-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Our Services — detailed card grid with checkmark bullets */
.services-detail .section-subtitle {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--space-2xl);
}

/* 2625e7cb: border-radius 2rem, shadow 0px 0px 10px 0px #D1D5DB, padding 2rem */
.services-detail-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	margin-bottom: var(--space-2xl);
	text-align: center;
}

.service-detail-card {
	background: var(--color-white);
	border-radius: 2rem;               /* 2625e7cb: --border-radius: 2rem */
	box-shadow: 0px 0px 10px 0px #D1D5DB; /* 2625e7cb: box-shadow */
	padding: 2rem;                     /* 2625e7cb: --padding: 2rem */
	transition: box-shadow var(--transition);
}

.service-detail-card:hover {
	box-shadow: 0px 0px 10px 4px #D1D5DB; /* 2625e7cb:hover */
}

/* Service card icon — plain green filled glyph, no circle background */
.service-detail-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-md);
	color: var(--color-secondary);
}

.service-detail-icon img {
	width: 40px;
	height: 40px;
}

.service-detail-card h3 {
	font-family: var(--font-heading);
	font-weight: var(--weight-bold);
	color: var(--color-primary);
	margin-bottom: var(--space-sm);
}

.service-detail-card > p {
	margin-bottom: var(--space-md);
	line-height: var(--lh-body);
}

.service-detail-card .check-list {
	gap: var(--space-xs) 0;
	grid-template-columns: 1fr;
	text-align: left;
}

@media screen and (min-width: 768px) {
	.services-detail-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 960px) {
	.services-detail-grid {
		grid-template-columns: repeat(3, 1fr);  /* 3×2 grid */
	}
}

/* FAQ — native <details>/<summary> accordion */
.faq-list {
	max-width: var(--container-narrow);
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--color-divider);
}

.faq-item:first-child {
	border-top: 1px solid var(--color-divider);
}

.faq-question {
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: var(--weight-medium);
	color: var(--color-text);
	padding: var(--space-md) 0;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: var(--weight-regular);
	color: var(--color-text-light);
	flex-shrink: 0;
	margin-left: var(--space-md);
	transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
	content: '\2212';                  /* minus sign */
}

.faq-answer {
	padding: 0 0 var(--space-md);
}

.faq-answer p {
	color: var(--color-text-light);
	line-height: var(--lh-body);
}

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

/*--------------------------------------------------------------
# Success Stories Page
--------------------------------------------------------------*/

/* Hero — 77d01332: 90vh, left-aligned, same gradient overlay pattern */
.ss-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.ss-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--color-primary) 25%, rgba(27, 54, 93, 0) 100%);
	opacity: 1;
	z-index: 1;
}

.ss-hero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: var(--space-3xl) var(--container-padding);
	width: 100%;
}

.ss-hero h1 {
	color: var(--color-white);
	font-size: var(--text-4xl);
	line-height: 1.15;
	margin-bottom: var(--space-md);
	max-width: 30rem;
}

.ss-hero .hero-eyebrow,
.ss-hero > .ss-hero-inner > .hero-eyebrow {
	color: #C5A46D;                    /* gold — hardcoded to prevent any override */
}

.ss-hero p {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--space-lg);
	max-width: 30rem;
}

@media screen and (min-width: 768px) {
	.ss-hero h1 {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 1024px) {
	.ss-hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 53%, rgba(27, 54, 93, 0) 100%);
		opacity: 0.93;
	}
}

@media screen and (max-width: 767px) {
	.ss-hero {
		min-height: auto;
	}

	.ss-hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 100%, rgba(27, 54, 93, 0) 89%);
		opacity: 0.85;
	}

	.ss-hero-inner {
		padding: 3rem 1.25rem;
	}
}

/* Case Study Cards — c4721ca: padding 6rem 4rem, gap 3rem */
.ss-cases-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;                         /* c4721ca: --gap: 3rem 3rem */
}

/* 1cc3772/0f06f60: width 23rem, min-height 20rem, radius 16px, shadow, padding 2rem */
.ss-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 23rem;
	min-height: 20rem;
	background: var(--color-white);
	border-radius: 16px;
	box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
	padding: 2rem;
	text-decoration: none;
	text-align: center;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	gap: 5px;
}

.ss-card:hover {
	box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

.ss-card-logo {
	margin-bottom: var(--space-md);
}

.ss-card-logo img {
	width: 70%;                        /* fills ~70% of card width, no max-height cap */
	height: auto;
}

.ss-card h3 {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: var(--weight-bold);
	color: var(--color-primary);
	margin: 0;
}

.ss-card:hover h3 {
	color: var(--color-accent-hover);
}

@media screen and (max-width: 767px) {
	.ss-card {
		width: 100%;
		min-height: 14rem;
	}
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

/* Contact Hero — 2cbce4f1: 90vh, left-aligned, gradient overlay */
.contact-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.contact-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--color-primary) 25%, rgba(27, 54, 93, 0) 100%);
	opacity: 1;
	z-index: 1;
}

.contact-hero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: var(--space-3xl) var(--container-padding);
	width: 100%;
}

.contact-hero .hero-eyebrow {
	color: #C5A46D;
}

.contact-hero h1 {
	color: var(--color-white);
	font-size: var(--text-4xl);
	line-height: 1.15;
	margin-bottom: var(--space-md);
	max-width: 30rem;
}

.contact-hero p {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
	max-width: 30rem;
}

@media screen and (min-width: 768px) {
	.contact-hero h1 {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 1024px) {
	.contact-hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 53%, rgba(27, 54, 93, 0) 100%);
		opacity: 0.93;
	}
}

@media screen and (max-width: 767px) {
	.contact-hero {
		min-height: auto;
	}

	.contact-hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 100%, rgba(27, 54, 93, 0) 89%);
		opacity: 0.85;
	}

	.contact-hero-inner {
		padding: 3rem 1.25rem;
	}
}

/* Two-column form + info layout — 7b56870: padding 6rem 4rem, gap 4rem, row direction */
.contact-two-col {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-2xl);
}

.contact-form-col h2 {
	margin-bottom: var(--space-xs);
}

.contact-form-col .section-subtitle {
	margin-bottom: var(--space-lg);
	color: var(--color-text-light);
}

/* Contact info column */
.contact-info-col h4 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin-bottom: var(--space-lg);
}

.contact-info-block {
	margin-bottom: var(--space-lg);
}

.contact-info-block h5 {
	font-family: var(--font-subheading);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-xs);
}

.contact-info-block p {
	font-size: var(--text-base);
	line-height: 1.6;
	margin-bottom: 0;
}

.contact-info-block a {
	color: var(--color-primary);
	font-weight: var(--weight-medium);
}

.contact-info-block a:hover {
	color: var(--color-accent-hover);
}

/* 7f6c444: --width: 50% on desktop */
@media screen and (min-width: 768px) {
	.contact-two-col {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

/*--------------------------------------------------------------
# Case Study Detail Pages
--------------------------------------------------------------*/

/* Title — white bg, large left-aligned heading */
.cs-title-section {
	padding: var(--space-2xl) 0 0;
}

.cs-title-section h1 {
	font-size: var(--text-4xl);
	color: var(--color-primary);
	max-width: var(--container-narrow);
}

/* Two-column body — 5472972: padding 4rem 6rem, gap 4rem */
.cs-body {
	padding: var(--space-2xl) 0;
}

.cs-two-col {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-2xl);
}

/* Left sidebar: logo + quote — 30% width on desktop */
.cs-sidebar {
	/* empty on mobile, column stacks */
}

.cs-client-logo {
	margin-bottom: var(--space-lg);
}

.cs-client-logo img {
	max-width: 200px;
	height: auto;
}

.cs-quote {
	border: none;
	border-left: 3px solid var(--color-accent);
	padding: 0 0 0 var(--space-md);
	margin: 0 0 var(--space-md);
	font-style: normal;
}

.cs-quote p {
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: var(--weight-medium);
	color: var(--color-text);
	line-height: 1.7;
}

.cs-attribution {
	font-style: normal;
	font-family: var(--font-subheading);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	color: var(--color-primary);
	display: block;
}

.cs-attribution span {
	display: block;
	font-weight: var(--weight-regular);
	color: var(--color-text-light);
	margin-top: 0.15rem;
}

/* Right main content */
.cs-main h2 {
	margin-bottom: var(--space-md);
}

.cs-main p {
	line-height: var(--lh-body);
	margin-bottom: var(--space-md);
}

@media screen and (min-width: 768px) {
	.cs-two-col {
		grid-template-columns: 30% 1fr;  /* left 30%, right ~70% */
		gap: var(--space-2xl);
	}
}

/* Results — light gray bg, metric cards with shadow */
.cs-results {
	background: var(--color-bg-light);
}

.cs-results h2 {
	margin-bottom: var(--space-2xl);
}

/* d6ac855 etc: min-height 10rem, border-radius 1rem, shadow, padding 2rem */
.cs-metrics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-lg);
	max-width: var(--container-max);
	margin: 0 auto;
}

.cs-metric-card {
	background: var(--color-white);
	border-radius: 1rem;               /* d6ac855: --border-radius: 1rem */
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); /* d6ac855: box-shadow */
	min-height: 10rem;                 /* d6ac855: --min-height: 10rem */
	padding: 2rem;                     /* d6ac855: --padding: 2rem */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cs-metric-value {
	display: block;
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: var(--weight-bold);
	color: var(--color-secondary);
	line-height: 1;
	margin-bottom: var(--space-xs);
}

.cs-metric-label {
	display: block;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: var(--weight-medium);
	color: var(--color-text-light);
}

@media screen and (min-width: 768px) {
	.cs-metrics-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 767px) {
	.cs-metric-value {
		font-size: var(--text-3xl);
	}
}

/*--------------------------------------------------------------
# Legal Pages (Privacy Policy, Terms, Sitemap)
--------------------------------------------------------------*/

.legal-hero {
	background-color: var(--color-primary);
	color: var(--color-white);
	padding: var(--space-3xl) 0 var(--space-2xl);
	text-align: left;
}

.legal-hero h1 {
	color: var(--color-white);
	font-size: var(--text-4xl);
	margin-bottom: var(--space-xs);
}

.legal-updated {
	font-family: var(--font-nav);
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

.legal-content-inner {
	max-width: 720px;
}

.legal-content-inner h2 {
	font-size: var(--text-3xl);
	margin-top: var(--space-2xl);
	margin-bottom: var(--space-md);
}

.legal-content-inner h3 {
	font-size: var(--text-2xl);
	margin-top: var(--space-lg);
	margin-bottom: var(--space-sm);
}

.legal-content-inner p {
	line-height: 1.75;
	margin-bottom: var(--space-md);
}

.legal-content-inner ul,
.legal-content-inner ol {
	margin-bottom: var(--space-md);
	padding-left: var(--space-lg);
}

.legal-content-inner li {
	margin-bottom: 0.4rem;
	line-height: 1.7;
}

.legal-content-inner a {
	color: var(--color-accent-hover);
	text-decoration: underline;
}

.legal-content-inner a:hover {
	color: var(--color-primary);
}

/* Sitemap page — wider for link lists */
.legal-content-inner .sitemap-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
}

.legal-content-inner .sitemap-columns ul {
	list-style: none;
	padding: 0;
}

.legal-content-inner .sitemap-columns li {
	margin-bottom: 0.6rem;
}

.legal-content-inner .sitemap-columns a {
	text-decoration: none;
	color: var(--color-primary);
	font-weight: var(--weight-medium);
}

.legal-content-inner .sitemap-columns a:hover {
	color: var(--color-accent-hover);
}

@media screen and (max-width: 767px) {
	.legal-hero h1 {
		font-size: var(--text-3xl);
	}

	.legal-content-inner .sitemap-columns {
		grid-template-columns: 1fr;
	}
}

/*--------------------------------------------------------------
# Insights Archive
--------------------------------------------------------------*/

/* Hero — a6be640: 90vh, left-aligned, gradient overlay */
.insights-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.insights-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--color-primary) 25%, rgba(27, 54, 93, 0) 100%);
	opacity: 1;
	z-index: 1;
}

.insights-hero-inner {
	position: relative;
	z-index: 2;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: var(--space-3xl) var(--container-padding);
	width: 100%;
}

.insights-hero .hero-eyebrow {
	color: #C5A46D;
}

.insights-hero h1 {
	color: var(--color-white);
	font-size: var(--text-4xl);
	line-height: 1.15;
	margin-bottom: var(--space-md);
	max-width: 30rem;
}

.insights-hero p {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
	max-width: 30rem;
}

@media screen and (min-width: 768px) {
	.insights-hero h1 {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 1024px) {
	.insights-hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 53%, rgba(27, 54, 93, 0) 100%);
		opacity: 0.93;
	}
}

@media screen and (max-width: 767px) {
	.insights-hero {
		min-height: auto;
	}

	.insights-hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 100%, rgba(27, 54, 93, 0) 89%);
		opacity: 0.85;
	}

	.insights-hero-inner {
		padding: 3rem 1.25rem;
	}
}

/* Archive grid section — fb46859: padding 6rem 4rem, gap 3rem */
.insights-archive h2 {
	margin-bottom: var(--space-lg);
}

/* Category filter */
.insights-filter {
	text-align: center;
	margin-bottom: var(--space-2xl);
}

.insights-filter select {
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: var(--weight-medium);
	color: var(--color-text);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 0.6rem 2.5rem 0.6rem 1rem;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23222831' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
}

.insights-filter select:focus {
	outline: none;
	border-color: var(--color-primary);
}

/* Pagination */
.nav-links {
	display: flex;
	justify-content: center;
	gap: var(--space-xs);
	margin-top: var(--space-2xl);
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 var(--space-sm);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: var(--weight-medium);
	color: var(--color-primary);
	text-decoration: none;
	border: 1px solid var(--color-border);
	transition: all var(--transition);
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Single Post
--------------------------------------------------------------*/

.single-post-header {
	padding: var(--space-3xl) 0 var(--space-lg);
}

.single-post-meta-top {
	margin-bottom: var(--space-sm);
}

.post-categories a {
	font-family: var(--font-subheading);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	color: var(--color-secondary);
	text-decoration: none;
}

.post-categories a:hover {
	color: var(--color-primary);
}

.single-post-title {
	font-size: var(--text-4xl);
	max-width: 720px;
	margin-bottom: var(--space-md);
}

.single-post-byline {
	font-family: var(--font-nav);
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.single-post-featured-image {
	margin-bottom: var(--space-2xl);
}

.single-post-featured-image img {
	width: 100%;
	border-radius: var(--radius-md);
}

/* Post Content — 720px narrow column for comfortable reading */
.post-content-inner {
	max-width: 720px;
}

/* Table of Contents */
.post-toc {
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-lg);
	margin-bottom: var(--space-2xl);
}

.post-toc-heading {
	font-family: var(--font-subheading);
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
	margin-bottom: var(--space-sm);
}

.post-toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc-counter;
}

.post-toc-list li {
	counter-increment: toc-counter;
	margin-bottom: var(--space-xs);
}

.post-toc-list li a {
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: var(--weight-medium);
	color: var(--color-primary);
	text-decoration: none;
	display: flex;
	gap: 0.5rem;
	line-height: 1.5;
}

.post-toc-list li a::before {
	content: counter(toc-counter) ".";
	font-weight: var(--weight-semibold);
	color: var(--color-secondary);
	flex-shrink: 0;
}

.post-toc-list li a:hover {
	color: var(--color-accent-hover);
}

/* Post Body Typography */
.post-content-inner h2 {
	font-size: var(--text-3xl);
	margin-top: var(--space-3xl);
	margin-bottom: var(--space-md);
	padding-top: var(--space-md);
	scroll-margin-top: 100px;
}

.post-content-inner h3 {
	font-size: var(--text-2xl);
	margin-top: var(--space-2xl);
	margin-bottom: var(--space-sm);
}

.post-content-inner h4 {
	font-size: var(--text-lg);
	margin-top: var(--space-lg);
	margin-bottom: var(--space-sm);
}

.post-content-inner p {
	line-height: 1.8;
	margin-bottom: var(--space-md);
}

.post-content-inner ul,
.post-content-inner ol {
	margin-bottom: var(--space-lg);
	padding-left: var(--space-lg);
}

.post-content-inner li {
	margin-bottom: 0.6rem;
	line-height: 1.75;
}

.post-content-inner blockquote {
	border-left: 3px solid var(--color-accent);
	padding: var(--space-md) var(--space-lg);
	margin: var(--space-lg) 0;
	font-style: italic;
	color: var(--color-text-light);
	background: var(--color-bg-light);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-content-inner blockquote p:last-child {
	margin-bottom: 0;
}

.post-content-inner a {
	color: var(--color-accent-hover);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color var(--transition);
}

.post-content-inner a:hover {
	color: var(--color-primary);
}

.post-content-inner img {
	border-radius: var(--radius-md);
	margin: var(--space-lg) 0;
}

/* Code blocks */
.post-content-inner code {
	font-family: "SF Mono", Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 0.875em;
	background: var(--color-bg-light);
	padding: 0.15em 0.4em;
	border-radius: 4px;
}

.post-content-inner pre {
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-md);
	overflow-x: auto;
	margin: var(--space-lg) 0;
}

.post-content-inner pre code {
	background: none;
	padding: 0;
	border-radius: 0;
}

/* Key Takeaways callout box */
.key-takeaways {
	background-color: var(--color-secondary);
	color: var(--color-white);
	padding: var(--space-lg);
	border-radius: var(--radius-md);
	margin: var(--space-lg) 0;
	box-shadow: var(--shadow-card);
}

.key-takeaways-heading {
	font-family: var(--font-subheading);
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0;
	margin-bottom: var(--space-sm);
}

.key-takeaways ul {
	margin: 0;
	padding-left: var(--space-lg);
}

.key-takeaways li {
	color: var(--color-white);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.key-takeaways li strong {
	color: var(--color-white);
}

/* Share */
.post-share {
	max-width: 720px;
	margin-top: var(--space-2xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-divider);
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.post-share-label {
	font-family: var(--font-subheading);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	color: var(--color-text);
	white-space: nowrap;
}

.post-share-links {
	display: flex;
	gap: var(--space-sm);
}

.post-share-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-bg-light);
	color: var(--color-primary);
	transition: background-color var(--transition), color var(--transition);
}

/* Brand-color hovers for share icons */
.post-share-links a[aria-label="Share on LinkedIn"]:hover {
	background: #0A66C2;
	color: var(--color-white);
}

.post-share-links a[aria-label="Share on Facebook"]:hover {
	background: #1877F2;
	color: var(--color-white);
}

.post-share-links a[aria-label="Share on X"]:hover {
	background: #000000;
	color: var(--color-white);
}

/* Post Navigation */
.single-post-nav {
	padding: var(--space-lg) 0;
	border-top: 1px solid var(--color-bg-light);
}

.single-post-nav .nav-links {
	display: flex;
	justify-content: space-between;
	gap: var(--space-lg);
}

.single-post-nav .nav-subtitle {
	display: block;
	font-family: var(--font-subheading);
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 0.25rem;
}

.single-post-nav .nav-title {
	font-size: var(--text-sm);
	color: var(--color-primary);
}

.single-post-nav a:hover .nav-title {
	color: var(--color-accent-hover);
}

@media screen and (max-width: 767px) {
	.single-post-title {
		font-size: var(--text-3xl);
	}

	.single-post-byline {
		flex-direction: column;
		gap: var(--space-xs);
		align-items: flex-start;
	}

	.post-content-inner h2 {
		font-size: var(--text-3xl);
		margin-top: var(--space-2xl);
	}
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}

.alignleft {
	float: left;
	margin-right: var(--space-md);
	margin-bottom: var(--space-md);
}

.alignright {
	float: right;
	margin-left: var(--space-md);
	margin-bottom: var(--space-md);
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--space-md);
}

.text-center {
	text-align: center;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media screen and (max-width: 959px) {
	:root {
		--text-4xl: 2.25rem;
		--text-3xl: 1.75rem;
		--text-2xl: 1.4rem;
		--text-xl: 1.25rem;
		--text-base: 1rem;
		--container-padding: 3rem;
	}

	.header-inner {
		height: 70px;
	}

	.main-navigation.toggled {
		top: 70px;
	}

	.site-branding img,
	.custom-logo,
	.site-logo {
		max-height: 42px;
	}

	.section {
		padding: var(--section-padding-y-sm) 0;
	}

	.hero {
		min-height: auto;
	}

	.hero-inner {
		padding: var(--space-2xl) var(--container-padding);
	}

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

@media screen and (max-width: 767px) {
	:root {
		--container-padding: 1.25rem;
	}

	.footer-inner {
		grid-template-columns: 1fr;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	/* 35c5401 mobile: gradient 100%, opacity 0.85 */
	.hero-overlay {
		background: linear-gradient(90deg, var(--color-primary) 100%, rgba(27, 54, 93, 0) 89%);
		opacity: 0.85;
	}

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

	/* 1983e65f mobile: padding 2rem 1.25rem, gap 2rem */
	.testimonial-inner {
		text-align: center;
		padding: 2rem 1.25rem;
		gap: 2rem;
	}

	/* 62c9d9b mobile: font-size 1.1rem, line-height 1.5rem */
	.testimonial-content blockquote {
		font-size: 1.1rem;
		line-height: 1.5rem;
	}

	.testimonial-action {
		text-align: center;
	}

	/* Fix 1: About page check-list — stack to 1 column on mobile */
	.about-clients-card .check-list {
		grid-template-columns: 1fr;
	}

	/* Fix 2: Single post nav — stack prev/next vertically */
	.single-post-nav .nav-links {
		flex-direction: column;
		gap: var(--space-sm);
	}

	/* Fix 3: Why Choose icons — scale down on mobile */
	.why-choose-icon img {
		width: 100px;
		height: 100px;
	}
}
