/* ==========================================================================
   SEO Agency Pro — Design System & Components
   ========================================================================== */

:root {
	/* Brand colors (overridden live by inc/customizer.php) */
	--sap-primary: #FE6D0D;
	--sap-secondary: #000000;
	--sap-accent: #FF8B3D;

	--sap-bg: #FEFEFE;
	--sap-bg-tint: #F7F7F7;
	--sap-dark: #000000;
	--sap-dark-2: #141414;
	--sap-white: #FEFEFE;
	--sap-text: #000000;
	--sap-muted: #666666;
	--sap-border: #E5E5E5;
	--sap-success: #16A34A;

	--sap-gradient: linear-gradient(135deg, var(--sap-primary) 0%, var(--sap-accent) 100%);

	--sap-font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
	--sap-font-body: 'Inter', 'Segoe UI', sans-serif;

	--sap-radius-sm: 10px;
	--sap-radius-md: 16px;
	--sap-radius-lg: 24px;
	--sap-radius-pill: 999px;

	--sap-shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.06);
	--sap-shadow-md: 0 12px 32px rgba(17, 24, 39, 0.08);
	--sap-shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.14);

	--sap-container: 1200px;
	--sap-section-space: 6.5rem;
	--sap-header-height: 88px;
}

/* --------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
	margin: 0;
	font-family: var(--sap-font-body);
	color: var(--sap-text);
	background: var(--sap-bg);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; }
figure { margin: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}
.skip-link {
	position: fixed; top: -100px; left: 1rem; z-index: 10000;
	background: var(--sap-primary); color: #fff;
	padding: .75rem 1.25rem; border-radius: var(--sap-radius-sm);
	transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
	outline: 2px solid var(--sap-primary);
	outline-offset: 2px;
}

/* --------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--sap-font-heading);
	color: var(--sap-text);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 .75rem;
}
h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--sap-muted); }

.sap-eyebrow {
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--sap-primary);
	background: rgba(254,109,13,.12);
	padding: .4rem .9rem;
	border-radius: var(--sap-radius-pill);
	margin-bottom: 1rem;
}
.sap-section-title { margin-bottom: 1rem; }
.sap-section-text { max-width: 620px; color: var(--sap-muted); font-size: 1.05rem; }
.sap-section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.sap-section-head .sap-section-text { margin-left: auto; margin-right: auto; }
.sap-page-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }

/* --------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------- */
.sap-container { max-width: var(--sap-container); margin: 0 auto; padding: 0 1.5rem; }
.sap-section { padding: var(--sap-section-space) 0; }
.sap-section--tint { background: var(--sap-bg-tint); }

/* --------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------- */
.sap-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: .5rem;
	padding: .85rem 1.75rem;
	border-radius: var(--sap-radius-pill);
	font-weight: 600;
	font-size: .95rem;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
	white-space: nowrap;
	border: 2px solid transparent;
}
.sap-btn--primary { background: var(--sap-gradient); color: #fff; box-shadow: var(--sap-shadow-sm); }
.sap-btn--primary:hover { transform: translateY(-2px); box-shadow: var(--sap-shadow-md); }
.sap-btn--ghost { border-color: rgba(254,254,254,.3); color: var(--sap-white); background: transparent; }
.sap-btn--ghost:hover { border-color: var(--sap-primary); color: var(--sap-primary); }
.sap-btn--outline { border-color: var(--sap-border); color: var(--sap-text); }
.sap-btn--outline:hover { border-color: var(--sap-primary); color: var(--sap-primary); }
.sap-btn--white { background: var(--sap-white); color: var(--sap-primary); }
.sap-btn--white:hover { transform: translateY(-2px); box-shadow: var(--sap-shadow-lg); }
.sap-btn--sm { padding: .6rem 1.25rem; font-size: .85rem; }
.sap-btn--lg { padding: 1.05rem 2.25rem; font-size: 1rem; }
.sap-btn--block { width: 100%; }

.sap-link-arrow {
	display: inline-flex; align-items: center; gap: .4rem;
	font-weight: 600; color: var(--sap-primary); font-size: .9rem;
}
.sap-link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.sap-link-arrow:hover svg { transform: translateX(4px); }

.sap-badge {
	display: inline-block;
	background: rgba(254,109,13,.14);
	color: var(--sap-primary);
	padding: .3rem .8rem;
	border-radius: var(--sap-radius-pill);
	font-size: .75rem;
	font-weight: 700;
}
.sap-badge--sm { font-size: .7rem; padding: .2rem .6rem; }

/* --------------------------------------------------------------------
   Header
   -------------------------------------------------------------------- */
.sap-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 999;
	transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
	padding: 1.25rem 0;
}
.sap-header::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: var(--sap-gradient); opacity: 0; transition: opacity .3s ease;
}
.sap-header--solid { background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--sap-border); }
/* Always a solid dark bar — not literally see-through — so the same
   header color/branding shows on every page regardless of what sits
   below it (most pages don't have a dark hero to blend into). */
.sap-header--transparent { background: rgba(10,10,12,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(254,254,254,.08); }
.sap-header.is-scrolled { backdrop-filter: blur(10px); padding: .85rem 0; box-shadow: 0 12px 30px -18px rgba(20,20,25,.35); }
.sap-header.is-scrolled::before { opacity: 1; }
.sap-header--solid.is-scrolled { background: var(--sap-white); }
.sap-header--transparent.is-scrolled { background: rgba(10,10,12,.96); box-shadow: 0 12px 30px -14px rgba(0,0,0,.6); }

.sap-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.sap-header__brand { flex-shrink: 0; min-width: 0; }
.sap-logo-text { font-family: var(--sap-font-heading); font-weight: 800; font-size: 1.35rem; color: var(--sap-secondary); white-space: nowrap; }
.sap-logo-text--light { color: var(--sap-white); }
.custom-logo { max-height: 44px; width: auto; }

.sap-header__nav { flex: 1; display: flex; justify-content: center; }
.primary-menu { display: flex; align-items: center; gap: .25rem; }
.primary-menu > li { position: relative; }
/* Padding lives on the link itself (a real, generous hit target) rather
   than as an invisible trick — hovering anywhere near the word, not just
   its exact text pixels, opens the dropdown, and the panel stays flush
   underneath so moving the pointer down into it never crosses a gap. */
.primary-menu .menu-link {
	position: relative; font-weight: 600; font-size: .95rem; color: var(--sap-secondary);
	padding: .7rem 1rem; border-radius: var(--sap-radius-pill); display: inline-block;
	transition: color .2s ease, background .2s ease;
}
.primary-menu .menu-link:hover { color: var(--sap-primary); background: rgba(254,109,13,.08); }
.sap-header--transparent .primary-menu .menu-link:hover { background: rgba(254,254,254,.1); }
.primary-menu .sub-menu {
	position: absolute; top: 100%; left: 1rem; min-width: 220px;
	background: #fff; border-radius: var(--sap-radius-lg); box-shadow: var(--sap-shadow-lg);
	padding: .6rem; opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	/* Belt-and-braces, same as the mobile panel: the mega-menu's inner
	   column list resets its own visibility to "visible" (so it renders
	   normally once the panel is open), which — per CSS spec — lets a
	   child override an ancestor's visibility:hidden. That silently made
	   those links live/clickable in their full-size closed-panel position
	   (which sits well below the header, over whatever content follows)
	   even while the panel was invisible. pointer-events is not
	   overridable the same way, so this blocks interaction outright. */
	pointer-events: none;
}
.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.primary-menu .sub-menu .menu-link { padding: .6rem .75rem; border-radius: var(--sap-radius-sm); }
.primary-menu .sub-menu .menu-link:hover { background: var(--sap-bg-tint); }
.primary-menu .submenu-toggle { display: none; }

/* Mega menu: add the "mega-menu" CSS class to a top-level menu item in
   Appearance → Menus (Screen Options → CSS Classes) to turn its dropdown
   into a multi-column panel instead of a simple single-column list. */
.primary-menu .menu-item.mega-menu > .sub-menu {
	left: 50%; transform: translateX(-50%) translateY(8px);
	min-width: 520px; max-width: 720px;
	background: var(--sap-secondary); padding: 2rem; padding-top: 1.75rem;
	display: flex; flex-wrap: wrap; gap: 2rem;
	border-radius: var(--sap-radius-lg); overflow: hidden;
}
.primary-menu .menu-item.mega-menu > .sub-menu::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sap-gradient);
}
.primary-menu .menu-item.mega-menu:hover > .sub-menu,
.primary-menu .menu-item.mega-menu:focus-within > .sub-menu { transform: translateX(-50%) translateY(0); }
.sap-mega-menu__col { flex: 1 1 200px; min-width: 200px; }
.sap-mega-menu__col-title {
	display: block; font-size: .75rem; font-weight: 700; letter-spacing: .08em;
	text-transform: uppercase; color: var(--sap-primary);
	padding-bottom: .6rem; margin-bottom: .5rem; border-bottom: 1px solid rgba(254,254,254,.15);
}
.primary-menu .sap-mega-menu__list {
	position: static; opacity: 1; visibility: visible; transform: none;
	min-width: 0; background: transparent; box-shadow: none; padding: 0;
	display: flex; flex-direction: column; gap: .1rem;
}
.primary-menu .sap-mega-menu__list .menu-link {
	color: rgba(254,254,254,.75); padding: .45rem .5rem .45rem .9rem;
	border-radius: var(--sap-radius-sm); border-left: 2px solid transparent;
	transition: color .18s ease, background .18s ease, border-color .18s ease, padding-left .18s ease;
}
.primary-menu .sap-mega-menu__list .menu-link:hover {
	color: var(--sap-white); background: rgba(254,254,254,.08);
	border-left-color: var(--sap-primary); padding-left: 1.1rem;
}

.sap-header__actions { display: flex; align-items: center; gap: 1.25rem; }
.sap-header__phone {
	display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .85rem;
	padding: .5rem .9rem; border-radius: var(--sap-radius-pill); border: 1px solid var(--sap-border);
	transition: border-color .2s ease, background .2s ease;
}
.sap-header__phone:hover { border-color: var(--sap-primary); background: rgba(254,109,13,.06); }
.sap-header__phone svg { width: 16px; height: 16px; color: var(--sap-primary); flex-shrink: 0; }

.sap-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.sap-menu-toggle__bar { width: 22px; height: 2px; background: var(--sap-secondary); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

.sap-mobile-menu {
	position: fixed; inset: 0; top: var(--sap-header-height);
	background: #fff; padding: 2rem 1.5rem; transform: translateX(100%);
	transition: transform .3s ease, visibility .3s ease; z-index: 998; overflow-y: auto;
	/* Belt-and-braces: even if the slide-out transform ever falls short of
	   fully clearing the viewport (e.g. sub-pixel/zoom rounding), the panel
	   still can't be hovered, clicked, or mistaken for an open dropdown
	   while closed. */
	visibility: hidden; pointer-events: none;
}

/* Transparent header sits over the dark hero — stays white/dark-translucent throughout scroll. */
.sap-header--transparent .sap-logo-text,
.sap-header--transparent .primary-menu .menu-link,
.sap-header--transparent .sap-header__phone,
.sap-header--transparent .sap-menu-toggle__bar { color: var(--sap-white); }
.sap-header--transparent .sap-header__phone { border-color: rgba(254,254,254,.25); }
.sap-header--transparent .sap-header__phone:hover { border-color: var(--sap-primary); }
.sap-header--transparent .sap-menu-toggle__bar { background: var(--sap-white); }
.sap-mobile-menu.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.mobile-menu-list { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 2rem; }
.mobile-menu-list .menu-link { display: block; padding: .9rem 0; font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--sap-border); }
.mobile-menu-list .sub-menu { padding-left: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--sap-border); }
.mobile-menu-list .sap-mega-menu__col { margin-top: 1rem; }
.mobile-menu-list .sap-mega-menu__col-title { border-bottom-color: var(--sap-border); }
.mobile-menu-list .sap-mega-menu__list .menu-link {
	font-size: .95rem; font-weight: 500; color: var(--sap-muted); padding: .55rem 0; border-bottom: none;
}
.mobile-menu-list .sap-mega-menu__list .menu-link:hover { color: var(--sap-primary); }

.sap-page-header-spacer { height: var(--sap-header-height); }

/* --------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------- */
.sap-hero { position: relative; padding: calc(var(--sap-header-height) + 4rem) 0 6rem; overflow: hidden; background: var(--sap-dark); }
.sap-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.sap-hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35; }
.sap-hero__blob--1 { width: 560px; height: 560px; background: var(--sap-primary); top: -220px; right: -160px; opacity: .35; }
.sap-hero__blob--2 { width: 360px; height: 360px; background: var(--sap-accent); bottom: -140px; left: -100px; opacity: .18; }
.sap-hero__grid {
	position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: 26px 26px;
	mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, black 0%, transparent 70%);
	opacity: .6;
}
.sap-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.sap-hero h1.sap-hero__title, .sap-hero__title { margin-bottom: 1.25rem; color: var(--sap-white); }
.sap-hero__title span { color: var(--sap-primary); }
.sap-hero__text { font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; color: rgba(254,254,254,.65); }
.sap-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.sap-hero .sap-eyebrow { background: rgba(254,109,13,.14); }
.sap-hero .sap-btn--ghost { background: transparent; border-color: rgba(254,254,254,.3); color: var(--sap-white); }
.sap-hero .sap-btn--ghost:hover { border-color: var(--sap-primary); color: var(--sap-primary); }

.sap-hero__visual { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: flex-end; }

/* Premium framed photo — layered gradient border + glow behind an
   asymmetric-radius image, with a floating badge and a corner tag. */
.sap-hero__frame { position: relative; width: 100%; max-width: 400px; }

.sap-hero__frame-glow {
	position: absolute; inset: -18% -12%; z-index: 0; filter: blur(60px);
	background:
		radial-gradient(ellipse 60% 50% at 25% 15%, rgba(254,109,13,.4), transparent 70%),
		radial-gradient(ellipse 55% 45% at 85% 90%, rgba(255,139,61,.25), transparent 70%);
}
.sap-hero__frame-border {
	position: absolute; z-index: 0; inset: 22px -22px -22px 22px;
	border: 2px solid rgba(254,109,13,.45);
	border-radius: 28px 28px 28px 130px;
}
.sap-hero__frame-photo {
	position: relative; z-index: 1; aspect-ratio: 4 / 4.6;
	border-radius: 28px 28px 28px 130px; overflow: hidden;
	box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.sap-hero__frame-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sap-hero__frame-photo-placeholder {
	display: block; width: 100%; height: 100%;
	background:
		radial-gradient(circle at 28% 20%, rgba(254,109,13,.4), transparent 55%),
		radial-gradient(circle at 82% 88%, rgba(255,139,61,.28), transparent 55%),
		linear-gradient(155deg, #1d1d23, #0c0c0f);
}

.sap-hero__frame-tag {
	position: absolute; z-index: 2; top: 1.75rem; right: -.75rem;
	display: inline-flex; align-items: center; gap: .45rem;
	background: var(--sap-dark); border: 1px solid rgba(254,254,254,.16); color: var(--sap-white);
	padding: .55rem 1.1rem; border-radius: 999px; font-size: .78rem; font-weight: 600;
	box-shadow: 0 16px 36px rgba(0,0,0,.45);
}
.sap-hero__frame-tag svg { width: 14px; height: 14px; color: var(--sap-primary); flex-shrink: 0; }

.sap-hero__frame-badge {
	position: absolute; z-index: 2; left: -1.5rem; bottom: 2rem;
	display: flex; align-items: center; gap: .85rem;
	background: var(--sap-white); border-radius: var(--sap-radius-lg);
	padding: 1rem 1.35rem; box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.sap-hero__frame-badge-icon {
	width: 44px; height: 44px; border-radius: var(--sap-radius-sm); flex-shrink: 0;
	background: rgba(254,109,13,.1); color: var(--sap-primary);
	display: flex; align-items: center; justify-content: center;
}
.sap-hero__frame-badge-icon svg { width: 22px; height: 22px; }
.sap-hero__frame-badge-title { display: block; font-size: .95rem; font-weight: 800; color: var(--sap-secondary); }
.sap-hero__frame-badge-sub { display: block; font-size: .8rem; color: var(--sap-muted); }

/* --------------------------------------------------------------------
   Trust logos
   -------------------------------------------------------------------- */
.sap-trust { padding: 3rem 0; border-bottom: 1px solid var(--sap-border); overflow: hidden; }
.sap-trust__label { text-align: center; font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--sap-muted); margin-bottom: 1.75rem; }

.sap-trust__marquee {
	position: relative;
	display: flex;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sap-trust__logos {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 3.5rem;
	padding: 0 1.75rem;
	animation: sap-marquee 28s linear infinite;
}
.sap-trust__logo { font-family: var(--sap-font-heading); font-weight: 700; font-size: 1.15rem; white-space: nowrap; color: var(--sap-muted); opacity: .6; transition: opacity .2s ease; }
.sap-trust__logo:hover { opacity: 1; color: var(--sap-text); }

.sap-badges-row { padding: 1.75rem 0; border-bottom: 1px solid var(--sap-border); }
.sap-badges-row__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; }
.sap-trust-badge { display: flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 600; color: var(--sap-muted); }
.sap-trust-badge__icon { width: 22px; height: 22px; color: var(--sap-primary); flex-shrink: 0; }
.sap-trust-badge__icon svg { width: 100%; height: 100%; }
.sap-trust__marquee:hover .sap-trust__logos { animation-play-state: paused; }

/* --------------------------------------------------------------------
   About
   -------------------------------------------------------------------- */
.sap-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.sap-about__points { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin: 1.75rem 0 2.25rem; padding: 0; }
.sap-about__points li { display: flex; align-items: center; gap: .75rem; font-weight: 600; color: var(--sap-text); font-size: .95rem; }
.sap-about__point-icon {
	width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
	background: rgba(254,109,13,.12); color: var(--sap-primary);
	display: flex; align-items: center; justify-content: center;
}
.sap-about__point-icon svg { width: 13px; height: 13px; }

/* Photo frame — simple and subtle: a thin outline offset behind the
   image and one small credential tag. No heavy blocks, no extra marks. */
.sap-about__visual { position: relative; display: flex; }
.sap-about__photo-wrap { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.sap-about__photo-accent {
	position: absolute; inset: 0; z-index: 0;
	border: 1.5px solid var(--sap-border); border-radius: var(--sap-radius-lg);
	transform: translate(14px, 14px);
}
.sap-about__photo {
	position: relative; z-index: 1; aspect-ratio: 4 / 4.1;
	border-radius: var(--sap-radius-lg); overflow: hidden; box-shadow: var(--sap-shadow-md);
}
.sap-about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sap-about__photo-placeholder {
	display: block; width: 100%; height: 100%;
	background:
		radial-gradient(circle at 26% 22%, rgba(254,109,13,.12), transparent 55%),
		radial-gradient(circle at 82% 85%, rgba(255,139,61,.1), transparent 55%),
		var(--sap-bg-tint);
}
.sap-about__photo-badge {
	position: absolute; z-index: 2; left: 1.25rem; bottom: -1.1rem;
	display: inline-flex; align-items: center; gap: .55rem; white-space: nowrap;
	background: var(--sap-white); border: 1px solid var(--sap-border); border-radius: var(--sap-radius-pill);
	padding: .65rem 1.1rem; font-size: .8rem; font-weight: 700; color: var(--sap-secondary);
	box-shadow: var(--sap-shadow-md);
}
.sap-about__photo-badge-icon { width: 16px; height: 16px; color: var(--sap-primary); flex-shrink: 0; }
.sap-about__photo-badge-icon svg { width: 100%; height: 100%; display: block; }

/* --------------------------------------------------------------------
   Why Work With Us (v2): heading + dividered list + photo collage
   -------------------------------------------------------------------- */
.sap-why2__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.sap-why2__title {
	font-size: clamp(2.4rem, 4.2vw, 3.4rem); font-weight: 800; line-height: 1.02;
	letter-spacing: -0.01em; margin-bottom: 2rem;
}
.sap-why2__title span { color: var(--sap-primary); }
.sap-why2__list { display: flex; flex-direction: column; }
.sap-why2__list li { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--sap-border); }
.sap-why2__list li:first-child { padding-top: 0; }
.sap-why2__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sap-primary); margin-top: .5rem; flex-shrink: 0; }
.sap-why2__list h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.sap-why2__list p { font-size: .92rem; margin-bottom: 0; }

.sap-why2__visual { position: relative; }
.sap-why2__photo { position: relative; border-radius: var(--sap-radius-lg); overflow: hidden; box-shadow: var(--sap-shadow-lg); aspect-ratio: 520/460; }
.sap-why2__photo svg { width: 100%; height: 100%; display: block; }
.sap-why2__photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.sap-why2__caption {
	position: absolute; left: 1.25rem; bottom: 1.1rem;
	color: #fff; font-family: var(--sap-font-heading); font-weight: 800;
	font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
	text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.sap-why2__stat {
	position: absolute; top: 1.5rem; right: -1.25rem;
	display: flex; align-items: center; gap: .75rem;
	background: var(--sap-primary); color: #fff;
	border-radius: var(--sap-radius-lg); padding: 1rem 1.4rem;
	box-shadow: 0 20px 44px rgba(254,109,13,.35);
}
.sap-why2__stat svg { width: 26px; height: 26px; flex-shrink: 0; }
.sap-why2__stat-value { font-size: 1.5rem; font-weight: 800; margin-bottom: 0; line-height: 1.1; }
.sap-why2__stat-label { font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; opacity: .9; margin-bottom: 0; }
.sap-why2__dash {
	position: absolute; right: 1rem; bottom: -2rem; width: 58%;
	border-radius: var(--sap-radius-md); overflow: hidden;
	border: 1px solid var(--sap-border); box-shadow: var(--sap-shadow-lg);
}
.sap-why2__dash svg { width: 100%; height: auto; display: block; }

/* --------------------------------------------------------------------
   Cards: services / why-choose / pricing shared base
   -------------------------------------------------------------------- */
.sap-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.sap-service-card, .sap-why-card {
	background: #fff; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-lg);
	padding: 2rem; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sap-service-card:hover, .sap-why-card:hover { transform: translateY(-6px); box-shadow: var(--sap-shadow-md); border-color: transparent; }
.sap-service-card__icon, .sap-why-card__icon {
	width: 56px; height: 56px; border-radius: var(--sap-radius-md);
	background: var(--sap-gradient); color: var(--sap-white);
	display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.sap-service-card__icon svg, .sap-why-card__icon svg { width: 26px; height: 26px; }
.sap-service-card__title { margin-bottom: .6rem; font-size: 1.1rem; }
.sap-service-card__title a:hover { color: var(--sap-primary); }
.sap-service-card__text { font-size: .92rem; margin-bottom: 1.25rem; }
.sap-why-card p { font-size: .92rem; margin-bottom: 0; }

/* Homepage Services section: 3 premium cards — gradient icon badge, a
   short feature checklist, a soft corner glow, and a real button CTA. */
.sap-services { position: relative; background: var(--sap-dark); overflow: hidden; }
.sap-services .sap-section-head .sap-section-title { color: var(--sap-white); }
.sap-services .sap-section-head .sap-section-text { color: rgba(254,254,254,.6); margin-left: auto; margin-right: auto; }

.sap-premium__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 1080px; margin: 0 auto; }

.sap-premium-card {
	position: relative; overflow: hidden; display: flex; flex-direction: column;
	padding: 2.5rem 2.25rem; border-radius: var(--sap-radius-lg);
	background: linear-gradient(160deg, rgba(254,254,254,.055), rgba(254,254,254,.015));
	border: 1px solid rgba(254,254,254,.1);
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.sap-premium-card:hover {
	transform: translateY(-6px);
	border-color: rgba(254,109,13,.35);
	box-shadow: 0 28px 60px -18px rgba(0,0,0,.55);
}
.sap-premium-card__glow {
	position: absolute; top: -30%; right: -20%; z-index: 0;
	width: 200px; height: 200px; border-radius: 50%;
	background: radial-gradient(circle, rgba(254,109,13,.16), transparent 70%);
	opacity: 0; transition: opacity .4s ease;
}
.sap-premium-card:hover .sap-premium-card__glow { opacity: 1; }

.sap-premium-card__icon {
	position: relative; z-index: 1; width: 60px; height: 60px; margin-bottom: 1.75rem;
	border-radius: var(--sap-radius-md); background: var(--sap-gradient); color: var(--sap-white);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 12px 28px -8px rgba(254,109,13,.55);
	transition: transform .3s ease;
}
.sap-premium-card__icon svg { width: 27px; height: 27px; }
.sap-premium-card:hover .sap-premium-card__icon { transform: rotate(-6deg) scale(1.06); }

.sap-premium-card__title { position: relative; z-index: 1; color: var(--sap-white); font-size: 1.3rem; margin-bottom: .75rem; }
.sap-premium-card__text { position: relative; z-index: 1; color: rgba(254,254,254,.55); font-size: .94rem; line-height: 1.65; margin-bottom: 1.5rem; }

.sap-premium-card__features { position: relative; z-index: 1; list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: .7rem; flex-grow: 1; }
.sap-premium-card__features li { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: rgba(254,254,254,.8); font-weight: 500; }
.sap-premium-card__features svg {
	width: 18px; height: 18px; padding: 3px; flex-shrink: 0; box-sizing: border-box;
	border-radius: 50%; background: rgba(254,109,13,.14); color: var(--sap-primary);
}

.sap-premium-card__cta.sap-btn--outline {
	position: relative; z-index: 1;
	border-color: rgba(254,254,254,.18); color: var(--sap-white);
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.sap-premium-card__cta.sap-btn--outline svg { width: 16px; height: 16px; transition: transform .3s ease; }
.sap-premium-card__cta.sap-btn--outline:hover { background: var(--sap-primary); border-color: var(--sap-primary); color: var(--sap-white); }
.sap-premium-card__cta.sap-btn--outline:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------
   Process
   -------------------------------------------------------------------- */
.sap-process__timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem 1.25rem; position: relative; }
.sap-process__step { position: relative; text-align: center; padding: 0 .5rem; }
.sap-process__ring {
	width: 72px; height: 72px; border-radius: 50%;
	background: #fff; border: 1.5px dashed var(--sap-border);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1.1rem; position: relative; z-index: 1;
}
.sap-process__ring svg { width: 26px; height: 26px; color: var(--sap-primary); }
.sap-process__step:not(:last-child)::after {
	content: '';
	position: absolute; top: 36px; left: calc(50% + 36px); width: calc(100% - 72px);
	border-top: 1.5px dashed var(--sap-border);
	z-index: 0;
}
.sap-process__number { display: block; font-family: var(--sap-font-heading); font-size: 1.1rem; font-weight: 800; color: var(--sap-accent); margin-bottom: .5rem; letter-spacing: .04em; }
.sap-process__step h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.sap-process__step p { font-size: .88rem; margin-bottom: 0; }

/* --------------------------------------------------------------------
   Counters
   -------------------------------------------------------------------- */
.sap-counters { background: var(--sap-secondary); padding: 4rem 0; }
.sap-counters__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.sap-counter__value { font-family: var(--sap-font-heading); font-size: 2.75rem; font-weight: 800; color: #fff; margin-bottom: .35rem; }
.sap-counter__label { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 0; }

/* --------------------------------------------------------------------
   Slider / testimonials
   -------------------------------------------------------------------- */
.sap-testimonials { position: relative; overflow: hidden; }
.sap-testimonials__glow {
	position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
	width: 720px; height: 420px; border-radius: 50%;
	background: radial-gradient(ellipse, rgba(254,109,13,.08), transparent 70%);
	pointer-events: none; z-index: 0;
}
.sap-slider { position: relative; z-index: 1; }
.sap-slider__track { display: flex; overflow-x: hidden; scroll-behavior: smooth; }
.sap-slider__slide { flex: 0 0 100%; max-width: 100%; }
.sap-testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: stretch; }
.sap-testimonial-card {
	position: relative; background: #fff; border-radius: var(--sap-radius-lg);
	padding: 2.25rem 2rem 2rem; box-shadow: var(--sap-shadow-md);
	text-align: left; overflow: hidden; display: flex; flex-direction: column;
}
.sap-testimonial-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: var(--sap-gradient);
}
.sap-testimonial-card__quote {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; color: var(--sap-primary); opacity: .18; margin-bottom: .25rem;
}
.sap-testimonial-card__quote svg { width: 100%; height: 100%; }
.sap-testimonial-card__rating { display: flex; gap: .2rem; color: #F59E0B; margin-bottom: 1rem; }
.sap-testimonial-card__rating svg { width: 16px; height: 16px; }
.sap-testimonial-card__text { font-size: .95rem; color: var(--sap-text); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.sap-testimonial-card__divider { width: 36px; height: 2px; background: var(--sap-border); margin: 0 0 1.25rem; }
.sap-testimonial-card__author { display: flex; align-items: center; gap: .85rem; text-align: left; }
.sap-testimonial-card__avatar-ring {
	display: flex; padding: 3px; border-radius: 50%;
	background: var(--sap-gradient); flex-shrink: 0;
}
.sap-testimonial-card__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; }
.sap-testimonial-card__avatar--placeholder { display: flex; align-items: center; justify-content: center; background: var(--sap-secondary); color: var(--sap-white); font-weight: 700; font-size: .9rem; }
.sap-testimonial-card__name { font-weight: 700; font-size: .92rem; color: var(--sap-text); margin-bottom: 0; }
.sap-testimonial-card__company { font-size: .8rem; margin-bottom: 0; }
.sap-slider__controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.sap-slider__prev, .sap-slider__next {
	width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--sap-border); color: var(--sap-text);
	background: #fff; box-shadow: var(--sap-shadow-sm);
	display: flex; align-items: center; justify-content: center; transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.sap-slider__prev svg { transform: rotate(180deg); }
.sap-slider__prev:hover, .sap-slider__next:hover { background: var(--sap-primary); color: var(--sap-white); border-color: var(--sap-primary); transform: translateY(-2px); }
.sap-slider__dots { display: flex; gap: .5rem; }
.sap-slider__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--sap-border); }
.sap-slider__dots button.is-active { background: var(--sap-primary); width: 22px; border-radius: var(--sap-radius-pill); transition: width .2s ease; }

/* --------------------------------------------------------------------
   Case Studies
   -------------------------------------------------------------------- */
.sap-cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.sap-case-card {
	background: #fff; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-lg);
	overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.sap-case-card:hover { transform: translateY(-6px); box-shadow: var(--sap-shadow-lg); }
.sap-case-card__visual { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.sap-case-card__visual svg { width: 100%; height: 100%; display: block; }
.sap-case-card__badge {
	position: absolute; top: 1rem; left: 1rem;
	background: rgba(254,254,254,.95); color: var(--sap-secondary);
	font-size: .72rem; font-weight: 700; letter-spacing: .03em;
	padding: .35rem .8rem; border-radius: var(--sap-radius-pill);
}
.sap-case-card__body { padding: 1.75rem; }
.sap-case-card__client { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--sap-primary); margin-bottom: .5rem; }
.sap-case-card__title { font-size: 1.05rem; margin-bottom: 1.1rem; }
.sap-case-card__stat { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.25rem; }
.sap-case-card__stat-value { font-family: var(--sap-font-heading); font-size: 1.75rem; font-weight: 800; color: var(--sap-primary); }
.sap-case-card__stat-label { font-size: .82rem; color: var(--sap-muted); }

/* --------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------- */
.sap-pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.sap-pricing-card { background: #fff; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-lg); padding: 2.5rem; position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.sap-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--sap-shadow-md); }
.sap-pricing-card--highlight { border-color: var(--sap-primary); box-shadow: var(--sap-shadow-lg); transform: scale(1.04); background: var(--sap-dark); }
.sap-pricing-card--highlight h3, .sap-pricing-card--highlight .sap-pricing-card__price { color: var(--sap-white); }
.sap-pricing-card--highlight .sap-pricing-card__desc, .sap-pricing-card--highlight .sap-pricing-card__features li { color: rgba(254,254,254,.75); }
.sap-pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--sap-gradient); color: var(--sap-white); padding: .4rem 1rem; border-radius: var(--sap-radius-pill); font-size: .75rem; font-weight: 700; }
.sap-pricing-card__name { margin-bottom: .5rem; }
.sap-pricing-card__price { font-size: 2.5rem; font-weight: 800; font-family: var(--sap-font-heading); color: var(--sap-text); margin-bottom: .5rem; }
.sap-pricing-card__price span { font-size: 1rem; font-weight: 500; color: var(--sap-muted); }
.sap-pricing-card__desc { font-size: .9rem; margin-bottom: 1.5rem; }
.sap-pricing-card__features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.sap-pricing-card__features li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--sap-text); }
.sap-pricing-card__features svg { width: 16px; height: 16px; color: var(--sap-primary); flex-shrink: 0; }

/* --------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------- */
.sap-faq { position: relative; }
.sap-faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.sap-faq__intro { position: sticky; top: calc(var(--sap-header-height) + 2rem); }
.sap-faq__title { font-size: clamp(1.8rem, 2.6vw, 2.25rem); margin-bottom: 1rem; }
.sap-faq__intro .sap-section-text { margin-bottom: 1.75rem; }

.sap-accordion { display: flex; flex-direction: column; gap: .9rem; }
.sap-accordion__item {
	background: #fff; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-md);
	padding: 0 1.5rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.sap-accordion__item:has(.sap-accordion__trigger[aria-expanded="true"]) {
	border-color: var(--sap-primary); box-shadow: var(--sap-shadow-md);
}
.sap-accordion__trigger {
	width: 100%; display: flex; align-items: center; gap: 1rem;
	padding: 1.35rem 0; text-align: left; font-family: var(--sap-font-heading);
	font-weight: 700; font-size: 1rem; color: var(--sap-text);
}
.sap-accordion__q {
	flex-shrink: 0; font-family: var(--sap-font-heading); font-weight: 800; font-size: .8rem;
	color: var(--sap-primary); opacity: .5;
}
.sap-accordion__label { flex: 1; }
.sap-accordion__icon {
	width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--sap-border);
	position: relative; flex-shrink: 0; transition: background-color .2s ease, border-color .2s ease;
}
.sap-accordion__icon::before, .sap-accordion__icon::after { content: ''; position: absolute; background: var(--sap-text); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: background-color .2s ease; }
.sap-accordion__icon::before { width: 10px; height: 2px; }
.sap-accordion__icon::after { width: 2px; height: 10px; transition: transform .2s ease; }
.sap-accordion__trigger[aria-expanded="true"] .sap-accordion__icon { background: var(--sap-primary); border-color: var(--sap-primary); }
.sap-accordion__trigger[aria-expanded="true"] .sap-accordion__icon::before,
.sap-accordion__trigger[aria-expanded="true"] .sap-accordion__icon::after { background: var(--sap-white); }
.sap-accordion__trigger[aria-expanded="true"] .sap-accordion__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.sap-accordion__panel { padding: 0 0 1.5rem 2.2rem; }
.sap-accordion__panel p { margin-bottom: 0; font-size: .92rem; }

/* --------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------- */
.sap-cta { position: relative; overflow: hidden; background: var(--sap-gradient); padding: 5.5rem 0; }
.sap-cta__bg { position: absolute; inset: 0; }
.sap-cta__blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); }
.sap-cta__blob--1 { width: 320px; height: 320px; top: -140px; left: -80px; }
.sap-cta__blob--2 { width: 240px; height: 240px; bottom: -100px; right: -60px; }
.sap-cta__inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.sap-cta__inner h2 { color: #fff; margin-bottom: 1rem; }
.sap-cta__inner p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }

/* --------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------- */
.sap-footer { background: var(--sap-dark); color: rgba(255,255,255,.7); }
.sap-footer__cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.sap-footer__cta h3 { color: #fff; margin-bottom: .35rem; }
.sap-footer__cta p { margin-bottom: 0; }
.sap-footer__main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; padding: 4rem 1.5rem; }
.sap-footer__col { min-width: 0; }
.sap-footer__logo .custom-logo { filter: brightness(0) invert(1); }
.sap-footer__desc { margin: 1rem 0; font-size: .9rem; }
.sap-footer__social { display: flex; flex-wrap: wrap; gap: .6rem; }
.sap-footer__social a {
	display: inline-flex; align-items: center; gap: .45rem;
	border: 1px solid rgba(255,255,255,.16); border-radius: var(--sap-radius-pill);
	padding: .5rem .9rem; font-size: .78rem; font-weight: 700; color: #fff;
	transition: border-color .2s ease, background-color .2s ease;
}
.sap-footer__social a:hover { border-color: var(--sap-primary); background: rgba(254,109,13,.12); }
.sap-footer__social svg { width: 13px; height: 13px; color: #fff; flex-shrink: 0; }
.widget-title { position: relative; color: #fff; font-size: 1rem; margin-bottom: 1.5rem; padding-bottom: .85rem; }
.widget-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--sap-primary); border-radius: 2px; }
.sap-footer__links { display: flex; flex-direction: column; gap: .75rem; }
.sap-footer__links a { display: inline-flex; align-items: center; gap: .5rem; }
.sap-footer__links a::before {
	content: ''; width: 6px; height: 6px; flex-shrink: 0;
	border-right: 2px solid var(--sap-primary); border-bottom: 2px solid var(--sap-primary);
	transform: rotate(-45deg); margin-bottom: 1px;
}
.sap-footer__links a:hover { color: #fff; }
.sap-footer__contact { display: flex; flex-direction: column; gap: .6rem; font-size: .9rem; margin-bottom: 1.5rem; }
.sap-newsletter { display: flex; gap: .5rem; }
.sap-newsletter input { flex: 1; min-width: 0; padding: .7rem 1rem; border-radius: var(--sap-radius-pill); border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); color: #fff; }
.sap-newsletter input::placeholder { color: rgba(255,255,255,.4); }
/* "Countries I Serve" — flag + country name, one per row. */
.sap-footer__flags { display: flex; flex-direction: column; gap: .75rem; list-style: none; margin: 0; padding: 0; }
.sap-footer__flags a {
	display: inline-flex; align-items: center; gap: .65rem;
	color: rgba(255,255,255,.65); font-size: .92rem;
	transition: color .2s ease, transform .2s ease;
}
.sap-footer__flags a:hover { color: #fff; transform: translateX(2px); }
.sap-footer__flags .sap-footer__flag-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 20px; font-size: 1.05rem; line-height: 1; flex-shrink: 0;
	border-radius: 3px; overflow: hidden;
}

.sap-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.sap-footer__bottom-inner { display: flex; justify-content: space-between; font-size: .85rem; flex-wrap: wrap; gap: .5rem; }
.sap-footer__bottom-inner p { margin-bottom: 0; }

/* --------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------- */
.sap-breadcrumbs { padding: 1.5rem 0 0; }
.sap-breadcrumbs__inner { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; color: var(--sap-muted); }
.sap-breadcrumbs__inner li { display: flex; align-items: center; gap: .4rem; }
.sap-breadcrumbs__inner li:not(:last-child)::after { content: '/'; margin-left: .4rem; color: var(--sap-border); }
.sap-breadcrumbs__inner a:hover { color: var(--sap-primary); }

/* --------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------- */
.sap-blog-preview__more { text-align: center; margin-top: 3rem; }
.sap-blog-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.sap-blog-layout.has-sidebar { grid-template-columns: 2.2fr 1fr; }
.sap-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.has-sidebar .sap-post-grid { grid-template-columns: repeat(2, 1fr); }
.sap-post-card { background: #fff; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.sap-post-card:hover { transform: translateY(-6px); box-shadow: var(--sap-shadow-md); }
.sap-post-card__thumb { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--sap-bg-tint); }
.sap-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sap-post-card:hover .sap-post-card__thumb img { transform: scale(1.06); }
.sap-post-card__placeholder { display: block; width: 100%; height: 100%; background: var(--sap-gradient); opacity: .15; }
.sap-post-card__body { padding: 1.5rem; }
.sap-post-card__meta { display: flex; align-items: center; gap: .75rem; font-size: .8rem; color: var(--sap-muted); margin-bottom: .75rem; }
.sap-post-card__title { font-size: 1.1rem; margin-bottom: .6rem; }
.sap-post-card__title a:hover { color: var(--sap-primary); }
.sap-post-card__excerpt { font-size: .9rem; margin-bottom: 1rem; }

.sap-article__meta { display: flex; gap: 1rem; font-size: .9rem; color: var(--sap-muted); margin-bottom: 2rem; }
.sap-article__title { margin: .75rem 0 1rem; }
.sap-article__thumb { border-radius: var(--sap-radius-lg); overflow: hidden; margin-bottom: 2rem; }
.sap-content-body { font-size: 1.02rem; }
.sap-content-body h2 { margin-top: 2rem; }
.sap-content-body img { border-radius: var(--sap-radius-md); }
.sap-article__footer { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 2rem 0; border-top: 1px solid var(--sap-border); border-bottom: 1px solid var(--sap-border); margin: 2rem 0; }
.sap-share { display: flex; gap: 1rem; font-size: .9rem; }
.sap-share a:hover { color: var(--sap-primary); }
.sap-post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 3rem; font-weight: 600; }
.sap-related-posts { margin-bottom: 3rem; }
.sap-related-posts h2 { margin-bottom: 1.5rem; }
.sap-no-results { text-align: center; padding: 3rem 0; }

.sap-search-form { display: flex; max-width: 480px; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-pill); overflow: hidden; }
.sap-search-form input { flex: 1; border: none; padding: .8rem 1.25rem; }
.sap-search-form button { padding: 0 1.25rem; color: var(--sap-primary); }
.sap-search-form--large { margin: 1.5rem 0 0; max-width: 560px; }

/* --------------------------------------------------------------------
   404
   -------------------------------------------------------------------- */
.sap-404 { padding: calc(var(--sap-header-height) + 4rem) 0 6rem; }
.sap-404__inner { text-align: center; max-width: 560px; margin: 0 auto; }
.sap-404__title { margin-top: 1rem; }
.sap-404__actions { display: flex; justify-content: center; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }

/* --------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------- */
.sap-contact__info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3.5rem; }
.sap-contact__info-card { background: #fff; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-lg); padding: 1.75rem; }
.sap-contact__info-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.sap-contact__info-card p { font-size: .9rem; margin-bottom: 0; }
.sap-contact__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.sap-form-row { margin-bottom: 1.25rem; }
.sap-form-row label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--sap-secondary); }
.sap-form-row input, .sap-form-row textarea {
	width: 100%; padding: .8rem 1rem; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-sm);
}
.sap-form-row input:focus, .sap-form-row textarea:focus { border-color: var(--sap-primary); }
.sap-form-note { font-size: .8rem; color: var(--sap-muted); margin-top: 1rem; }
.sap-contact__map { border-radius: var(--sap-radius-lg); overflow: hidden; min-height: 360px; background: var(--sap-bg-tint); }
.sap-contact__map-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; padding: 2rem; text-align: center; }

/* --------------------------------------------------------------------
   Service single/archive
   -------------------------------------------------------------------- */
.sap-service-hero {
	position: relative; overflow: hidden; z-index: 0;
	padding: calc(var(--sap-header-height) + 3rem) 0 3rem;
	background: var(--sap-bg-tint); text-align: center;
}
.sap-service-hero .sap-container { position: relative; z-index: 1; }
.sap-service-hero__icon { position: relative; width: 64px; height: 64px; border-radius: var(--sap-radius-md); background: var(--sap-gradient); color: var(--sap-white); display: flex; align-items: center; justify-content: center; margin: 1rem auto 0; }
.sap-service-hero__icon svg { width: 30px; height: 30px; }
.sap-service-hero__title { margin-top: 1rem; }
.sap-service-hero__excerpt { max-width: 640px; margin: 0 auto; }

/* Per-service auto-themed hero: dark variant + large faint icon watermark,
   driven by each service's icon key (see single-service.php $sap_service_themes). */
.sap-service-hero--dark { background: var(--sap-dark); color: var(--sap-white); }
.sap-service-hero--dark .sap-service-hero__excerpt { color: rgba(255,255,255,.65); }
.sap-service-hero--dark .sap-breadcrumbs__inner { color: rgba(255,255,255,.5); }
.sap-service-hero--dark .sap-breadcrumbs__inner li:not(:last-child)::after { color: rgba(255,255,255,.2); }
.sap-service-hero--dark .sap-breadcrumbs__inner a:hover { color: var(--sap-primary); }
.sap-service-hero--dark .sap-breadcrumbs__inner li[aria-current] { color: rgba(255,255,255,.85); }

.sap-service-hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; }
.sap-service-hero__blob--1 { width: 420px; height: 420px; top: -180px; right: -120px; background: var(--sap-primary); opacity: .22; }
.sap-service-hero__blob--2 { width: 280px; height: 280px; bottom: -140px; left: -80px; background: var(--sap-accent); opacity: .14; }

.sap-service-hero__watermark {
	position: absolute; top: 50%; right: -4%; transform: translateY(-50%) rotate(-8deg);
	width: 340px; height: 340px; opacity: .07; z-index: 0; pointer-events: none;
}
.sap-service-hero--dark .sap-service-hero__watermark { opacity: .12; color: var(--sap-white); }
.sap-service-hero__watermark svg { width: 100%; height: 100%; }

/* Location pages: flag badge above the title, plus a small supporting
   points grid under the hero (local-market credibility, no fake stats). */
.sap-loc-hero__flag {
	position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; font-size: 1.75rem; line-height: 1;
	background: rgba(254,109,13,.1); border-radius: 50%; margin-bottom: 1rem;
}
.sap-loc-points { padding-top: 0; }
.sap-loc-points__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 960px; margin: 0 auto; }
.sap-loc-points__item {
	display: flex; align-items: flex-start; gap: .85rem;
	padding: 1.25rem 1.4rem; background: var(--sap-bg-tint); border-radius: var(--sap-radius-lg);
}
.sap-loc-points__item p { margin: 0; font-size: .92rem; color: var(--sap-text); line-height: 1.5; }
.sap-loc-points__icon {
	width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
	background: rgba(254,109,13,.12); color: var(--sap-primary);
	display: flex; align-items: center; justify-content: center;
}
.sap-loc-points__icon svg { width: 14px; height: 14px; }

/* Capability strip beneath the hero — chips + a callout stat, both
   themed from the same per-service config, alternating light/dark
   against whichever hero style is showing above it. */
.sap-service-capstrip { padding: 1.75rem 0; border-bottom: 1px solid var(--sap-border); }
.sap-service-capstrip--tint { background: var(--sap-bg-tint); }
.sap-service-capstrip--dark { background: var(--sap-dark); color: var(--sap-white); border-bottom-color: rgba(255,255,255,.08); }
.sap-service-capstrip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.sap-service-capstrip__chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.sap-service-capstrip__chip {
	padding: .5rem 1.1rem; border-radius: var(--sap-radius-pill);
	border: 1px solid var(--sap-border); font-size: .82rem; font-weight: 600;
}
.sap-service-capstrip--dark .sap-service-capstrip__chip { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.sap-service-capstrip__stat { display: flex; align-items: baseline; gap: .6rem; flex-shrink: 0; }
.sap-service-capstrip__stat-value { font-family: var(--sap-font-heading); font-weight: 800; font-size: 1.9rem; color: var(--sap-primary); }
.sap-service-capstrip__stat-label { font-size: .82rem; color: var(--sap-muted); max-width: 170px; line-height: 1.35; }
.sap-service-capstrip--dark .sap-service-capstrip__stat-label { color: rgba(255,255,255,.6); }
.sap-service-layout { display: grid; grid-template-columns: 2.2fr 1fr; gap: 3rem; }
.sap-service-content__thumb { border-radius: var(--sap-radius-lg); overflow: hidden; margin-bottom: 2rem; }
.sap-service-sidebar__card, .sap-service-sidebar__cta { background: #fff; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; }
.sap-service-sidebar__card ul { display: flex; flex-direction: column; gap: .3rem; }
.sap-service-sidebar__card a { display: block; padding: .6rem .75rem; border-radius: var(--sap-radius-sm); font-weight: 600; font-size: .9rem; }
.sap-service-sidebar__card li.is-current a, .sap-service-sidebar__card a:hover { background: var(--sap-bg-tint); color: var(--sap-primary); }
.sap-service-sidebar__cta { background: var(--sap-secondary); color: #fff; }
.sap-service-sidebar__cta h3 { color: #fff; }
.sap-service-sidebar__cta p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* --------------------------------------------------------------------
   Portfolio page
   -------------------------------------------------------------------- */
.sap-portfolio-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 3rem; }
.sap-portfolio-filters__btn {
	padding: .55rem 1.25rem; border-radius: var(--sap-radius-pill);
	border: 1px solid var(--sap-border); background: var(--sap-white);
	font-weight: 600; font-size: .88rem; color: var(--sap-muted);
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.sap-portfolio-filters__btn:hover { border-color: var(--sap-primary); color: var(--sap-primary); }
.sap-portfolio-filters__btn.is-active { background: var(--sap-primary); border-color: var(--sap-primary); color: var(--sap-white); }

/* --------------------------------------------------------------------
   Services archive — premium editorial list
   -------------------------------------------------------------------- */
.sap-services-stats { background: var(--sap-dark); }
.sap-services-stats__inner {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 0 3.5rem; padding: 1.5rem 0;
}
.sap-services-stats__item {
	display: flex; align-items: baseline; gap: .5rem;
	color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600;
}
.sap-services-stats__item strong {
	font-family: var(--sap-font-heading); font-weight: 800; font-size: 1.15rem; color: var(--sap-white);
}

.sap-services-list { position: relative; border-top: 1px solid var(--sap-border); }
.sap-services-row {
	position: relative; display: grid;
	grid-template-columns: 4.5rem 3.25rem 1fr auto;
	align-items: center; gap: 1.75rem;
	padding: 1.9rem 1.5rem;
	border-bottom: 1px solid var(--sap-border);
	text-decoration: none; color: inherit;
	overflow: hidden;
	transition: padding-left .3s ease;
}
.sap-services-row::before {
	content: ''; position: absolute; inset: 0;
	background: var(--sap-bg-tint); transform: translateX(-100%);
	transition: transform .35s cubic-bezier(.65,0,.35,1); z-index: 0;
}
.sap-services-row:hover { padding-left: 2rem; }
.sap-services-row:hover::before { transform: translateX(0); }

.sap-services-row__num {
	position: relative; z-index: 1;
	font-family: var(--sap-font-heading); font-weight: 800; font-size: 1.4rem;
	color: transparent; -webkit-text-stroke: 1.5px var(--sap-border);
	transition: -webkit-text-stroke-color .3s ease, color .3s ease;
}
.sap-services-row:hover .sap-services-row__num { -webkit-text-stroke-color: var(--sap-primary); }

.sap-services-row__icon {
	position: relative; z-index: 1;
	width: 3.25rem; height: 3.25rem; border-radius: var(--sap-radius-md);
	background: var(--sap-bg-tint); color: var(--sap-primary);
	display: flex; align-items: center; justify-content: center;
	transition: background .3s ease, color .3s ease, transform .3s ease;
}
.sap-services-row:hover .sap-services-row__icon { background: var(--sap-gradient); color: var(--sap-white); transform: rotate(-6deg) scale(1.05); }
.sap-services-row__icon svg { width: 26px; height: 26px; }

.sap-services-row__body { position: relative; z-index: 1; min-width: 0; }
.sap-services-row__title {
	font-size: 1.2rem; margin-bottom: .35rem;
	transition: color .3s ease;
}
.sap-services-row:hover .sap-services-row__title { color: var(--sap-primary); }
.sap-services-row__text {
	color: var(--sap-muted); font-size: .92rem; margin-bottom: 0;
	overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
	-webkit-line-clamp: 1; -webkit-box-orient: vertical;
}

.sap-services-row__arrow {
	position: relative; z-index: 1; flex-shrink: 0;
	width: 3rem; height: 3rem; border-radius: 50%;
	border: 1px solid var(--sap-border);
	display: flex; align-items: center; justify-content: center; color: var(--sap-text);
	transition: background .3s ease, border-color .3s ease, transform .3s ease, color .3s ease;
}
.sap-services-row__arrow svg { width: 18px; height: 18px; transition: transform .3s ease; }
.sap-services-row:hover .sap-services-row__arrow { background: var(--sap-primary); border-color: var(--sap-primary); color: var(--sap-white); }
.sap-services-row:hover .sap-services-row__arrow svg { transform: rotate(-45deg) translateX(1px); }

/* --------------------------------------------------------------------
   About page: Mission & Vision
   -------------------------------------------------------------------- */
.sap-mission { background: var(--sap-bg-tint); }
.sap-mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.sap-mission__card {
	border-radius: var(--sap-radius-lg); padding: 2.5rem;
	box-shadow: var(--sap-shadow-md);
}
.sap-mission__card--dark { background: var(--sap-secondary); color: var(--sap-white); }
.sap-mission__card--light { background: var(--sap-white); }
.sap-mission__icon {
	width: 52px; height: 52px; border-radius: var(--sap-radius-md);
	display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.sap-mission__card--dark .sap-mission__icon { background: rgba(254,109,13,.18); color: var(--sap-primary); }
.sap-mission__card--light .sap-mission__icon { background: rgba(254,109,13,.1); color: var(--sap-primary); }
.sap-mission__icon svg { width: 26px; height: 26px; }
.sap-mission__card h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.sap-mission__card--dark h3 { color: var(--sap-white); }
.sap-mission__card--dark p { color: rgba(254,254,254,.7); }
.sap-mission__card--light p { color: var(--sap-muted); }

/* --------------------------------------------------------------------
   About page: Core Values
   -------------------------------------------------------------------- */
.sap-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.sap-value-card {
	position: relative; overflow: hidden;
	background: var(--sap-white); border: 1px solid var(--sap-border);
	border-radius: var(--sap-radius-lg); padding: 2rem 1.75rem;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sap-value-card:hover { transform: translateY(-6px); box-shadow: var(--sap-shadow-lg); border-color: transparent; }
.sap-value-card__num {
	position: absolute; top: -.6rem; right: -.4rem;
	font-family: var(--sap-font-heading, inherit);
	font-size: 5.5rem; font-weight: 800; line-height: 1;
	color: var(--sap-primary); opacity: .07;
	pointer-events: none; user-select: none;
}
.sap-value-card__icon {
	position: relative; width: 50px; height: 50px; border-radius: 14px;
	background: var(--sap-gradient); color: var(--sap-white);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 1.25rem; transform: rotate(-6deg);
	transition: transform .25s ease;
}
.sap-value-card:hover .sap-value-card__icon { transform: rotate(0deg); }
.sap-value-card__icon svg { width: 24px; height: 24px; }
.sap-value-card h3 { position: relative; font-size: 1.05rem; margin-bottom: .5rem; }
.sap-value-card p { position: relative; color: var(--sap-muted); font-size: .88rem; margin-bottom: 0; }
.sap-value-card__bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--sap-gradient); transition: width .3s ease; }
.sap-value-card:hover .sap-value-card__bar { width: 100%; }

/* --------------------------------------------------------------------
   Page content
   -------------------------------------------------------------------- */
.sap-page-content { max-width: 860px; margin: 0 auto; }
.sap-page-article__thumb { border-radius: var(--sap-radius-lg); overflow: hidden; margin: 1.5rem 0; }

/* --------------------------------------------------------------------
   Comments
   -------------------------------------------------------------------- */
.comment-list { list-style: none; padding: 0; }
.comment-form input, .comment-form textarea { width: 100%; padding: .8rem 1rem; border: 1px solid var(--sap-border); border-radius: var(--sap-radius-sm); margin-bottom: 1rem; }
.comment-reply-title, #reply-title { margin-top: 2.5rem; }

/* --------------------------------------------------------------------
   Floating CTA / WhatsApp / Back-to-top
   -------------------------------------------------------------------- */
.sap-float-stack {
	position: fixed; left: 1.5rem; bottom: 1.5rem; z-index: 900;
	display: flex; flex-direction: column; align-items: flex-start; gap: .85rem;
}
.sap-float-cta {
	display: flex; align-items: center; gap: .6rem;
	background: var(--sap-gradient); color: #fff;
	padding: 1rem; border-radius: var(--sap-radius-pill);
	box-shadow: 0 12px 32px rgba(254,109,13,.4);
	transition: box-shadow .2s ease, transform .2s ease;
}
.sap-float-cta svg { width: 22px; height: 22px; flex-shrink: 0; }
.sap-float-cta span {
	max-width: 0; overflow: hidden; white-space: nowrap;
	font-size: .85rem; font-weight: 700;
	transition: max-width .3s ease;
}
.sap-float-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(254,109,13,.5); }
.sap-float-cta:hover span, .sap-float-cta:focus-visible span { max-width: 160px; }

.sap-float-btn {
	display: flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
	box-shadow: var(--sap-shadow-lg);
	transition: transform .2s ease, box-shadow .2s ease;
}
.sap-float-btn svg { width: 26px; height: 26px; }
.sap-float-btn:hover { transform: translateY(-2px) scale(1.05); }
.sap-float-btn--whatsapp { background: #25D366; color: #fff; }

.sap-back-to-top {
	position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 900;
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--sap-secondary); color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--sap-shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .2s ease;
}
.sap-back-to-top svg { width: 20px; height: 20px; }
.sap-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.sap-back-to-top:hover { background: var(--sap-primary); }
