/* ===========================================================================
   Anureza Power — style.css
   Premium solar / EPC theme. Custom CSS only (no framework).
   ---------------------------------------------------------------------------
   Contents
     01  Design tokens (CSS variables)
     02  Reset & base
     03  Typography
     04  Layout utilities (.container, .section, .section-head)
     05  Buttons
     06  Header / primary nav
     07  Mobile menu
     08  Hero (incl. glass cards; WebP bg, responsive desktop+mobile via image-set()/media query)
     09  Clients marquee ("Trusted by") — pure-CSS, below hero
     09b Who we are / Impact (stats + India map), Solar bridge (sun orb), orange Vision band
     10  Why we're better
     11  Vision band
     12  Services slider (Swiper)
     13  How We Work (process band — navy→blue gradient, 5 cards)
     14  Our Work (vertical reels, Swiper)
     15  FAQ (accordion + JSON-LD)
     16  CTA (final, above footer)
     19  Footer
     20  Scroll-reveal & motion
     21  Responsive breakpoints (1200 / 992 / 768 / 576)
=========================================================================== */

/* ---------------------------------------------------------------- 01 TOKENS */
:root {
  /* Brand palette */
  --navy: #0b2a5b;
  --navy-2: #0a2249; /* deeper navy for gradients */
  --blue: #3ba2ff;
  --gold: #f5a623;
  --gold-2: #e8951a; /* gold pressed state */
  --green: #2fb36a;

  /* Pastel accents — used for icon chips, alt-section washes and card variety
     on inner pages (about/services/solar/products/contact/training/career) */
  --pastel-blue: #e8f2ff;
  --pastel-blue-ink: #2a6bb3;
  --pastel-peach: #fff1e2;
  --pastel-peach-ink: #c9791a;
  --pastel-green: #e7f9ee;
  --pastel-green-ink: #1f8f52;
  --pastel-lavender: #f1edff;
  --pastel-lavender-ink: #6c4fd6;
  --pastel-pink: #ffeef2;
  --pastel-pink-ink: #d6497a;
  --pastel-mint: #e6f9f6;
  --pastel-mint-ink: #159c8a;

  /* Neutrals */
  --bg: #f7f8fa;
  --ink: #0e1726;
  --white: #ffffff;
  --muted: #5a6678; /* secondary text */
  --line: #e6e9ef; /* hairline borders */

  /* Type */
  --font-display: "Lato", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-eyebrow: "DM Sans", sans-serif;
  --font-serif: "Fraunces", Georgia, serif; /* luxe serif — About heading */
  --font-poppins: "Poppins", sans-serif; /* About body/stats */

  /* Radii & shadows */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 10px rgba(14, 23, 38, 0.06);
  --shadow: 0 16px 40px rgba(14, 23, 38, 0.1);
  --shadow-lg: 0 30px 70px rgba(14, 23, 38, 0.16);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-blue: linear-gradient(100deg, #0b2a5b 0%, #1466b6 100%);

  /* ---- HEADER (single-bar, white) ---- */
  --header-h: 80px;
  --topbar-h: 0px;
  --logo-h: 65px;
  --logo-h-scrolled: 42px;
  --header-bg: #ffffff;
  --header-bg-2: #ffffff;
  --topbar-bg: #0b1a2e;
  --topbar-fg: rgba(255, 255, 255, 0.6);
  --header-ink: #1a1a1a;
  --header-line: rgba(0, 0, 0, 0.06);
  --header-accent: #f5a623;

  /* CTA (kept for other components that may use them) */
  --cta-grad-from: #f5a623;
  --cta-grad-to: #e08200;
  --cta-grad-from-hover: #ffb43d;
  --cta-grad-to-hover: #f0911a;
  --cta-fg: #1f1402;

  /* Soft / expo easings for the "luxury" motion feel */
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.25s var(--ease-soft);
  --t: 0.45s var(--ease-soft);
  --t-slow: 0.8s var(--ease-expo);
}

/* ----------------------------------------------------------- 02 RESET/BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; /* fallback when Lenis is off */
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden !important;
}

/* Lenis sets html.lenis; keep native smooth scroll off while it runs */
html.lenis {
  scroll-behavior: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}

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

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transform: translateY(-150%);
  transition: transform var(--t-fast);
}
.skip-link:focus {
  transform: translateY(0);
}

/* --------------------------------------------------------- 03 TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}
/* Display headings: capitalized (not all-caps) with open tracking (Montserrat) */
h1,
h2,
h3 {
  text-transform: capitalize;
  letter-spacing: 0.03em;
  line-height: 1.08;
}
/* h4–h6 stay Montserrat but sentence case (all-caps is too heavy small) */
h4,
h5,
h6 {
  letter-spacing: 0.01em;
}

p {
  text-wrap: pretty;
}

/* --------------------------------------------------- 04 LAYOUT UTILITIES */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 140px);
}

/* Offset in-page anchor jumps so targets clear the sticky header */
:where(section[id], [id].section, #enquiry, #hero) {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-head__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(270deg, #ffb075, #bf59d1 33%, #3167ca 67%, #0941a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-head__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  display: inline-block;
}
.section-head--center .section-head__eyebrow {
  justify-content: center;
}

/* Standard section H2: Lato 600, Title Case, tight tracking. */
.section-head__title {
  font-weight: 600;
  font-size: clamp(1.45rem, 3.2vw, 2.55rem);
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 24px 0;
}
/* Two-tone heading qualifier (second clause), muted. */
.heading-muted {
  color: rgba(14, 23, 38, 0.35);
}
/* Supporting intro line under a section heading. */
.section-head__intro {
  font-family: var(--font-body); /* Inter */
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ------------------------------------------------------------ 05 BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #000000;
  color: #fff;
  font-family: "Montserrat", "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #000000;
  transition: 0.3s;
}
.btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: scale(1.03);
}
.btn:active {
  transform: translateY(-1px);
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.9rem;
}
.btn--lg {
  padding: 10px 16px;
  font-size: 0.8rem;
}

.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: #1f1402;
}
.btn--gold:hover {
  background: var(--gold-2);
}

.btn--navy {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1.5px #fff;
}

/* ------------------------------------------------------- 06 HEADER / NAV
   Two tiers: dark solid topbar + frosted-glass nav row.
   On scroll-down: topbar slides up first; nav hides after 80px.
   ------------------------------------------------------------------ */

.ah-header--compact {
  transform: none;
}

/* ── TIER 1: topbar removed — hidden if ever present ── */
.ah-topbar {
  display: none !important;
}

.ah-topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ah-topbar__contact {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.ah-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none;
  padding: 0 12px 0 0;
  transition: color 0.3s ease;
}

.ah-topbar__item svg {
  width: 13px;
  height: 13px;
  flex: none;
  color: rgba(255, 255, 255, 0.4);
}

.ah-topbar__item:hover {
  color: rgba(255, 255, 255, 0.85);
}

.ah-topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  flex: none;
  margin: 0 14px 0 0;
}

.ah-topbar__social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ah-topbar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ah-topbar__social svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.ah-topbar__social a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── TIER 2: frosted-glass main nav — independently fixed ── */
.ah-header {
  display: block; /* structural wrapper only — positioning on children */
}

.ah-nav {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: auto !important;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .ah-topbar {
    display: none;
  }
}

/* ── Header: static, scrolls with page ── */
#ahHeader,
.ah-header,
.ah-nav {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: auto !important;
}

/* ── Kill every possible header→hero divider line ── */
#ahHeader,
.ah-header,
.ah-nav,
.ah-topbar,
header,
header nav,
nav {
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ── Home page only: transparent nav overlaying the full-bleed video hero.
   #ahHeader is taken fully out of flow (absolute, pinned to the top) so
   <main>/.mh-hero starts at y:0 underneath it — no negative-margin/
   margin-collapse fragility. Every other page is unaffected. ── */
body.has-hero #ahHeader {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 50 !important;
}
body.has-hero .ah-nav {
  background: transparent !important;
}
body.has-hero .ah-nav-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
body.has-hero .ah-menu__link {
  color: #fff;
}
body.has-hero .ah-menu__link:hover {
  color: #000;
}
body.has-hero .ah-menu__link.is-active {
  color: #000;
}
body.has-hero .ah-menu__chev {
  color: #fff;
}
body.has-hero .ah-burger span {
  background: #fff;
}

#ahHeader::before,
#ahHeader::after,
.ah-nav::before,
.ah-nav::after,
.ah-topbar::before,
.ah-topbar::after,
header::before,
header::after {
  display: none !important;
}

.av-hero,
#solarHero,
.mh-hero,
#mhHero {
  border-top: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  box-shadow: none !important;
}

/* Side CTA removed */
.ah-side-cta {
  display: none !important;
}

/* ── Split logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__icon {
  height: 136px;
  width: auto;
  flex: none;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo__tagline {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 7.5px;
  font-weight: 500;
  color: #999999;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1;
}

@media (max-width: 768px) {
  .logo__icon {
    height: 96px;
  }
  .logo__name {
    font-size: 16px;
  }
  .logo__tagline {
    font-size: 6.5px;
    letter-spacing: 2px;
  }
}

/* .ah-nav positioning now handled in the TIER 2 block above */

.ah-nav__inner {
  /* height: 80px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
}

/* Right cluster: pill nav + CTA + burger */
.ah-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Off-white pill container wrapping the nav links */
.ah-nav-pill {
  background: #f3f3f3;
  border-radius: 50px;
  padding: 6px 6px;
  display: flex;
  align-items: center;
}

/* "Let's Connect" black pill CTA */
.ah-cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #000000;
  color: #ffffff;
  font-family: "Montserrat", "Plus Jakarta Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    box-shadow 0.22s,
    transform 0.22s;
  border: 1px solid #000000;
  transition: 0.3s;
}
.ah-cta-pill:hover {
  /* box-shadow: 0 4px 18px rgba(0,0,0,0.28); */
  background-color: white;
  transform: scale(1.03);
  color: #000000;
}

/* Logo */
.ah-brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.ah-brand img {
  height: 100px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .ah-brand img {
    height: 96px;
  }
}

/* Nav links */
.ah-menu {
  align-self: stretch;
}

.ah-menu__list {
  display: flex;
  align-items: center;
  height: auto;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ah-menu__item {
  position: relative;
  display: flex;
  align-items: center;
}

.ah-menu__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #333333;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}

/* No underline indicator — pill border is the active style */
.ah-menu__link::after {
  display: none;
}

/* Dropdown-only nav items (no destination page — e.g. "Services") — the
   label itself isn't a link, just the dropdown trigger. */
.ah-menu__link--nolink,
.ah-drawer__link--nolink {
  cursor: default;
}

.ah-menu__link:hover {
  color: #1a1a2e;
}

/* Active link — amber pill */
.ah-menu__link.is-active {
  color: #000000;
  border-color: rgb(104 97 97 / 22%);
  background: rgb(255 255 255 / 94%);
  padding: 8px 22px;
}

/* Chevron next to CONTACT */
.ah-menu__item--has-sub > .ah-menu__link {
  gap: 4px;
}

.ah-menu__chev {
  width: 10px;
  height: 10px;
  flex: none;
  stroke-width: 2.5;
  color: #666666;
  transition: transform 0.25s ease;
}

.ah-menu__item--has-sub:hover .ah-menu__chev,
.ah-menu__item--has-sub:focus-within .ah-menu__chev {
  transform: rotate(180deg);
}

/* Dropdown panel */
.ah-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 130;
  min-width: 200px;
  padding: 6px;
  list-style: none;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.ah-menu__item--has-sub:hover > .ah-dropdown,
.ah-menu__item--has-sub:focus-within > .ah-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ah-dropdown__link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.3px;
  color: #444444;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.ah-dropdown__link:hover,
.ah-dropdown__link:focus-visible,
.ah-dropdown__link.is-active {
  background: rgba(245, 166, 35, 0.08);
  color: #f5a623;
}

/* CTA — outlined amber pill */
.ah-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 50px;
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5a623;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.ah-cta:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: #f5a623;
}

.ah-cta:active {
  background: rgba(245, 166, 35, 0.2);
}

/* Hamburger — three thin white lines */
.ah-burger {
  display: none;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.ah-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #1a1a2e;
  border-radius: 1px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.ah-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.ah-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.ah-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Chameleon header — white mode over dark sections ──────────────────── */
.ah-header--on-dark .logo__name {
  color: #ffffff;
}
.ah-header--on-dark .logo__tagline {
  color: rgba(255, 255, 255, 0.6);
}
.ah-header--on-dark .ah-menu__link {
  color: rgba(255, 255, 255, 0.88);
}
.ah-header--on-dark .ah-menu__link:hover {
  color: #ffffff;
}
.ah-header--on-dark .ah-menu__link.is-active {
  color: #f5a623;
  border-color: rgba(245, 166, 35, 0.55);
  background: rgba(245, 166, 35, 0.12);
}
.ah-header--on-dark .ah-menu__chev {
  color: rgba(255, 255, 255, 0.7);
}
.ah-header--on-dark .ah-burger span {
  background: #ffffff;
}

/* Transition so the switch isn't jarring */
.ah-nav,
.logo__name,
.logo__tagline,
.ah-menu__link,
.ah-burger span {
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    top 0.3s ease;
}

/* ------------------------------------------------------- 07 MOBILE OVERLAY
   Full-screen white overlay — fade in/out.
   close button (#ahClose) and hamburger (#ahBurger) both toggle .is-open.
   ------------------------------------------------------------------ */

.ah-drawer[hidden] {
  display: none !important;
}

.ah-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #0b1a2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 32px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
/* Force the <nav> to span the full drawer width — otherwise, as a
   shrink-wrapped flex item under align-items:center above, it (and every
   left-aligned block inside it: CTA button, contact links) sizes to its
   widest content and gets centered as a unit instead of spanning edge to
   edge like .ah-drawer__list does. */
.ah-drawer > nav {
  width: 100%;
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.ah-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Close × button — top-right */
.ah-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  color: #f5a623;
  padding: 0;
}

.ah-drawer__close svg {
  width: 22px;
  height: 22px;
}

/* Nav links — left-aligned */
.ah-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  text-align: left;
}

.ah-drawer__item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  /* Column, not row: items with a submenu contain TWO stacked children
     (.ah-drawer__row then .ah-drawer__sublist) — without flex-direction:
     column here, flex's default row axis lays them out side-by-side,
     making the expanded submenu render to the right of / overlapping the
     row and subsequent nav items instead of stacking underneath it. */
  flex-direction: column;
  align-items: stretch;
}

.ah-drawer__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ah-drawer__link {
  display: block;
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 14px 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  text-align: left;
}

.ah-drawer__link:hover {
  color: #ffffff;
}

.ah-drawer__link.is-active {
  color: #f5a623;
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.08);
}

/* Contact/Services accordion row — label left, chevron right */
.ah-drawer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.ah-drawer__row .ah-drawer__link {
  flex: 1;
  border-bottom: 0;
  padding: 14px 8px;
  text-align: left;
}
/* Dropdown trigger rows (Services/Products/Contact) inherit .is-active when
   one of their children is the current page — that should read as "you're
   in this section", not a fully boxed/bordered button like an exact page
   match gets. Keep just the orange text, drop the box treatment. */
.ah-drawer__row .ah-drawer__link.is-active {
  border-color: transparent;
  background: none;
}

.ah-drawer__sub-toggle {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 44px;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s ease;
}

.ah-drawer__sub-toggle[aria-expanded="true"] {
  color: #f5a623;
}

.ah-drawer__chev {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.ah-drawer__sub-toggle[aria-expanded="true"] .ah-drawer__chev {
  transform: rotate(180deg);
}

.ah-drawer__sublist {
  width: 100%; /* flex child under align-items:center would otherwise shrink to content width */
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    max-height 0.3s ease,
    visibility 0.3s ease;
}

.ah-drawer__sublist.is-open {
  max-height: 600px;
  visibility: visible;
}

.ah-drawer__sublink {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  color: #666666;
  text-decoration: none;
  padding: 12px 8px 12px 20px; /* indent — shows hierarchy under its parent item */
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: color 0.2s ease;
  text-align: left;
}

.ah-drawer__sublink:hover,
.ah-drawer__sublink.is-active {
  color: #f5a623;
}

/* Full-width CTA at bottom of overlay */
.ah-drawer__cta {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-top: 32px;
  text-align: center;
  padding: 14px 28px;
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 50px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5a623;
  text-decoration: none;
  background: transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.ah-drawer__cta:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: #f5a623;
}

.ah-drawer__contact {
  margin-top: auto; /* pins this (+ social icons right after it) to the bottom of the drawer */
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.ah-drawer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 14px;
  font-family: "Inter", system-ui, sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ah-drawer__contact svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.ah-drawer__contact a:hover {
  color: #f5a623;
}

.ah-drawer__social {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  list-style: none;
}

.ah-drawer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ah-drawer__social svg {
  width: 18px;
  height: 18px;
}

.ah-drawer__social a:hover {
  color: #f5a623;
}

/* Backdrop — hidden (full-screen overlay replaces it) */
.ah-drawer__backdrop {
  display: none;
}

/* ── HEADER RESPONSIVE ── */

@media (max-width: 1199px) and (min-width: 1024px) {
  .ah-menu__list {
    gap: 2px;
  }
  .ah-menu__link {
    font-size: 13px;
  }
}

@media (max-width: 1023px) {
  .ah-menu,
  .ah-cta:not(.ah-drawer__cta) {
    display: none;
  }
  .ah-burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 60px;
  }
  .ah-nav__inner {
    /* height: 60px; */
  }
}

/* --------------------------------------------------------------- 08 HERO
   Full-width, edge-to-edge 3-slide BANNER slider (Swiper). Text + button are
   baked into the images; the whole slide is a link. The section is a normal
   block at width:100% (NOT 100vw) — so it spans the viewport edge-to-edge
   WITHOUT the scrollbar-width overflow that 100vw introduces. html/body also
   carry overflow-x:hidden as a belt-and-suspenders guard. */
.hero-banner {
  width: 100%;
  /* Clear the fixed two-tier header (topbar + nav) so the baked-in headline is
     never hidden behind it. Uses the header vars, so it adapts per breakpoint. */
  margin-top: calc(var(--topbar-h) + var(--header-h));
  /* No fixed height: the banner takes the slide image's NATURAL height, so the
     1920×650 art is never zoomed or cropped (e.g. ~463px tall on a 1366px screen).
     max-height caps it on ultrawide (>1920px) screens only. */
  max-height: 650px;
  overflow: hidden;
  background: #0b2a5b; /* navy placeholder while the banner loads */
  /* gentle load reveal — fade + slight scale-up (killed under reduced-motion) */
  animation: heroBannerIn 0.6s var(--ease-soft) both;
}
@keyframes heroBannerIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-banner__swiper,
.hero-banner .swiper-wrapper,
.hero-banner .swiper-slide {
  width: 100%;
  height: auto; /* size to the slide image's natural height (no fixed box) */
}
/* SLIDE effect (horizontal push). Premium easing — an ease-in-out cubic-bezier
   that accelerates then settles, so the glide reads as confident, not snappy or
   drifting. !important overrides Swiper's inline transition-timing-function. */
.hero-banner .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1) !important;
}
.hero-banner__link {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.hero-banner__img {
  display: block;
  width: 100%;
  height: auto; /* natural aspect ratio — nothing cropped */
}
/* Desktop hover affordance — subtle zoom + brightness on the slide link. */
@media (hover: hover) {
  .hero-banner__link {
    transition:
      transform 0.6s var(--ease-soft),
      filter 0.6s var(--ease-soft);
  }
  .hero-banner__link:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
  }
}

/* Pagination dots — bottom-centre, active accented (gold pill). */
.hero-banner__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(12px, 2vw, 22px);
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-banner .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition:
    width var(--t-fast),
    background var(--t-fast);
}
.hero-banner .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 5px;
  background: var(--gold);
}

/* Prev / next arrows — desktop only, fade in on hover. */
.hero-banner__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(14, 23, 38, 0.2);
  cursor: pointer;
  opacity: 0;
  transition:
    opacity var(--t-fast),
    background var(--t-fast);
}
.hero-banner__nav svg {
  width: 22px;
  height: 22px;
}
.hero-banner__nav--prev {
  left: clamp(14px, 2vw, 28px);
}
.hero-banner__nav--next {
  right: clamp(14px, 2vw, 28px);
}
.hero-banner:hover .hero-banner__nav {
  opacity: 1;
}
.hero-banner__nav:hover {
  background: #fff;
}
.hero-banner__nav.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none;
}
/* Arrows are desktop-only — fully removed (not just transparent) on touch /
   tablet so an invisible button can never intercept a tap. */
@media (hover: none), (max-width: 1023px) {
  .hero-banner__nav {
    display: none !important;
  }
}

/* ----------------------------------------- 09 CLIENTS MARQUEE ("Trusted by")
   Pure-CSS infinite right-to-left scroll. The logo set is duplicated in markup,
   so translateX(-50%) lands exactly on the start of the 2nd set = seamless.
   Each item uses margin-right (not flex gap) so the seam gap matches the rest. */
.client-strip {
  background: #fff;
  padding-block: clamp(40px, 6vw, 64px);
  overflow: hidden; /* never break the viewport horizontally */
}
.client-strip__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.client-strip__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(270deg, #ffb075, #bf59d1 33%, #3167ca 67%, #0941a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.client-strip__sub {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Marquee viewport — solid gradient overlays fade logos into section bg */
.client-strip__marquee {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 48px;
}

.client-strip__marquee::before,
.client-strip__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.client-strip__marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.client-strip__marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

@media (max-width: 768px) {
  .client-strip__marquee::before,
  .client-strip__marquee::after {
    width: 60px;
  }
}
.client-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientScroll 50s linear infinite;
  will-change: transform; /* persistent is correct for a constantly-animating element */
}
.client-strip__marquee:hover .client-strip__track {
  animation-play-state: paused;
}
.client-strip__item {
  flex: 0 0 auto;
  margin-right: 60px;
}
.client-strip__item img {
  height: 66px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) sepia(0.25) brightness(1.08) opacity(0.55);
  transition: filter 0.3s ease;
}
.client-strip__item img:hover {
  filter: grayscale(0) sepia(0) brightness(1) opacity(1);
}

/* Right → left: shift by one full set width (-50% of the duplicated track) */
@keyframes clientScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .client-strip__item {
    margin-right: 48px;
  }
  .client-strip__item img {
    height: 40px;
  }
}
@media (max-width: 576px) {
  .client-strip__item {
    margin-right: 32px;
  }
  .client-strip__item img {
    height: 32px;
  }
  .client-strip__track {
    animation-duration: 35s;
  } /* a touch faster for visibility */
}
@media (prefers-reduced-motion: reduce) {
  .client-strip__track {
    animation: none;
  } /* show the first set statically */
}

/* ── TRUSTED BY — static logo row (Space Pro style) ── */
.trusted-by {
  background: #fff;
  padding: 68px 0 60px;
}

.trusted-by__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Heading with side rules — flex: line | text | line */
.trusted-by__head {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.trusted-by__line {
  flex: 1;
  display: block;
  height: 0;
  border-top: 1px solid #e0e0e0;
}

.trusted-by__label {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
  padding: 0 24px;
  flex-shrink: 0;
  margin: 0;
}

/* Marquee viewport — clips the scrolling track */
.trusted-by__marquee {
  overflow: hidden;
  width: 100%;
}

/* Scrolling track — two identical sets end-to-end, translateX(-50%) = one full set */
@keyframes tb-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.trusted-by__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: max-content;
  animation: tb-scroll 28s linear infinite;
}

.trusted-by__track:hover {
  animation-play-state: paused;
}

.trusted-by__item {
  flex: 0 0 auto;
  margin-right: 60px;
}

.trusted-by__item img {
  height: 52px;
  width: auto;
  display: block;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.28s ease;
}

.trusted-by__item img:hover {
  filter: grayscale(0) opacity(1);
}

/* Bottom rule */
.trusted-by__rule {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 40px 0 0;
}

@media (max-width: 991px) {
  .trusted-by {
    padding: 48px 0 40px;
  }
  .trusted-by__inner {
    padding: 0 24px;
  }
  .trusted-by__item {
    margin-right: 44px;
  }
  .trusted-by__item img {
    height: 38px;
  }
}

@media (max-width: 640px) {
  .trusted-by__label {
    font-size: 0.82rem;
    white-space: normal;
    text-align: center;
    padding: 0 16px;
  }
  .trusted-by__item {
    margin-right: 32px;
  }
  .trusted-by__item img {
    height: 32px;
  }
  .trusted-by__track {
    animation-duration: 20s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-by__track {
    animation: none;
  }
}

/* ------------------------------------------------- 08b ABOUT (luxury)
   Two columns on desktop (image left / text right), white bg. Fraunces serif
   heading + Poppins body. Stacks image-first on mobile (≤768). */
.about {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  padding-bottom: 0px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1200px;
}
/* Allow the columns to shrink below their content's intrinsic width. Without
   this, the fixed-width .about__cards fan (3 non-shrinking 180px cards, clipped
   by its own overflow:hidden) forces the whole grid wider than a phone screen
   and clips the image/heading/text/button on the right. */
.about__grid > * {
  min-width: 0;
}
/* LEFT — image */
.about__media {
  align-self: stretch;
}
.about__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(14, 23, 38, 0.1); /* soft, tasteful depth only */
}
/* RIGHT — text */
.about__eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  background: linear-gradient(
    270deg,
    #ffb075,
    #bf59d1 33%,
    #3167ca 67%,
    #0941a8
  );
  margin-bottom: 10px;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.about__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #040404;
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.about__title em {
  font-style: normal;
  font-weight: 600;
  color: #000000;
}

.about__lead {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #5a5a5a;
  max-width: 50ch;
  margin-top: 18px;
}
.about__actions {
  margin-top: 15px;
}

/* ── Stat cards — static CSS fan layout ── */

.about__cards {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(10px, 2vw, 20px);
  justify-content: center;
  padding: 18px 12px;
  margin-top: 26px;
  overflow: visible;
}

.about__card {
  width: clamp(120px, 30%, 180px);
  min-width: 0;
  min-height: 200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(14px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  flex-shrink: 1;
}

.about__card--1 {
  transform: rotate(-8deg);
}
.about__card--2 {
  transform: rotate(-2deg) translateY(-15px);
}
.about__card--3 {
  transform: rotate(5deg);
}

/* Green checkmark icon */
.about__card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2fb36a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__card-icon svg {
  width: 18px;
  height: 18px;
}

.about__card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about__card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy, #0e1726);
  line-height: 1.3;
}
.about__card-sub {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #777;
  line-height: 1.45;
}

/* About — mobile */
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about__img {
    min-height: 0;
    height: clamp(280px, 60vw, 320px);
    max-height: none;
    border-radius: 12px;
  }
  .about__lead {
    font-size: 0.95rem;
    max-width: none;
  }
  .about__actions {
    text-align: center;
  }
  .about__actions .btn {
    width: 100%;
  }
  .about__cards {
    gap: 12px;
    padding: 30px 0;
  }
  .about__card {
    width: 140px;
    min-height: 170px;
    padding: 18px;
    gap: 10px;
  }
}

/* ===== Accessibility utility ============================================== */
/* Visually-hidden but screen-reader-available text */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------- 10 SERVICES (static 3-card grid)
   Greyish off-white dot-grid background; centered heading; equal-height cards
   with an image, a circular icon badge straddling the image edge, and a
   READ MORE link pinned to the bottom. */
.services {
  position: relative;
  background-color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  padding-top: 30px;
}
.services::before {
  display: none;
}
.services > * {
  position: relative;
  z-index: 1; /* keep content above the pattern layer */
}
.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.services__header {
  text-align: center;
  /* max-width: 760px; */
  width: 100%;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.services__eyebrow {
  font-family: var(--font-eyebrow); /* DM Sans 700 — matches site eyebrows */
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f5a62300;
  margin: 0 0 14px;
  background-clip: text !important;
  display: inline-block;
  background: linear-gradient(
    270deg,
    #ffb075,
    #bf59d1 33%,
    #3167ca 67%,
    #0941a8
  );
}
.services__heading {
  /* Matches the About section's heading treatment (Fraunces serif). */
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44.8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #000000;
  margin: 0;
  text-transform: none;
}
.services__intro {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(14, 23, 38, 0.65);
  max-width: 60ch;
  margin: 16px auto 0;
}

/* 3-col grid (wraps to 2 rows for 6 cards). grid-auto-rows:1fr keeps every
   row the same height so all 6 cards match across both rows. */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 28px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eceae5;
  border-radius: 14px;
  overflow: hidden; /* clip image to top radius; badge sits inside card bounds */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); /* visible, premium depth (client spec) */
  /* Whole card is a link (client spec): kill underline / inherit text colour. */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-soft),
    box-shadow 0.3s var(--ease-soft);
}
.svc-card:hover {
  transform: translateY(-4px); /* slight lift on hover */
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18); /* shadow deepens slightly */
}
/* Card-level link: drive the READ MORE affordance from hovering anywhere on the card. */
.svc-card:hover .svc-card__link {
  color: var(--blue);
}
.svc-card:hover .svc-card__arrow {
  transform: translateX(5px);
}
.svc-card__media {
  position: relative;
}
.svc-card__img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
/* Circular icon badge straddling the image's bottom-right edge */
.svc-card__badge {
  position: absolute;
  right: 24px;
  bottom: -28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 8px 18px rgba(11, 42, 91, 0.3);
}
.svc-card__badge svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}
.svc-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 34px 28px 26px;
}
.svc-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--navy);
  margin: 0 0 10px;
}
.svc-card__copy {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0;
}
.svc-card__link {
  display: flex; /* full-width row so the divider spans the card */
  align-items: center;
  gap: 8px;
  margin-top: auto; /* pin to bottom → equal-height cards */
  padding-top: 18px;
  border-top: 1px solid #eceae5; /* thin divider above the link */
  font-family: var(--font-eyebrow);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  transition: color 0.25s var(--ease-soft);
}
.svc-card__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease-soft);
}
.svc-card__link:hover {
  color: var(--blue);
}
.svc-card__link:hover .svc-card__arrow {
  transform: translateX(5px);
}

/* Services — mobile: single column */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
  .services__grid {
    display: grid !important; /* ensure never hidden by desktop rule override */
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Cards have data-reveal which sets opacity:0 via .js [data-reveal].
     On mobile GSAP may not trigger in time — force visible so section never appears blank. */
  .services__grid .svc-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  .svc-card__img {
    height: 200px;
  }
  .svc-card__body {
    padding: 32px 24px 24px;
  }
}

/* ---------------------------------------- 10a SERVICES — DESKTOP ACCORDION
   Expanding horizontal image accordion (desktop >768px ONLY). Pure CSS, no JS:
   the first panel is expanded by default; hovering any panel expands it and
   compresses the others (container-hover specificity overrides the default).
   Mobile keeps the .services__grid card stack untouched. */
.svc-acc {
  display: none; /* mobile + base: accordion hidden, card grid shows */
}
@media (min-width: 769px) {
  /* Desktop shows the accordion, hides the card grid. */
  .services__grid {
    display: none;
  }
  .svc-acc {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: 510px;
    border-radius: 16px;
    overflow: hidden;
  }
  .svc-acc__panel {
    position: relative;
    flex: 1; /* equal narrow strips by default */
    min-width: 0;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* First panel expanded by default (when nothing is hovered). */
  .svc-acc__panel:first-child {
    flex: 4;
  }
  /* On hover anywhere in the row: reset all, then expand the hovered one. */
  .svc-acc:hover .svc-acc__panel {
    flex: 1;
  }
  .svc-acc:hover .svc-acc__panel:hover {
    flex: 4;
  }

  .svc-acc__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Dark wash — heavier when collapsed, lighter when active so the image pops. */
  .svc-acc__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    transition: background 0.5s ease;
  }

  /* COLLAPSED: vertical title centered in the narrow strip. */
  .svc-acc__label {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 18px 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg); /* reads bottom-to-top */
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }

  /* EXPANDED: horizontal title + 1-line desc + link, bottom-left over the image. */
  .svc-acc__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 30px 34px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .svc-acc__heading {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    color: #fff;
    white-space: nowrap;
  }
  .svc-acc__desc {
    display: block;
    margin-top: 8px;
    max-width: 460px;
    font-family: var(--font-poppins);
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
  }
  .svc-acc__more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-family: var(--font-eyebrow);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
  }
  .svc-acc__more svg {
    width: 15px;
    height: 15px;
  }

  /* ---- Active-state cross-fade. Default active = first child; the hovered
     panel overrides it (equal specificity → later rule wins). ---- */
  /* Default active (no row hover): first panel shows expanded content. */
  .svc-acc__panel:first-child .svc-acc__shade {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  }
  .svc-acc__panel:first-child .svc-acc__label {
    opacity: 0;
  }
  .svc-acc__panel:first-child .svc-acc__body {
    opacity: 1;
  }
  /* Row hovered → first panel reverts to collapsed unless it is the hovered one. */
  .svc-acc:hover .svc-acc__panel:first-child .svc-acc__shade {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  }
  .svc-acc:hover .svc-acc__panel:first-child .svc-acc__label {
    opacity: 1;
  }
  .svc-acc:hover .svc-acc__panel:first-child .svc-acc__body {
    opacity: 0;
  }
  /* The hovered panel becomes active. */
  .svc-acc:hover .svc-acc__panel:hover .svc-acc__shade {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  }
  .svc-acc:hover .svc-acc__panel:hover .svc-acc__label {
    opacity: 0;
  }
  .svc-acc:hover .svc-acc__panel:hover .svc-acc__body {
    opacity: 1;
  }
}

/* ---------------------------------------- 10b WHY CHOOSE US (v3 — Flat Grey Cards)
   "What We Build"-style: white section, CENTERED header with a gradient
   underline accent (.wcu__accent), and 3 uniform flat #f5f5f5 cards with plain
   centred line-icons (no tinted containers, no colour variants).
   Entrance animation handled by GSAP pop() in main.js. */
.wcu {
  position: relative;
  background: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
  overflow: hidden;
}
/* Barely-visible blue warmth behind the middle card */
.wcu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.025) 0%,
    rgba(59, 130, 246, 0) 70%
  );
  pointer-events: none;
}
.wcu__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
/* Section header — centered with gradient accent */
.wcu__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.wcu__eyebrow {
  font-family:
    DM Sans,
    sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0abab42d;
  margin: 0 0 14px;
  background: linear-gradient(
    270deg,
    #ffb075,
    #bf59d1 33%,
    #3167ca 67%,
    #0941a8
  );
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wcu__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44.8px;
  line-height: 1.15;
  letter-spacing: -1.3px;
  color: #000000;
  margin: 0;
  text-transform: none;
}
/* Gradient underline accent under the heading (centered) */
.wcu__accent {
  display: none;
  width: 88px;
  height: 4px;
  border-radius: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #3ba2ff 0%, #7b61ff 50%, #e85d3a 100%);
}
.wcu__intro {
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 70ch;
  margin: 22px auto 0;
}
/* 3-column grid */
.wcu__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Flat light-gray card (reference style) */
.wcu-card {
  border-radius: 4px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f5f5f5;
  border: 0;
}
/* Plain centered icon — no tinted container (reference style) */
.wcu-card__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #111111;
}
.wcu-card__icon svg {
  width: 30px;
  height: 30px;
}
/* Card typography */
.wcu-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.3px;
  color: #111111;
  margin: 22px 0 0;
}
.wcu-card__text {
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 300px;
  margin: 12px 0 0;
}
/* Responsive — 2-col at 900px, 1-col at 600px */
@media (max-width: 900px) {
  .wcu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .wcu__grid .wcu-card:last-child {
    grid-column: span 2;
    max-width: calc(50% - 12px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .wcu {
    padding: 60px 0;
  }
  .wcu__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .wcu__grid .wcu-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .wcu-card {
    padding: 32px 24px;
  }
}

/* ===========================================================================
   OUR BUSINESS PROCESS  (#process — "How We Work" 5-step band)  [RESTORED]
   Dark navy band over a faded hero backdrop with 5 numbered outline-icon cards.
   Fully self-contained — no existing selectors are modified.
=========================================================================== */
.process {
  --proc-green: #f5a623;
  background: linear-gradient(135deg, #0b2a5b 0%, #1a4a8a 50%, #3ba2ff 100%);
  overflow: hidden;
  background-image: url("../../images/2148907396.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* 'fixed' breaks .process-step__card backdrop-filter (and janks on mobile) */
  position: relative;
  z-index: 10;
  &::after{
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.532);
    z-index: -1;

  }
  padding: 50px 0;
}
.process .section-head__eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  display: inline-block;
  /* Brighter warm-toned gradient (not the standard dark-trending one) — this
     eyebrow sits on .process's dark navy photo background, where the usual
     gradient's blue/navy end would lose contrast. */
  background: linear-gradient(270deg, #ffe3b0, #ffb075 45%, #f5a623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.process .section-head__eyebrow::before {
  display: none;
}
.process .section-head__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fff;
}
.process__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.process-step {
  display: flex;
  flex-direction: column;
}
.process-step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1;
  color: #f5a623;
  margin: 0 0 16px 2px;
}
.process-step__card {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  padding: 24px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}
.process-step__card:hover {
  border-color: rgba(245, 166, 35, 0.6);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.process-step__icon {
  display: block;
  margin-bottom: 16px;
}
.process-step__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #f5a623;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* The "24" badge inside the step-05 monitoring icon. Originally a GLOBAL
   `text { fill }` rule — scoped to .process here so it can't re-tint the
   India-map labels in the Impact section. */
.process-step__icon svg text {
  fill: #f5a623;
}
.process-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fff;
  margin: 0 0 10px;
}
.process-step__copy {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media (max-width: 1199px) {
  .process__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
  .process-step__num {
    margin-bottom: 12px;
  }
  .process-step__card {
    padding: 20px;
  }
}

/* ------------------------------------------------------------ OUR WORK
   "Work"-style layout: LEFT-aligned header (eyebrow + heading + gradient accent
   + intro) followed by a Swiper carousel of project slides. Autoplay, no nav
   buttons, 3.25 slides on desktop / 1.25 on phone. Each slide = title above a
   rounded image banner + location below. Init: initWorkSwiper() in main.js. */
.ourwork {
  background: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
}
.ourwork__container {
  max-width: 100%;
  margin: 0;
  padding: 0 0;
  text-align: center;
}
/* Left-aligned header */
.ourwork__header {
  text-align: center;
  max-width: 100%;
  margin: 0 0 clamp(36px, 4vw, 52px);
  p{
    width: 100%;
    text-align: center;
  }
}
.ourwork__eyebrow {
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 14px;
  display: inline-block;
  background: linear-gradient(270deg, #ffb075, #bf59d1 33%, #3167ca 67%, #0941a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ourwork__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44.8px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #0e1726;
  margin: 0;
}
/* Gradient underline accent (reference detail) */
.ourwork__accent {
  display: none;
  width: 88px;
  height: 4px;
  border-radius: 2px;
  margin: 18px 0 0;
  background: linear-gradient(90deg, #3ba2ff 0%, #7b61ff 50%, #e85d3a 100%);
}
.ourwork__sub {
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  /* max-width: 70ch; */
  margin: 20px 0 0;
}
/* Carousel */
.ourwork-swiper {
  width: 100%;
}
.ow-slide {
  height: auto;
  box-sizing: border-box;
}
.ow-slide__link {
  display: block;
  text-decoration: none;
}
/* Title above the image (reference layout) */
.ow-slide__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
  color: #1a1a2e;
  margin: 0 0 14px;
}
.ow-slide__media {
  border-radius: 0px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #f1f1f1;
}
.ow-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-soft);
}
.ow-slide__link:hover .ow-slide__img {
  transform: scale(1.04);
}
/* Location below the image */
.ow-slide__meta {
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  color: #5a5a5a;
  margin: 16px 0 0;
}
/* Our Work — mobile */
@media (max-width: 768px) {
  .ow-slide__media {
    border-radius: 0px;
  }
}

/* ------------------------------------------------------------ FAQ
   Native <details>/<summary> accordion, 2-col on desktop. AEO-friendly
   (paired with FAQPage JSON-LD in index.php). JS-free open/close. */
.faq {
  background: #f4f5f7; /* cool grey off-white — neutral/modern vs white #our-work above & #cta-final below */
  padding: 100px 0;
  position: relative;
  /* box-shadow: 0px 20px 20px -5px gray; */
}
@media (max-width: 640px) {
  .faq { padding: 56px 0; }
}
/* Centered header (matches #our-work). */
.faq .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto; /* space before the grid */
}
@media (max-width: 640px) {
  .faq .section-head { padding: 0 20px; }
}
/* Heading — solid Fraunces serif (matches About / Services / WCU). */
.faq .section-head__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44.8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0e1726;
  text-transform: capitalize;
}
/* Eyebrow — matches About / Services / WCU: DM Sans 700, uppercase, gold,
   wide 0.15em tracking, no gold dash. Scoped — no other section changes. */
.faq .section-head__eyebrow {
  display: inline-block;
  font-family: var(--font-eyebrow); /* DM Sans */
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 16px;
  background: linear-gradient(270deg, #ffb075, #bf59d1 33%, #3167ca 67%, #0941a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.faq .section-head__eyebrow::before {
  display: none; /* drop the gold dash for parity with .wcu__eyebrow */
}
/* Centered gradient underline accent below the heading (reference detail) */
.faq__accent {
  display: none;
  width: 88px;
  height: 4px;
  border-radius: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #3ba2ff 0%, #7b61ff 50%, #e85d3a 100%);
}
.faq__grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .faq__grid {
    padding: 0 16px;
  }
}
/* Full-width numbered row (reference layout) */
.faq__item {
  position: relative;
  background: #fff;
  border-radius: 0px;
  padding: 0;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid rgba(14, 23, 38, 0.08);
}
/* Left gradient accent bar — shown only when the item is open */
.faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ff5db1 0%, #7b61ff 50%, #3ba2ff 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: none;
}
.faq__item[open] {
  box-shadow: 0 6px 26px rgba(14, 23, 38, 0.07);
  border-color: transparent;
}
.faq__item[open]::before {
  opacity: 1;
}
.faq__q {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none; /* hide default disclosure triangle */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.4;
}
.faq__q::-webkit-details-marker {
  display: none;
} /* Safari */
/* Leading ordinal — light grey, turns blue when open */
.faq__num {
  flex-shrink: 0;
  min-width: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #c4c7cf;
  transition: color 0.25s ease;
}
.faq__item[open] .faq__num {
  color: #3ba2ff;
}
.faq__qtext {
  flex: 1 1 auto;
}
/* Chevron — rotates on open (no circle background) */
.faq__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #94a3b8;
  transition:
    transform 0.3s ease,
    color 0.25s ease;
}
.faq__icon svg {
  width: 20px;
  height: 20px;
}
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  color: var(--ink);
}
.faq__a {
  padding: 0 28px 26px 74px; /* indent under the question text (past the number) */
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(14, 23, 38, 0.7);
}
.faq__a p {
  margin: 0;
}
@media (max-width: 768px) {
  .faq__q {
    padding: 15px 15px;
  }
  .faq__a {
    padding-left: 28px; /* drop the number indent on small screens */
  }
}
/* Subtle reveal when an item opens — JS-free, no height measuring. */
.faq__item[open] .faq__a {
  animation: faqReveal 0.3s ease;
}
@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------ CTA (final, above footer) */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: 64px 40px;
  text-align: center;
  background: hsla(224, 95%, 86%, 0.902);
  max-width: 1100px;
  margin: 0 auto 60px;
  border-radius: 24px;
}
/* Photo background (every inner page except the home page) — a light
   warm overlay wash keeps the existing dark title/sub text readable
   while letting the photo show through clearly. margin-top clears it
   from the .faq section's negative bottom margin/rounded corner above. */
.cta-final--photo-bg {
  background-image:
    linear-gradient(hsla(217, 78%, 14%, 0.55), hsla(217, 78%, 12%, 0.88)),
    url("../../images/solar-img/solar-panel-installation-rooftop.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  margin-top: 90px;
}
/* Dark overlay needs light text for contrast */
.cta-final--photo-bg .cta-final__eyebrow {
  background: linear-gradient(270deg, #ffe1b0, #ffb075 33%, #f5a623 67%, #ffd9a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cta-final--photo-bg .cta-final__eyebrow::before,
.cta-final--photo-bg .cta-final__eyebrow::after {
  background: rgba(255, 255, 255, 0.45);
}
.cta-final--photo-bg .cta-final__title {
  color: #fff;
}
.cta-final--photo-bg .cta-final__sub {
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 640px) {
  .cta-final { padding: 32px 20px; margin: 0 16px 48px; border-radius: 18px; }
}
/* Subtle golden warmth — barely-visible glow behind the heading */
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(245, 166, 35, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
/* Eyebrow with flanking lines */
.cta-final__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0 0 18px;
  background: linear-gradient(270deg, #ffb075, #bf59d1 33%, #3167ca 67%, #0941a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cta-final__eyebrow::before,
.cta-final__eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(11, 36, 71, 0.35);
  flex-shrink: 0;
}
/* Heading — Space Grotesk, modern premium sans */
.cta-final__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.8px;
  text-transform: capitalize;
  white-space: nowrap;
  color: #0b2447;
  text-shadow: none;
  margin: 0 0 18px;
}
@media (max-width: 680px) {
  .cta-final__title {
    white-space: normal;
    font-size: clamp(1.7rem, 6vw, 2rem);
  }
}
/* Subtext */
.cta-final__sub {
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(11, 36, 71, 0.7);
  max-width: 480px;
  margin: 0 auto 40px;
}
/* CTA button — gradient gold pill, white text */
.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f5a623 0%, #e8890c 100%);
  color: #fff;
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 40px;
  border-radius: 60px;
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cta-final__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245, 166, 35, 0.35);
}
.cta-final__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.cta-final__btn:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .cta-final {
    padding: 72px 24px;
    margin: 32px 15px;
  }
  .cta-final__btn {
    padding: 14px 32px;
  }
}

/* ------------------------------------------------------------ 19 FOOTER */
/* Rounded white cap directly above the footer, present on every page (see
   includes/footer.php). It sits on plain white body background, so:
   - Pages ending in .cta-final: already invisible/seamless, since
     .cta-final's own margin-bottom leaves a white gap before the cap.
   - Pages ending in .faq (home, contact): .faq is grey, so it gets its
     own margin-bottom below to leave that same white gap before the cap,
     instead of touching it directly and creating a grey/white seam. */
.page-end-cap {
  background: #fff;
  height: 32px;
  border-radius: 0 0 28px 28px;
  margin-bottom: -28px;
  position: relative;
  z-index: 1;
}
main > .faq:last-of-type {
  margin-bottom: 40px;
}
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: clamp(56px, 7vw, 88px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 44px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
/* Footer brand is logo-only (wordmark text removed). Self-contained (the shared
   header .brand was removed with the old header), so the footer logo keeps its
   own white plate + flush-left layout. Scoped to .brand--light = footer only. */
.brand--light {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
.brand--light img {
  width: auto;
  max-width: 180px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
}
.brand--light .brand__name,
.brand--light .brand__tag {
  color: #fff;
}
.brand--light .brand__tag {
  color: rgba(255, 255, 255, 0.65);
}

.footer-col__blurb {
  margin-top: 18px;
  font-size: 0.95rem;
}
/* Breathing room above the footer "Get a Free Quote" button (only button
   in a footer column — scoped, won't affect the shared .btn elsewhere). */
.footer-col .btn {
  margin-top: 24px;
}
.footer-col__head {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-office a {
  color: rgba(255, 255, 255, 0.78);
  transition:
    color var(--t-fast),
    padding-left var(--t-fast);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-office {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}
.footer-office a:hover {
  color: var(--gold);
}
.footer-office__tag {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition:
    background var(--t-fast),
    transform var(--t-fast);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-social a:hover {
  background: var(--gold);
  color: #1f1402;
  transform: translateY(-3px);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 22px;
}
.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.88rem;
  text-align: center;
}
.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  transition: color var(--t-fast);
}
.footer-top svg {
  width: 18px;
  height: 18px;
}
.footer-top:hover {
  color: var(--gold);
}

/* --------------------------------------------------- 20 SCROLL-REVEAL */
/* Initial hidden state — only applied when JS is present (html.js) so that
   no-JS users always see content. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(
    24px
  ); /* gentle fade-up distance (luxury, restrained) */
  will-change: opacity, transform;
  
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* Staggered groups: hide the CHILDREN pre-animation (GSAP animates them in). */
.js [data-stagger] > * {
  opacity: 0;
  will-change: opacity, transform;
}

/* ----------------------------------------------- 21 RESPONSIVE BREAKPOINTS */

/* Small desktop (992–1199): tighten the gutter (header nav handled in §06) */
@media (max-width: 1199px) {
  :root {
    --gutter: clamp(18px, 3vw, 44px);
  }
}

/* Tablet & phone (≤991): layout (header → hamburger handled in §06) */
@media (max-width: 991px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col--about {
    grid-column: 1 / -1;
  }
}

/* Tablet (≤768) */
@media (max-width: 768px) {
  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }
  /* Hero banner switches to the portrait phone crop (5:6) — matches the
     <picture> source media query so the served image and the box ratio agree. */
  .hero-banner {
    /* Phone <picture> source displays at its own natural ratio — no cap, no crop. */
    max-height: none;
  }
  /* roomier tap targets for footer text links */
  .footer-links a,
  .footer-office a {
    display: inline-block;
    padding: 6px 0;
  }
}

/* Phone (≤576) */
@media (max-width: 576px) {
  :root {
    --gutter: 16px;
  }
  /* Principle cards stay a 2×2 grid on phones (the ≤991 rule). */
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__bar-inner {
    flex-direction: column;
    align-items: center;
  }
  .brand__tag {
    display: none;
  }
}

/* ===========================================================================
   MOBILE-ONLY REFINEMENTS (≤768). Placed last so equal-specificity rules win
   over the earlier 991 / 768 / 576 blocks. Desktop & tablet (>768) untouched.
=========================================================================== */
@media (max-width: 768px) {
  /* Client marquee (mobile): larger, more prominent logos (~135% of the
     prior 48px → 64px), tighter gap so more than ~3 show at once, and a
     touch more vertical breathing room above/below. */
  .client-strip {
    padding-block: 48px;
  }
  .client-strip__item img {
    height: 64px;
    max-height: 64px;
  }
  .client-strip__item {
    margin-right: 24px;
  }

  /* (4) Section headings — raise the mobile floor (desktop max 2.55rem unchanged). */
  .section-head__title {
    font-size: clamp(1.85rem, 4vw, 2.55rem);
  }

  /* (6) How We Work — 2 cards per row; 5th centered (2+2+1). Supersedes the
     earlier process 768/480 rules (this block is later in source order). */
  .process__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .process-step__card {
    padding: 18px 14px;
    text-align: center;
  }
  .process-step__icon {
    margin-left: auto;
    margin-right: auto; /* centre the icon within the now-centered card */
  }
  .process-step__num {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .process-step__title {
    font-size: 0.85rem;
    letter-spacing: 0;
  }
  .process-step__copy {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .process-step:nth-child(5) {
    grid-column: 1 / -1; /* 5th of 5 spans both columns... */
    max-width: calc(50% - 7px); /* ...but stays one-card wide */
    justify-self: center;
  }
}

/* --------------------------------------------- REDUCED MOTION FALLBACK */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal],
  .js [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Hero banner: no Ken-Burns, no load-fade — show the active slide statically */
  .hero-banner,
  .hero-banner__img {
    animation: none !important;
    transition: none !important;
  }
}

/* ===========================================================================
   MOBILE STICKY ACTION DOCK (≤768px only) — Home / Quote / Call / WhatsApp.
   Fixed to the bottom of the viewport; hidden entirely on desktop/tablet.
=========================================================================== */
.mobile-dock {
  display: none;
}
@media (max-width: 768px) {
  .mobile-dock {
    display: none; /* sticky bottom action bar — hidden per request */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #eeeeeb; /* hairline separator — premium, barely there */
    box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.05);
    padding: 8px 0 env(safe-area-inset-bottom, 8px); /* compact; clears the notch */
  }
  .mobile-dock__btn {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px; /* tight icon→label stack */
    min-height: 44px; /* comfortable tap target */
    padding: 4px 0;
    text-decoration: none;
    color: var(--navy); /* uniform monochrome icon colour for ALL 4 */
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease;
  }
  /* Thin, refined line icons — uniform navy, 20px, 1.5 stroke (Feather/Lucide feel). */
  .mobile-dock__btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-dock__label {
    font-family: var(--font-body); /* Inter */
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    color: #777; /* subtle grey — quieter than the icons */
  }
  /* Single accent for the CURRENT page only; every other item stays navy. */
  .mobile-dock__btn.is-active {
    color: var(--blue);
  }
  .mobile-dock__btn.is-active .mobile-dock__label {
    color: var(--blue);
  }

}

/* ----------------------------------------------- PHONE SECTION HEADINGS
   Uniform 28.8px heading size on phones for: Why Choose Us, How We Work,
   Our Work, What We Offer (Services) and Common Questions (FAQ). Placed last
   so it overrides each section's base size at this breakpoint. */
@media (max-width: 768px) {
  .wcu__heading,
  .ourwork__title,
  .services__heading,
  .process .section-head__title,
  .faq .section-head__title {
    font-size: 28.8px;
  }
}

/* Let .process-step__card's backdrop-filter sample the section photo behind it.
   The scroll-reveal rule (.js [data-reveal]) sets will-change:opacity on each
   .process-step, which turns the step into a "backdrop root" (transparent) and
   leaves the card with nothing to blur. We don't need that hint here, so clear
   it. Placed after .js [data-reveal] so it wins (equal specificity). */
.js .process-step {
  will-change: auto;
}

/* ============================================================================
   INNER-PAGE SHARED COMPONENTS
   Used across about.php, services.php, solar.php, products.php, contact.php,
   training.php, career.php. Reuses --navy / --gold / --font-display /
   --font-eyebrow / --font-poppins tokens defined near the top of this file so
   every inner page stays visually consistent with the home page.
   ============================================================================ */

/* ---------- Page hero / banner (top of every inner page) ---------- */
/* Light, text-only hero (matches the home hero's typography/colors — see
   .mh-eyebrow/.mh-heading/.mh-sub in includes/hero-home.php — but centered,
   no photo/video column). Pages no longer set a background photo here. */
.page-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: clamp(28px, 3vw, 40px) var(--gutter) clamp(32px, 4vw, 48px);
  text-align: center;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-eyebrow), "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  background: linear-gradient(270deg, #ffb075, #bf59d1 33%, #3167ca 67%, #0941a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.page-hero__title {
  font-family: var(--font-display), "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.page-hero__text {
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #5a5a5a;
  max-width: 56ch;
  margin: 0 auto;
}
.page-hero__crumbs {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-size: 0.85rem;
}
.page-hero__crumbs li { color: #9aa3af; display: flex; align-items: center; gap: 8px; }
.page-hero__crumbs a { color: #5a6473; text-decoration: none; }
.page-hero__crumbs a:hover { color: var(--blue); }
.page-hero__crumbs li[aria-current] { color: var(--ink); font-weight: 500; }

@media (max-width: 768px) {
  .page-hero { padding: 24px var(--gutter) 32px; }
  .page-hero__crumbs { flex-wrap: wrap; row-gap: 4px; }
  .page-hero__crumbs li[aria-current] { flex-basis: 100%; justify-content: center; text-align: center; }
}

/* ---------- Generic content section w/ narrow readable column ---------- */
.info-section { padding: clamp(36px, 5vw, 64px) 0; background: #fff; }
.info-section--alt { background: #f7f8fa; }
.info-section__container { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.info-section__prose { max-width: 68ch; }
.info-section__prose p { font-family: var(--font-poppins), sans-serif; color: #5a5a5a; line-height: 1.75; margin: 0 0 16px; }
.info-section__prose h2 { font-family: var(--font-display); color: var(--navy); font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 14px; }

/* ---------- Two-column split (media + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; max-width: 1200px; margin: 0 auto; padding: clamp(36px, 5vw, 64px) var(--gutter); }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__media { position: relative; height: 100%; min-height: 320px; align-self: stretch; }
.split__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(14, 23, 38, 0.14);
}
.split__badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 12px 28px rgba(14, 23, 38, 0.22);
}
.split__badge__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #f5a623, #e8890c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split__badge__icon svg { width: 16px; height: 16px; stroke: #fff; }
.split__badge__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  line-height: 1.25;
  color: var(--navy);
  white-space: nowrap;
}
.split__badge__text span { display: block; font-family: var(--font-poppins), sans-serif; font-weight: 400; font-size: 0.66rem; color: #7a8291; }
@media (max-width: 640px) {
  .split__badge { left: 12px; bottom: 12px; padding: 8px 14px 8px 8px; }
  .split__badge__icon { width: 30px; height: 30px; }
  .split__badge__text { font-size: 0.68rem; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Value / feature grid (about.php, career.php) ---------- */
/* Always used nested inside .info-section__container, which already caps
   width at 1200px + applies the side gutter — no width/padding of its own
   here, or the grid ends up narrower than sibling sections (double gutter). */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }
.value-grid > * { min-width: 0; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
/* 4-per-row variant (career.php "Why Work With Us" — 4 items) */
.value-grid--4col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .value-grid--4col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid--4col { grid-template-columns: 1fr; } }

/* ---------- Mission / Vision / Values "pillars" (about.php) ----------
   Open, editorial layout — numbered panels + vertical dividers, no card
   boxes — distinct from the boxed .value-grid pattern used elsewhere, so
   this reads as the page's core statement rather than another feature grid. */
.pillars {
  background: var(--bg);
  padding: clamp(56px, 8vw, 96px) 0;
}

.pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(32px, 5vw, 56px);
}
.pillar {
  position: relative;
  padding: 0 clamp(20px, 3vw, 40px);
}
.pillar:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #e6e9ef;
}
.pillar__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #c3c9d3;
  margin-bottom: 20px;
}
.pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pastel-blue);
  color: var(--navy);
  margin-bottom: 22px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar:hover .pillar__icon {
  background: var(--pastel-peach);
  transform: translateY(-3px);
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.pillar__text {
  font-family: var(--font-poppins), sans-serif;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #666;
  max-width: 32ch;
}
@media (max-width: 760px) {
  .pillar-row { grid-template-columns: 1fr; row-gap: 40px; }
  .pillar:not(:first-child)::before { display: none; }
  .pillar__text { max-width: none; }
}

/* ---------- Why Choose Us — connected timeline (about.php) ---------- */
.why-choose { background: #fff; padding: clamp(56px, 8vw, 96px) 0; }
.why-choose__intro {
  max-width: 68ch;
  margin: 18px auto 0;
  font-family: var(--font-poppins), sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.why-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 6vw, 72px);
}
/* Connecting line behind the icon row */
.why-track::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(to right, #dfe3e8 0 8px, transparent 8px 16px);
  z-index: 0;
}
.why-step { position: relative; z-index: 1; text-align: center; }
.why-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--wstep-ink, var(--pastel-blue-ink));
  color: var(--wstep-ink, var(--pastel-blue-ink));
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}
.why-step:hover .why-step__icon { transform: translateY(-4px); }
.why-step__icon svg { width: 26px; height: 26px; }
.why-step__icon--blue { --wstep-ink: var(--pastel-blue-ink); }
.why-step__icon--peach { --wstep-ink: var(--pastel-peach-ink); }
.why-step__icon--green { --wstep-ink: var(--pastel-green-ink); }
.why-step__icon--lavender { --wstep-ink: var(--pastel-lavender-ink); }
.why-step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #c3c9d3;
  margin-bottom: 6px;
}
.why-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 6px;
}
.why-step__text {
  font-family: var(--font-poppins), sans-serif;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #777;
}
@media (max-width: 760px) {
  .why-track { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .why-track::before { display: none; }
}
.value-card {
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(14, 23, 38, 0.05);
  transition: transform 0.28s var(--ease-soft, ease), box-shadow 0.28s var(--ease-soft, ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14, 23, 38, 0.09); }
.contact-steps .value-card,
.contact-steps .value-card:hover {
  transform: none;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--pastel-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card__icon svg { width: 22px; height: 22px; stroke: var(--pastel-blue-ink); }
/* Pastel colour variants — cycle these across cards for visual variety */
.value-card__icon--blue      { background: var(--pastel-blue); }
.value-card__icon--blue svg  { stroke: var(--pastel-blue-ink); }
.value-card__icon--peach     { background: var(--pastel-peach); }
.value-card__icon--peach svg { stroke: var(--pastel-peach-ink); }
.value-card__icon--green     { background: var(--pastel-green); }
.value-card__icon--green svg { stroke: var(--pastel-green-ink); }
.value-card__icon--lavender     { background: var(--pastel-lavender); }
.value-card__icon--lavender svg { stroke: var(--pastel-lavender-ink); }
.value-card__icon--pink     { background: var(--pastel-pink); }
.value-card__icon--pink svg { stroke: var(--pastel-pink-ink); }
.value-card__icon--mint     { background: var(--pastel-mint); }
.value-card__icon--mint svg { stroke: var(--pastel-mint-ink); }
.value-card__title { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.08rem; margin: 0 0 8px; }
.value-card__text { font-family: var(--font-poppins), sans-serif; color: #666; font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* ---------- Stat strip (numbers row) ---------- */
/* Always used nested inside .info-section__container (which caps width at
   1200px + applies the side gutter) — see .value-grid note above. */
/* Open stat row — no card boxes/backgrounds, just numbers + thin dividers.
   Full-width grid (same width discipline as .value-grid/.product-grid) so
   the row spans the same 1200px content width as every sibling section,
   instead of shrinking to its content like a centered flex row would. */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.stat-strip__item {
  position: relative;
  text-align: center;
  padding: 0 16px;
}
.stat-strip__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #dfe3e8;
}
@media (max-width: 640px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat-strip__item::before { display: none; }
  .stat-strip__item:nth-child(2n)::before { display: block; }
}

.stat-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--stat-bg, var(--pastel-blue));
  color: var(--stat-ink, var(--pastel-blue-ink));
  transition: transform 0.28s var(--ease-soft, ease);
}
.stat-strip__icon svg { width: 24px; height: 24px; }
.stat-strip__item:hover .stat-strip__icon { transform: scale(1.08); }

.stat-strip__item:nth-child(4n+1) { --stat-bg: var(--pastel-blue); --stat-ink: var(--pastel-blue-ink); }
.stat-strip__item:nth-child(4n+2) { --stat-bg: var(--pastel-peach); --stat-ink: var(--pastel-peach-ink); }
.stat-strip__item:nth-child(4n+3) { --stat-bg: var(--pastel-green); --stat-ink: var(--pastel-green-ink); }
.stat-strip__item:nth-child(4n+4) { --stat-bg: var(--pastel-lavender); --stat-ink: var(--pastel-lavender-ink); }

.stat-strip__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-strip__label { display: block; font-family: var(--font-poppins), sans-serif; font-size: 0.86rem; color: #556; margin-top: 6px; }

/* ---------- Stats section background — subtle pastel glow (about.php) ----------
   Plain flat grey felt bare next to the more decorated sections around it;
   soft blurred pastel blobs (very low opacity) add depth without competing
   with the stat numbers. */
.about-stats {
  position: relative;
  overflow: hidden;
}
.about-stats::before,
.about-stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.about-stats::before {
  top: -12%;
  left: 2%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 162, 255, 0.32) 0%, transparent 68%);
}
.about-stats::after {
  bottom: -18%;
  right: 2%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.28) 0%, transparent 68%);
}
.about-stats .info-section__container { position: relative; z-index: 1; }
@media (max-width: 640px) {
  .about-stats::before,
  .about-stats::after { width: 220px; height: 220px; filter: blur(40px); }
}

/* ---------- Job / role list (career.php) ---------- */
/* Always used nested inside .info-section__container — see .value-grid note above. */
.job-list { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #eceef1;
  border-left: 4px solid var(--pastel-blue-ink);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 6px 18px rgba(14, 23, 38, 0.04);
  transition: transform 0.24s var(--ease-soft, ease), box-shadow 0.24s var(--ease-soft, ease);
}
.job-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(14, 23, 38, 0.08); }
.job-card:nth-child(4n+1) { border-left-color: var(--pastel-blue-ink); }
.job-card:nth-child(4n+2) { border-left-color: var(--pastel-peach-ink); }
.job-card:nth-child(4n+3) { border-left-color: var(--pastel-green-ink); }
.job-card:nth-child(4n+4) { border-left-color: var(--pastel-lavender-ink); }
.job-card__title { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; margin: 0 0 6px; }
.job-card__meta { font-family: var(--font-poppins), sans-serif; font-size: 0.8rem; color: #888; }
.job-card__meta span {
  display: inline-block;
  margin: 0 8px 4px 0;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--pastel-blue);
  color: var(--pastel-blue-ink);
}
.job-card__cta { flex-shrink: 0; }

/* ---------- Contact page: form + info split ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); max-width: 1200px; margin: 0 auto; padding: clamp(12px, 2vw, 24px) var(--gutter) clamp(36px, 5vw, 64px); align-items: stretch; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form { background: #fff; border: 1px solid #eceef1; border-radius: 20px; padding: clamp(24px, 4vw, 40px); box-shadow: 0 18px 48px rgba(14, 23, 38, 0.08); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form label { display: block; font-family: var(--font-eyebrow), sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #8a93a1; margin-bottom: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-poppins), sans-serif;
  font-size: 0.95rem;
  color: #0e1726;
  background: #fbfbfc;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form__field { margin-bottom: 16px; }

/* ---------- Custom dropdown (replaces native <select> — contact.php "I'm
   Interested In") — native <option> lists can't be restyled cross-browser,
   so this is a fully custom trigger + listbox instead, matching the site's
   form styling in both closed and open states. See initCustomSelects() in
   main.js. ---------- */
.custom-select { position: relative; }
.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-poppins), sans-serif;
  font-size: 0.95rem;
  color: #0e1726;
  background: #fbfbfc;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.custom-select__trigger:hover { border-color: #c9cfd8; }
.custom-select__trigger:focus-visible,
.custom-select.is-open .custom-select__trigger {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.custom-select__chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #9aa3af;
  transition: transform 0.2s ease;
}
.custom-select.is-open .custom-select__chev { transform: rotate(180deg); color: var(--gold); }

.custom-select__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(14, 23, 38, 0.14);
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.custom-select__panel[hidden] { display: none; }
.custom-select__option {
  padding: 11px 14px;
  border-radius: 8px;
  font-family: var(--font-poppins), sans-serif;
  font-size: 0.92rem;
  color: #333;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.custom-select__option:hover,
.custom-select__option.is-active {
  background: var(--pastel-blue);
  color: var(--navy);
}
.custom-select__option.is-selected {
  color: var(--navy);
  font-weight: 600;
  background: var(--pastel-peach);
}
.contact-form__submit { width: 100%; justify-content: center; margin-top: 4px; }
.contact-form__note { font-family: var(--font-poppins), sans-serif; font-size: 0.8rem; color: #9aa3af; margin-top: 12px; text-align: center; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info__card { background: var(--navy); border-radius: 20px; padding: clamp(24px, 4vw, 32px); color: #fff; }
.contact-info__item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(245, 166, 35, 0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.contact-info__label { font-family: var(--font-eyebrow), sans-serif; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.55); margin: 0 0 4px; }
.contact-info__value { font-family: var(--font-poppins), sans-serif; font-size: 0.95rem; color: #fff; margin: 0; }
.contact-info__value a { color: #fff; text-decoration: none; }
.contact-info__value a:hover { color: var(--gold); }
.contact-map { flex: 1; min-height: 220px; border-radius: 20px; overflow: hidden; box-shadow: 0 18px 40px rgba(14, 23, 38, 0.1); line-height: 0; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Product / category grid (products.php) ---------- */
/* Always used nested inside .info-section__container — see .value-grid note above. */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; width: 100%; }
.product-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); border: 1px solid #eceef1; transition: transform 0.28s var(--ease-soft, ease), box-shadow 0.28s var(--ease-soft, ease); }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(14, 23, 38, 0.1); }
.product-card__media { position: relative; }
.product-card__img { width: 100%; height: 190px; object-fit: cover; display: block; }
.product-card__body { padding: 20px 22px 24px; }
.product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-eyebrow), sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--pastel-blue);
  color: var(--pastel-blue-ink);
}
.product-card:nth-child(6n+1) .product-card__tag { background: var(--pastel-blue); color: var(--pastel-blue-ink); }
.product-card:nth-child(6n+2) .product-card__tag { background: var(--pastel-peach); color: var(--pastel-peach-ink); }
.product-card:nth-child(6n+3) .product-card__tag { background: var(--pastel-green); color: var(--pastel-green-ink); }
.product-card:nth-child(6n+4) .product-card__tag { background: var(--pastel-lavender); color: var(--pastel-lavender-ink); }
.product-card:nth-child(6n+5) .product-card__tag { background: var(--pastel-pink); color: var(--pastel-pink-ink); }
.product-card:nth-child(6n+6) .product-card__tag { background: var(--pastel-mint); color: var(--pastel-mint-ink); }
/* Same rotation when a .product-card is wrapped in a swiper-slide (each card
   is then its own slide's only child, so :nth-child must key off the slide). */
.swiper-slide:nth-child(6n+1) .product-card__tag { background: var(--pastel-blue); color: var(--pastel-blue-ink); }
.swiper-slide:nth-child(6n+2) .product-card__tag { background: var(--pastel-peach); color: var(--pastel-peach-ink); }
.swiper-slide:nth-child(6n+3) .product-card__tag { background: var(--pastel-green); color: var(--pastel-green-ink); }
.swiper-slide:nth-child(6n+4) .product-card__tag { background: var(--pastel-lavender); color: var(--pastel-lavender-ink); }
.swiper-slide:nth-child(6n+5) .product-card__tag { background: var(--pastel-pink); color: var(--pastel-pink-ink); }
.swiper-slide:nth-child(6n+6) .product-card__tag { background: var(--pastel-mint); color: var(--pastel-mint-ink); }
.product-card__title { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; margin: 0 0 8px; }
.product-card__text { font-family: var(--font-poppins), sans-serif; font-size: 0.9rem; color: #666; line-height: 1.6; margin: 0; }

/* ---------- "Other services" swiper (includes/svc-related.php) ----------
   Full-width, edge-to-edge — same treatment as .ourwork-swiper on the home
   page's "Our Work" section: no side gutter, no visible nav/pagination,
   pure autoplay + drag. */
.svc-related {
  padding-bottom: 0;
}
.svc-related-swiper {
  width: 100%;
  margin-top: 32px;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.svc-related-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.svc-related-swiper .swiper-slide .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.svc-related-swiper .product-card__body { flex: 1; }
/* No lift/shadow hover on carousel cards (unlike the static .product-grid) */
.svc-related-swiper .product-card:hover {
  transform: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ============================================================================
   DETAILED SERVICES (services.php) — alternating media/copy blocks per
   service, each with a feature checklist and a pastel category tag.
   ============================================================================ */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 40px) var(--gutter);
}
.svc-detail:nth-child(even) { direction: rtl; }
.svc-detail:nth-child(even) > * { direction: ltr; }
.svc-detail__media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 48px rgba(14, 23, 38, 0.12); }
.svc-detail__img { width: 100%; height: 100%; min-height: 320px; max-height: 420px; object-fit: cover; display: block; }
.svc-detail__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-eyebrow), sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 16px 7px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(14, 23, 38, 0.08);
}
.svc-detail__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.svc-detail__title { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 12px; }
.svc-detail__text { font-family: var(--font-poppins), sans-serif; color: #5a5a5a; font-size: 0.98rem; line-height: 1.75; margin: 0 0 20px; }
.svc-detail__cta { display: inline-flex; align-items: center; gap: 8px; }

.feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  background: #f7f8fa;
  border: 1px solid #eceef1;
  border-radius: 14px;
}
@media (max-width: 480px) { .feature-list { grid-template-columns: 1fr; padding: 16px 18px; } }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-poppins), sans-serif; font-size: 0.9rem; color: #40495a; line-height: 1.4; }
.feature-list li svg {
  width: 22px;
  height: 22px;
  padding: 5px;
  box-sizing: border-box;
  flex-shrink: 0;
  background: rgba(11, 36, 71, 0.06);
  border-radius: 8px;
}

/* Pastel tag/icon colour rotation for the 6 alternating service blocks */
.svc-detail:nth-of-type(6n+1) .svc-detail__tag { background: var(--pastel-blue); color: var(--pastel-blue-ink); }
.svc-detail:nth-of-type(6n+1) .feature-list svg { stroke: var(--pastel-blue-ink); }
.svc-detail:nth-of-type(6n+2) .svc-detail__tag { background: var(--pastel-peach); color: var(--pastel-peach-ink); }
.svc-detail:nth-of-type(6n+2) .feature-list svg { stroke: var(--pastel-peach-ink); }
.svc-detail:nth-of-type(6n+3) .svc-detail__tag { background: var(--pastel-green); color: var(--pastel-green-ink); }
.svc-detail:nth-of-type(6n+3) .feature-list svg { stroke: var(--pastel-green-ink); }
.svc-detail:nth-of-type(6n+4) .svc-detail__tag { background: var(--pastel-lavender); color: var(--pastel-lavender-ink); }
.svc-detail:nth-of-type(6n+4) .feature-list svg { stroke: var(--pastel-lavender-ink); }
.svc-detail:nth-of-type(6n+5) .svc-detail__tag { background: var(--pastel-pink); color: var(--pastel-pink-ink); }
.svc-detail:nth-of-type(6n+5) .feature-list svg { stroke: var(--pastel-pink-ink); }
.svc-detail:nth-of-type(6n+6) .svc-detail__tag { background: var(--pastel-mint); color: var(--pastel-mint-ink); }
.svc-detail:nth-of-type(6n+6) .feature-list svg { stroke: var(--pastel-mint-ink); }

@media (max-width: 900px) {
  .svc-detail, .svc-detail:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}

/* ---------- Small process/step mini-list (used inline in prose sections) ---------- */
/* Zigzag "flow" layout — alternating cards step down, joined by connector
   arrows, instead of a flat card grid (which is already the pattern used
   everywhere else: value-grid, product-grid, job-list). */
.process-mini {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .process-mini { grid-template-columns: repeat(2, 1fr); } }
/* Narrower context (right column of a two-up .split layout) — 4 fixed
   columns squeeze too tight there regardless of viewport width, wrapping
   text onto many lines and producing uneven card heights. 2 columns fits
   the available space cleanly. */
.split__body .process-mini { grid-template-columns: repeat(2, 1fr); }

.process-mini li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 14px;
  padding: 18px 20px;
  font-family: var(--font-poppins), sans-serif;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.process-mini li strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }

/* ------------------------------------------------------------ 20 PROJECTS FILTER */
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 0 36px;
}
.projects-filter__btn {
  font-family: "Plus Jakarta Sans", var(--font-poppins), sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  background: #fff;
  border: 1px solid #e2e5ea;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
@media (max-width: 640px) {
  .projects-filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .projects-filter__btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.projects-filter__btn:hover {
  border-color: var(--gold);
}
.projects-filter__btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.projects-grid__empty {
  text-align: center;
  font-family: var(--font-poppins), sans-serif;
  color: #8a8f98;
  padding: 40px 0;
  display: none;
}
.projects-grid__empty.is-visible { display: block; }
.product-card.is-hidden { display: none; }

/* ------------------------------------------------------------ 21 INDUSTRIES (luxe cards) */
.industries-grid__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(11, 36, 71, 0.08);
  border-radius: 20px;
  padding: 32px 28px 30px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  transform: none;
}
.industries-grid__card:hover {
  transform: none;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.industries-grid__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #f5a623, #e8890c);
}
.industries-grid__num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: rgba(11, 36, 71, 0.05);
  line-height: 1;
  pointer-events: none;
}
.industries-grid__icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0b2a5b 0%, #16407f 100%);
  box-shadow: 0 10px 22px rgba(11, 36, 71, 0.28);
}
.industries-grid__icon svg { width: 24px; height: 24px; stroke: #f5c98a; }
.industries-grid__card .value-card__title {
  font-size: 1.12rem;
  letter-spacing: -0.2px;
  position: relative;
  padding-bottom: 12px;
}
.industries-grid__card .value-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f5a623, #e8890c);
}
.industries-grid__card .value-card__text { position: relative; }

/* ------------------------------------------------------------ 22 PROJECTS GRID (4/row) */
.product-grid--4col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .product-grid--4col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .product-grid--4col { grid-template-columns: repeat(2, 1fr); } }
.product-grid--4col .product-card__body { text-align: center; }

/* ------------------------------------------------------------ 23 SCOPE LIST (substation "What We Cover") */
.scope-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.scope-list__item { flex: 0 1 calc(25% - 14px); min-width: 220px; }
@media (max-width: 1100px) { .scope-list__item { flex-basis: calc(50% - 9px); } }
@media (max-width: 520px)  { .scope-list__item { min-width: 0; flex-basis: calc(50% - 9px); } }
.scope-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.scope-list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(145deg, #0b2a5b 0%, #16407f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(11, 36, 71, 0.24);
}
.scope-list__icon svg { width: 22px; height: 22px; stroke: #f5c98a; }
.scope-list__body { flex: 1; min-width: 0; }
.scope-list__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}
.scope-list__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  margin: 0 0 6px;
}
.scope-list__text {
  font-family: var(--font-poppins), sans-serif;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------------------ 24 COMPARE CARDS (decision-guide "which one for you" sections) */
.compare-card {
  position: relative;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 16px;
  padding: 26px 24px 22px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  overflow: hidden;
}
.compare-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #f5a623, #e8890c);
}
.compare-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #0b2a5b 0%, #16407f 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(11, 36, 71, 0.24);
}
.compare-card__title { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; margin: 0 0 8px; }
.compare-card__text { font-family: var(--font-poppins), sans-serif; color: #666; font-size: 0.92rem; line-height: 1.65; margin: 0; }
.compare-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #0b2a5b 0%, #16407f 100%);
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(11, 36, 71, 0.24);
}
.compare-card__icon svg { width: 18px; height: 18px; stroke: #f5c98a; }

/* ------------------------------------------------------------ 25 PRODUCT GRID (5/row, centered, solar-epc-services.php only) */
.product-grid--5col { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .product-grid--5col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .product-grid--5col { grid-template-columns: repeat(2, 1fr); } }
.product-grid--5col .product-card__img { height: auto; object-fit: cover; aspect-ratio: 4 / 3; background: #f4f5f7; }
.product-grid--5col .product-card__body { text-align: center; }

/* Industries grid: keep 2/row even on the smallest mobile widths */
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .industries-grid > * { min-width: 0; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .team-grid > * { min-width: 0; }
}

/* products.php: keep 2/row on mobile for the main product grid + "More Categories" grid */
@media (max-width: 560px) {
  .products-main-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .more-products-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* products.php main grid: pin "View Details" to the same baseline across cards */
.products-main-grid .product-card { display: flex; flex-direction: column; height: 100%; }
.products-main-grid .product-card__body { display: flex; flex-direction: column; flex: 1; }
.products-main-grid .product-card__text { flex: 1; min-height: 72px; }
.products-main-grid .svc-card__link { margin-top: 14px !important; }
@media (max-width: 560px) {
  .fit-guide-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .fit-guide-grid > * { min-width: 0; }
}
@media (max-width: 560px) { .amc-tiers-grid { grid-template-columns: 1fr !important; } }
.amc-tiers-grid .feature-list { grid-template-columns: 1fr; }

/* ------------------------------------------------------------ 26 LEGAL PAGES (privacy-policy.php) */
.legal-content h2 { margin-top: 36px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content ul.feature-list { margin-bottom: 16px; }
.legal-content code { background: #f4f5f7; padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.site-footer__bar-inner p a { color: inherit; text-decoration: underline; text-underline-offset: 3px; opacity: 0.85; }
.site-footer__bar-inner p a:hover { opacity: 1; color: var(--gold); }

/* ------------------------------------------------------------ 27 CLIENT LOGOS (clients.php) */
.clients-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; width: 100%; }
.clients-grid > * { min-width: 0; }
.clients-grid__card { display: flex; align-items: center; justify-content: center; padding: 28px 20px; background: #fff; border: 1px solid #eee; border-radius: 12px; }
.clients-grid__card img { max-width: 100%; height: auto; }

/* ------------------------------------------------------------ 28 PROOF WALL (projects.php — "Executed by Anureza Power Experts") */
/* Flexbox (not grid) so an incomplete last row centers horizontally instead
   of hugging the left edge — grid's implicit rows can't do that on their own. */
.proj-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; margin: 0 0 72px; border-radius: 18px; overflow: hidden; }
.proj-wall__tile {
  position: relative;
  flex: 0 0 calc((100% - 5 * 4px) / 6);
  max-width: calc((100% - 5 * 4px) / 6);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0b2a5b;
  cursor: zoom-in;
}
.proj-wall__tile:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.proj-wall__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(55%) brightness(0.92);
  transform: scale(1.01);
  transition: filter 0.6s var(--ease-soft, ease), transform 0.6s var(--ease-soft, ease);
}
.proj-wall__tile:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.08); }
.proj-wall__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6, 18, 41, 0.92) 0%, rgba(6, 18, 41, 0.15) 45%, rgba(6, 18, 41, 0) 65%);
  pointer-events: none;
}
.proj-wall__index {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}
.proj-wall__overlay {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
}
.proj-wall__rule {
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 8px;
  background: var(--gold);
  transition: width 0.4s var(--ease-soft, ease);
}
.proj-wall__tile:hover .proj-wall__rule { width: 38px; }
.proj-wall__cap {
  margin: 0;
  font-family: var(--font-poppins), sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 900px) {
  .proj-wall__tile { flex-basis: calc((100% - 2 * 4px) / 3); max-width: calc((100% - 2 * 4px) / 3); }
}
@media (max-width: 560px) {
  .proj-wall { gap: 3px; }
  .proj-wall__tile { flex-basis: calc((100% - 3px) / 2); max-width: calc((100% - 3px) / 2); }
  .proj-wall__cap { font-size: 0.74rem; }
}

/* Project videos (projects.php — "Our Work On Site") */
.proj-videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 36px; }
.proj-videos__item { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 44px rgba(6, 18, 41, 0.16); background: #000; }
.proj-videos__player { display: block; width: 100%; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
@media (max-width: 860px) { .proj-videos { grid-template-columns: 1fr; gap: 20px; } }

/* Coverage map — used inside the lightbox (see .proj-lightbox__map below),
   highlighting the state a project was executed in (images/india-states.svg). */
.proj-gallery-wrap { position: relative; }
.proj-map__svg { width: 100%; height: auto; aspect-ratio: 1 / 1; display: block; pointer-events: none; }
.proj-map__label {
  margin: 6px 0 0;
  text-align: center;
  font-family: var(--font-poppins), sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy, #0e1726);
}

/* Lightbox — full-size view when a proof-wall tile is clicked/tapped.
   z-index must clear the fixed floating widgets (WhatsApp/connect-float use
   9998-9999) or their click targets sit on top of the lightbox controls. */
.proj-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: rgba(6, 18, 41, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.proj-lightbox.is-open { opacity: 1; visibility: visible; }
.proj-lightbox__body {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  max-height: 88vh;
  flex-shrink: 1;
}
.proj-lightbox__frame { margin: 0; flex: 1 1 auto; min-width: 0; max-height: 88vh; text-align: center; }
.proj-lightbox__frame img { display: block; max-width: 100%; max-height: 76vh; margin: 0 auto; }
.proj-lightbox__frame figcaption { margin-top: 16px; color: #fff; font-family: var(--font-poppins), sans-serif; font-size: 0.95rem; }
/* Paired mode (image + map shown together): force BOTH panels to the exact
   same width and height, so the square map and the (usually wider-than-tall)
   photo occupy identical boxes — image uses object-fit:contain to fit
   without distortion instead of dictating the box size from its own aspect
   ratio. Plain CSS, no JS measuring needed. */
.proj-lightbox__body.has-map {
  align-items: stretch;
}
.proj-lightbox__body.has-map .proj-lightbox__frame,
.proj-lightbox__body.has-map .proj-lightbox__map {
  flex: 0 0 46%;
  width: 46%;
  height: min(70vh, 620px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.proj-lightbox__body.has-map .proj-lightbox__frame img {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.proj-lightbox__body.has-map .proj-lightbox__frame figcaption { flex: 0 0 auto; }
.proj-lightbox__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  padding: 14px 14px 10px;
  box-sizing: border-box;
}
.proj-lightbox__map .proj-map__svg { flex: 1 1 auto; min-height: 0; width: 100%; height: auto; object-fit: contain; }
.proj-lightbox__map .proj-map__label { flex: 0 0 auto; }
@media (max-width: 860px) {
  .proj-lightbox__body { flex-direction: column; max-height: 92vh; overflow-y: auto; width: 92vw; }
  .proj-lightbox__frame img { max-height: 46vh; }
  .proj-lightbox__body.has-map .proj-lightbox__frame,
  .proj-lightbox__body.has-map .proj-lightbox__map { width: 100%; height: 34vh; }
}
.proj-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(20, 30, 55, 0.65);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}
.proj-lightbox__nav svg { width: 18px; height: 18px; }
.proj-lightbox__nav:hover { background: rgba(20, 30, 55, 0.9); }
.proj-lightbox__nav--prev { left: 20px; }
.proj-lightbox__nav--next { right: 20px; }
@media (max-width: 640px) {
  .proj-lightbox__nav { width: 32px; height: 32px; }
  .proj-lightbox__nav svg { width: 15px; height: 15px; }
  .proj-lightbox__nav--prev { left: 8px; }
  .proj-lightbox__nav--next { right: 8px; }
}
.proj-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(20, 30, 55, 0.65);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.proj-lightbox__close svg { width: 17px; height: 17px; }
.proj-lightbox__close:hover { background: rgba(20, 30, 55, 0.9); }

.proj-table-wrap {
  border-radius: 18px;
  overflow: hidden;
  margin-top: 8px;
  background: #fff;
  border: 1px solid #eceef1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.proj-table-banner {
  position: relative;
  margin: 0;
  padding: 18px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #16407f 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.proj-table-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.proj-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.proj-table { width: 100%; min-width: 760px; border-collapse: collapse; font-family: var(--font-poppins), sans-serif; font-size: 0.85rem; background: #fff; }
.proj-table th {
  background: #f4f6fa;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid #eceef1;
  white-space: nowrap;
}
.proj-table td { padding: 12px 16px; border-bottom: 1px solid #eef0f3; color: #4a4a4a; vertical-align: top; transition: background 0.2s var(--ease-soft, ease); }
.proj-table tr:last-child td { border-bottom: none; }
.proj-table tr:nth-child(even) td { background: #fafbfc; }
.proj-table tbody tr:hover td { background: #fff3e0; }
.proj-table__name { color: var(--navy); font-weight: 600; }
.proj-table__cap { color: var(--blue); font-weight: 600; white-space: nowrap; }

/* ------------------------------------------------------------ 29 FLOATING WHATSAPP BUTTON (all pages, all screen sizes) */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease-soft, ease), box-shadow 0.25s var(--ease-soft, ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 560px) { .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; } .wa-float svg { width: 25px; height: 25px; } }

/* ------------------------------------------------------------ 30 FLOATING "LET'S CONNECT" (shown once #ahHeader scrolls out of view) */
.connect-float {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9997;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 10px;
  border-radius: 10px 0 0 10px;
  opacity: 0;
  transform: translateY(-50%) translateX(16px);
  pointer-events: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: opacity 0.3s var(--ease-soft, ease), transform 0.3s var(--ease-soft, ease);
}
body.show-connect-float .connect-float {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.connect-float:hover { transform: translateY(-50%) translateX(-4px); }
@media (max-width: 560px) { .connect-float { top: auto; bottom: 90px; } }
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .clients-grid__card { padding: 18px 12px; } }

/* Contact page "What happens next" steps — 1 per row on mobile only */
@media (max-width: 560px) { .contact-steps .value-grid { grid-template-columns: 1fr !important; } }

/* Street lighting "What Decides Pole Count & Spacing" — 1 per row on mobile only */
@media (max-width: 560px) { .plan-basics-grid { grid-template-columns: 1fr !important; } }

/* Career page "Areas We're Hiring In" — 2 per row on mobile only */
@media (max-width: 560px) { #open-roles .value-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* Electrical wiring "Signs Your Property Needs a Rewire" — 1 per row on mobile only */
@media (max-width: 560px) { .rewire-signs-grid { grid-template-columns: 1fr !important; } }

/* Wind consultancy "Is Wind Right for Your Site?" — 1 per row on mobile only */
@media (max-width: 560px) { .wind-fit-grid { grid-template-columns: 1fr !important; } }

/* Tighter card padding/type on mobile only — desktop keeps original sizing */
@media (max-width: 640px) {
  .value-card { padding: 10px 10px; }
  .compare-card { padding: 10px 15px 10px; }
  .compare-card__title { font-size: 1rem; }
  .compare-card__text { font-size: 0.87rem; }
  .scope-list__item { padding: 11px 12px; }
  .faq__q { font-size: 1rem; }
}
