:root {
  --red: #C8412A;
  --red-light: #E8503A;
  --red-pale: #FDF0EE;
  --navy: #0E1F3D;
  --charcoal: #1C1C1C;
  --warm-white: #FAF8F5;
  --off-white: #F2EFE9;
  --mid-gray: #8A8880;
  --border: rgba(0,0,0,0.09);
  --font-display: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* Keep pages snappy: no scroll-reveal hiding/delay */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; transition: none; }

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
  color: rgba(255,255,255,0.65);
  margin-top: 0;
}
.icon svg { width: 100%; height: 100%; display: block; }

/* Icon standards: consistent stroke rendering across contexts */
.icon svg,
.social-link svg,
.svc-icon svg,
.split-icon svg,
.team-icon svg,
.whatsapp-float svg,
.back-to-top svg,
.lightbox-close svg {
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.footer-credit {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-credit:hover { color: #fff; }

/* ── Utility Bar ─────────────────────────────────────────────────── */
.util-bar {
  position: relative;
  z-index: 10;
  height: 38px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.util-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.util-bar-address,
.util-bar-phones {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 11.5px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.util-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
}
.util-bar-phone-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}
.util-bar-phone-stack a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: color 0.18s;
}
.util-bar-phone-stack a:hover { color: #fff; }

/* NAV */
nav {
  position: relative;
  z-index: 9;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo {
  width: 72px;
  height: 54px;
  object-fit: contain;
  display: block;
  padding: 6px 8px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(14,31,61,0.96), rgba(200,65,42,0.9));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 8px 18px rgba(14,31,61,0.22);
}
.nav-logo-text { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--charcoal); line-height: 1.2; }
.nav-logo-sub { font-size: 10px; font-weight: 400; color: var(--mid-gray); letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--charcoal); text-decoration: none; letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(200,65,42,0.12);
  border: 1px solid rgba(200,65,42,0.35);
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover {
  background: rgba(200,65,42,0.18);
  border-color: rgba(200,65,42,0.55);
  color: #fff;
  box-shadow: 0 16px 36px rgba(200,65,42,0.18);
  transform: translateY(-1px);
}
.nav-cta:active {
  transform: translateY(0);
  background: rgba(200,65,42,0.26);
  border-color: rgba(200,65,42,0.65);
  color: #fff;
}
.nav-cta.nav-active {
  background: rgba(200,65,42,0.30);
  border-color: rgba(200,65,42,0.70);
  color: #fff;
  box-shadow: 0 18px 44px rgba(200,65,42,0.18);
}
.nav-cta:focus-visible {
  outline: 3px solid rgba(200,65,42,0.35);
  outline-offset: 3px;
  color: #fff;
}
.nav-active { color: var(--red) !important; font-weight: 600; }

/* Mobile nav (implemented using existing tokens/sizes) */
.nav-hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-hamburger-lines {
  width: 18px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(28,28,28,0.85);
  border-radius: 2px;
}
.nav-mobile {
  position: relative;
  z-index: 8;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.22s ease, opacity 0.18s ease;
}
.nav-mobile-inner {
  padding: 14px 5% 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-mobile a {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta { display: inline-flex; width: max-content; margin-top: 4px; border-bottom: none; padding: 9px 22px; }
.nav-mobile.is-open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
}

main { padding-top: 0; }

/* Hide utility bar on mobile — too cramped */
@media (max-width: 767px) {
  .util-bar { display: none; }
  main { padding-top: 0; }
}

/* SHARED BUTTONS */
.btn-red {
  font-size: 14px; font-weight: 600; padding: 13px 30px;
  background: var(--red); color: #fff; border-radius: 5px;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-red:hover { background: var(--red-light); transform: translateY(-1px); }
.btn-red:active {
  background: var(--red-light);
  transform: translateY(1px);
  color: #fff;
  opacity: 1;
}
.btn-red:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
  color: #fff;
}
.btn-outline {
  font-size: 14px; font-weight: 500; padding: 13px 30px;
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 5px;
  text-decoration: none; letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before,
.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
}
.section-body-tight { max-width: 440px; }
.arrow-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--red);
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.01em;
}
.arrow-link span { transition: transform 0.2s ease; }
.arrow-link:hover span { transform: translateX(4px); }

/* PAGE HERO */
.page-hero {
  padding: 54px 5% 52px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { position: relative; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 35%, rgba(200,65,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 60%, rgba(14,31,61,0.14) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.0) 100%);
  opacity: 1;
}
.page-hero-inner { max-width: 920px; margin: 0 auto; }
.page-hero-dark {
  background: rgba(14, 31, 61, 0.82);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.page-hero-dark .page-hero-title { color: #fff; }
.page-hero-dark .page-hero-eyebrow { color: #e8a090; }
.page-hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 35%, rgba(255,255,255,0.00) 60%),
    radial-gradient(ellipse 60% 70% at 78% 40%, rgba(200,65,42,0.16) 0%, transparent 55%);
  opacity: 1;
}
.page-hero-light { background: #fff; }
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 720px;
  color: rgba(28,28,28,0.68);
}
.page-hero-dark .page-hero-sub { color: rgba(255,255,255,0.62); }

/* SESSION 2 — HERO */
.hero {
  height: 86vh;
  min-height: 600px;
  display: block;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #1a0a06 0%, #2d1208 40%, #0E1F3D 100%);
}
.hero-bg-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(14,12,10,0.22) 0%, rgba(14,12,10,0.18) 44%, rgba(14,12,10,0.08) 72%, rgba(14,12,10,0.14) 100%),
    radial-gradient(ellipse 70% 55% at 20% 45%, rgba(0,0,0,0.06) 0%, transparent 65%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 75% 40%, rgba(40,20,10,0.12) 0%, transparent 70%);
  opacity: 0.75;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,12,10,0.18) 45%, rgba(14,12,10,0.08) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 40px;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--red);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-h1 em { color: var(--red-light); font-style: italic; }
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.hero-points span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.social-link svg { width: 18px; height: 18px; display: block; }
.social-link:hover { transform: translateY(-2px); background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); }

/* Persistent social rail (rest of page) */
.social-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 120;
}
.social-rail .social-link {
  background: rgba(17,17,17,0.35);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .social-rail { display: none; }
}

/* Transparent ("colorless") header variant, used on services */
.header-transparent .util-bar,
.header-transparent nav {
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header-transparent .nav-logo-text,
.header-transparent .nav-logo-sub,
.header-transparent .nav-links a {
  color: rgba(255,255,255,0.88);
}
.header-transparent .nav-links a:hover { color: #fff; }
.header-transparent .nav-active { color: #fff !important; }
.header-transparent .nav-hamburger { background: rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.22); }
.header-transparent .nav-hamburger-lines span { background: rgba(255,255,255,0.85); }
.header-transparent .nav-cta {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
}
.header-transparent .nav-cta:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.32);
  color: #fff;
}

/* Prevent "white band" behind transparent header on services */
.page-services.header-transparent main { padding-top: 0; }
.page-services.header-transparent .services-showcase {
  padding-top: calc(46px + 106px);
}

/* SERVICES PAGE — SHOWCASE GRID (inspired by Effect 2 hover) */
.services-showcase {
  position: relative;
  padding: 46px 5% 18px;
  overflow: visible;
}
.services-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-showcase-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.02);
}
.services-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 18% 18%, rgba(0,0,0,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 82% 48%, rgba(0,0,0,0.38) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(9,9,9,0.60) 0%, rgba(9,9,9,0.40) 42%, rgba(9,9,9,0.62) 100%);
}
.services-showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}
.services-showcase-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 18px;
}
.services-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}
.services-showcase-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.70);
}
/* 3-up slow carousel (pauses on hover) */
.services-carousel {
  --svc-gap: 20px;
  /* Always show 3 full portrait cards */
  --svc-card-w: clamp(220px, calc((100% - (var(--svc-gap) * 2)) / 3), 360px);
  /* Phone-like tall cards while keeping 3-up */
  --svc-card-h: calc(var(--svc-card-w) * (16 / 9));
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  /* full-viewport carousel so cards can peek "off screen" */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 14px 6vw 0;
  min-height: calc(var(--svc-card-h) + 10px);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.services-carousel::-webkit-scrollbar { display: none; }
.services-carousel::before,
.services-carousel::after {
  content: none;
}
.services-carousel-marquee {
  display: flex;
  width: max-content;
  gap: var(--svc-gap);
  animation: none;
  will-change: transform;
  align-items: stretch;
  flex-wrap: nowrap;
}
.services-carousel:hover .services-carousel-marquee { animation: none; }

.services-carousel-track {
  display: flex;
  gap: var(--svc-gap);
  width: max-content;
  align-items: stretch;
  flex-wrap: nowrap;
}

.svc-showcase-card {
  display: block;
  text-decoration: none;
  border-radius: 30px;
  background: transparent;
  border: none;
  box-shadow:
    0 26px 70px rgba(0,0,0,0.34),
    0 10px 26px rgba(0,0,0,0.22);
  overflow: hidden;
  position: relative;
  flex: 0 0 var(--svc-card-w);
  /* Portrait card (taller than wide) */
  aspect-ratio: 9 / 16;
  height: var(--svc-card-h);
  min-width: var(--svc-card-w);
  flex-shrink: 0;
  scroll-snap-align: start;
  transform: translateZ(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.svc-showcase-card:focus-visible {
  outline: 3px solid rgba(232, 80, 58, 0.55);
  outline-offset: 3px;
}
.svc-showcase-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.svc-showcase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-showcase-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 52%, rgba(0,0,0,0.62) 100%);
  pointer-events: none;
}
.svc-showcase-title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 15px;
  text-shadow: 0 10px 22px rgba(0,0,0,0.45);
}

.svc-showcase-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  padding: 14px 16px 14px;
  display: grid;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  /* transparent overlay like Effect 2 */
  background: rgba(23, 23, 23, 0.66);
  color: rgba(255,255,255,0.90);
}
.svc-showcase-content p {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
}
.svc-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.26);
}
.svc-showcase-card:hover .svc-showcase-content {
  transform: translateY(0);
}
.svc-showcase-card:hover .svc-showcase-media img {
  transform: translateY(-30%) scale(1.02);
}

@media (max-width: 1024px) {
  .services-carousel { --svc-card-w: calc((100% - var(--svc-gap)) / 2); }
}
@media (max-width: 560px) {
  .services-showcase { padding: 44px 5% 14px; }
  .services-carousel { --svc-card-w: 84vw; }
  .svc-showcase-card { aspect-ratio: 9 / 16; }
}


.hero-seals {
  position: absolute;
  top: 104px;
  right: 6%;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 3;
  width: auto;
}
.hero-trust-stamp {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 0 12px auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.25));
  opacity: 0.98;
}
.hero-trust-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 16px;
  white-space: normal;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 850;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-cert {
  font-size: 12px;
  font-weight: 850;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.trust-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.trust-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-seals {
    position: static;
    margin-top: 22px;
    align-self: flex-start;
  }
  .hero-trust-stamp {
    width: 132px;
    margin: 0 0 10px 0;
  }
  .hero-trust-strip {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    padding: 12px 14px;
  }
  .hero-trust-item { min-width: max-content; }
  .trust-divider {
    width: 1px;
    height: 26px;
    background: rgba(255,255,255,0.16);
  }
}

/* Featured work copy right */
.featured-copy { grid-column: 2; justify-self: end; max-width: 520px; }

/* Slightly larger selected client logos */
.logo-card--xl img { max-width: 150px; max-height: 50px; opacity: 0.70; }
.logo-card--speke img {
  max-width: 200px !important;
  max-height: 62px !important;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
}

/* Contact map should fit container */
.map-card iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* About ISO seals (match hero size) */
.cert-badge {
  min-width: 64px;
  height: auto;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}
.cert-badge::before { display: none; }
.cert-badge::after { display: none; }

.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Trusted logos */
.trusted-logos {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.clients-eyebrow {
  text-align: center;
  padding: 18px 5% 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28,28,28,0.55);
}
.clients-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--charcoal);
  margin: 10px auto 10px;
  max-width: 920px;
  padding: 0 5%;
}
.clients-sub {
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
  color: rgba(28,28,28,0.62);
  margin: 0 auto 18px;
  max-width: 760px;
  padding: 0 5%;
}
.logo-marquee-wrap {
  padding: 0 0 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.logo-marquee-track {
  width: max-content;
  display: flex;
  gap: 12px;
  align-items: center;
  animation: logoMarquee 30s linear infinite;
  padding: 0 5%;
}
.logo-marquee-wrap:hover .logo-marquee-track { animation-play-state: paused; }
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-card {
  min-height: 118px;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 58%, rgba(248,248,248,0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px 12px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(800px) translateY(0) rotateX(0deg) rotateY(0deg);
  transition: transform 0.26s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.logo-card::before {
  content: '';
  position: absolute;
  inset: -30% 60% -30% -80%;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.58) 45%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  pointer-events: none;
}
.logo-card img {
  width: 100%;
  max-width: 130px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.06);
  opacity: 0.62;
  transform: translateZ(0) scale(1);
  transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
}
.logo-card:hover img {
  filter: grayscale(0) saturate(1.08) contrast(1.08);
  opacity: 1;
  transform: scale(1.05);
}
.logo-card:hover {
  transform: perspective(800px) translateY(-4px) rotateX(2deg);
  border-color: rgba(200,65,42,0.28);
  box-shadow: 0 14px 28px rgba(14,31,61,0.12), 0 6px 14px rgba(200,65,42,0.12);
}
.logo-card:nth-child(odd):hover {
  transform: perspective(800px) translateY(-4px) rotateX(2deg) rotateY(-2deg);
}
.logo-card:nth-child(even):hover {
  transform: perspective(800px) translateY(-4px) rotateX(2deg) rotateY(2deg);
}
.logo-card:hover::before {
  transform: translateX(180%);
}
.logo-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(28,28,28,0.72);
  text-align: center;
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}
.logo-card:hover .logo-name {
  color: rgba(14,31,61,0.86);
  transform: translateY(-1px);
}

/* Staggered micro-delays for richer interaction rhythm */
.logo-card:nth-child(6n + 1) { transition-delay: 0ms; }
.logo-card:nth-child(6n + 2) { transition-delay: 24ms; }
.logo-card:nth-child(6n + 3) { transition-delay: 48ms; }
.logo-card:nth-child(6n + 4) { transition-delay: 72ms; }
.logo-card:nth-child(6n + 5) { transition-delay: 96ms; }
.logo-card:nth-child(6n + 6) { transition-delay: 120ms; }

.logo-card:nth-child(6n + 1) img,
.logo-card:nth-child(6n + 1) .logo-name,
.logo-card:nth-child(6n + 1)::before { transition-delay: 0ms; }
.logo-card:nth-child(6n + 2) img,
.logo-card:nth-child(6n + 2) .logo-name,
.logo-card:nth-child(6n + 2)::before { transition-delay: 24ms; }
.logo-card:nth-child(6n + 3) img,
.logo-card:nth-child(6n + 3) .logo-name,
.logo-card:nth-child(6n + 3)::before { transition-delay: 48ms; }
.logo-card:nth-child(6n + 4) img,
.logo-card:nth-child(6n + 4) .logo-name,
.logo-card:nth-child(6n + 4)::before { transition-delay: 72ms; }
.logo-card:nth-child(6n + 5) img,
.logo-card:nth-child(6n + 5) .logo-name,
.logo-card:nth-child(6n + 5)::before { transition-delay: 96ms; }
.logo-card:nth-child(6n + 6) img,
.logo-card:nth-child(6n + 6) .logo-name,
.logo-card:nth-child(6n + 6)::before { transition-delay: 120ms; }

/* SESSION 2 — STATS BAR */
.stats-section {
  background: linear-gradient(90deg, var(--navy) 0%, #18345e 55%, var(--red) 115%);
  padding: 48px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-plus { color: rgba(255,255,255,0.65); font-size: 36px; }
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* SESSION 4 — SERVICES SPLITS */
.service-splits {
  padding: 72px 5% 84px;
  background: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.split:last-child { border-bottom: none; }
.split-image {
  border-radius: 10px;
  min-height: 320px;
  background: linear-gradient(145deg, #e8e0d4, #d0c8bc);
  border: 1px solid var(--border);
  overflow: hidden;
}

.split-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.split-text h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.split-text p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
  margin-bottom: 14px;
}
.split-text ul {
  padding-left: 18px;
  color: rgba(28,28,28,0.72);
  line-height: 1.8;
  font-size: 13px;
}
.split-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(200,65,42,0.18), rgba(200,65,42,0.08)),
    #fff;
  border: 1px solid rgba(200,65,42,0.26);
  box-shadow: 0 8px 18px rgba(200,65,42,0.12);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.split-icon svg { width: 24px; height: 24px; display: block; }
.split:hover .split-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(200,65,42,0.18);
}
.section-reverse .split-image { order: 2; }
.section-reverse .split-text { order: 1; }

/* Service images now use real <img> tags on services.html for reliability. */

/* CTA band */
.cta-band {
  background: var(--red);
  padding: 54px 5%;
}
.cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* ABOUT — MISSION/VISION */
.mv-section {
  padding: 72px 5%;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mv-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.mv-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
}

/* BLOG */
.blog-list { padding: 72px 5% 86px; background: var(--off-white); }
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  padding: 16px 16px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--charcoal);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.blog-thumb {
  position: relative;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #e8e2d8, #d4ccc4);
}
.blog-thumb-1 { background: linear-gradient(135deg, #e8e2d8, #d4ccc4); }
.blog-thumb-2 { background: linear-gradient(135deg, #fef0ee, #e8d0c8); }
.blog-thumb-3 { background: linear-gradient(135deg, #eef0fa, #d4dce8); }
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-meta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(28,28,28,0.55);
  margin-bottom: 8px;
}
.blog-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(28,28,28,0.7);
}

/* BLOG ARTICLE */
.article-shell { padding: 64px 5% 86px; background: #fff; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.back-link-bottom { margin-top: 18px; }
.article-hero {
  height: 300px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e8e2d8, #d4ccc4);
  margin: 18px 0 22px;
}
.article-head { max-width: 880px; margin: 0 auto 22px; }
.article-tag-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.article-tag {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-date { font-size: 12px; color: rgba(28,28,28,0.55); font-weight: 600; }
.article-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.article-author { font-size: 13px; color: rgba(28,28,28,0.6); font-weight: 600; }
.prose { max-width: 880px; margin: 0 auto; }
.prose p { font-size: 15px; line-height: 1.9; color: rgba(28,28,28,0.78); margin-bottom: 14px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 22px 0 10px;
  letter-spacing: -0.01em;
}
.related { max-width: 1100px; margin: 44px auto 0; }
.related-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* CONTACT */
.contact-shell { padding: 72px 5% 86px; background: var(--off-white); }
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; color: rgba(28,28,28,0.7); }
.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  font-size: 13px;
}
.form-grid textarea { resize: vertical; }
.form-full { grid-column: 1 / -1; }
.form-success { color: var(--red); font-weight: 700; margin-top: 12px; font-size: 13px; }
.form-error { color: #c00; font-weight: 600; margin-top: 12px; font-size: 13px; }
.contact-side { display: grid; gap: 20px; }
.contact-detail { margin-top: 10px; font-size: 13px; color: rgba(28,28,28,0.72); line-height: 1.7; }
.contact-label { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(28,28,28,0.5); margin-bottom: 4px; }
.contact-detail a { color: var(--red); text-decoration: none; font-weight: 700; }
.contact-detail a:hover { color: var(--red-light); }
.sep { padding: 0 6px; color: rgba(28,28,28,0.4); }
.map-card { padding: 0; overflow: hidden; }
.map-placeholder {
  height: 300px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid-gray);
}

/* SESSION 3 — VIDEO HERO BAND */
.video-hero-band {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(155deg, #2d1208, #0E1F3D);
}
.vhb-video-wrap {
  position: absolute;
  inset: 0;
}
.vhb-video-placeholder {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.0) 55%),
    linear-gradient(155deg, rgba(45,18,8,0.55), rgba(14,31,61,0.85));
}
.vhb-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vhb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,6,0.82) 45%, rgba(10,8,6,0.35) 100%);
}
.vhb-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
}
.vhb-content .eyebrow { color: var(--red-light); }
.vhb-content .eyebrow::before { background: var(--red-light); }
.vhb-content h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}

/* SESSION 3 — ABOUT SPLIT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--warm-white);
}
.about-image {
  position: relative;
  background: linear-gradient(145deg, #e8e0d4, #d0c8bc);
  overflow: hidden;
}

.about-img,
.about-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.about-img.is-loaded,
.about-video.is-loaded {
  opacity: 1;
}
.about-image::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}
.about-copy {
  padding: 64px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checklist {
  list-style: none;
  margin-top: 22px;
  border-top: 1px solid var(--border);
}
.checklist li {
  position: relative;
  padding: 14px 0 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: rgba(28,28,28,0.75);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--red);
}

/* SESSION 3 — SERVICES GRID */
.services-section {
  background: var(--off-white);
  padding: 88px 5%;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(200,65,42,0.72));
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card::before,
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.svc-card::before {
  background: var(--svc-grad, linear-gradient(135deg, rgba(14,31,61,0.92), rgba(200,65,42,0.72)));
  opacity: 1;
}
.svc-card::after {
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.22) 58%, rgba(0,0,0,0.10) 100%),
    none;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
}
.svc-card > * { position: relative; z-index: 1; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.svc-card:hover::before { opacity: 0; transition-duration: 0.08s; }
.svc-card:hover::after { opacity: 1; transform: scale(1.12); transition-duration: 0.12s; }

/* Only apply the image layer on hover so it doesn't block initial load */
.svc-card:hover::after {
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.22) 58%, rgba(0,0,0,0.10) 100%),
    var(--svc-img, none);
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 58%, rgba(255,255,255,0.05) 100%),
    rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 10px 22px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.22);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover .svc-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25), inset 0 1px 1px rgba(255,255,255,0.24);
}
.svc-icon svg { width: 26px; height: 26px; display: block; }
.svc-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #fff;
}
.svc-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

/* Vibrant service-specific hues + image previews */
.svc-janitorial {
  --svc-grad: linear-gradient(135deg, rgba(200,65,42,0.92), rgba(14,31,61,0.88));
  --svc-img: url("https://ace-media.zyntel.net/media/service-janitorial.webp");
}
.svc-grounds {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(24,94,72,0.78));
  --svc-img: url("https://ace-media.zyntel.net/media/service-grounds.webp");
}
.svc-waste {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(67,115,173,0.78));
  --svc-img: url("https://ace-media.zyntel.net/media/service-waste.webp");
}
.svc-fumigation {
  --svc-grad: linear-gradient(135deg, rgba(200,65,42,0.86), rgba(14,31,61,0.92));
  --svc-img: url("https://ace-media.zyntel.net/media/service-fumigation.webp");
}
.svc-laundry {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(200,65,42,0.72));
  --svc-img: url("https://ace-media.zyntel.net/media/service-laundry.webp");
}
.svc-residential {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(200,65,42,0.72));
  --svc-img: url("https://ace-media.zyntel.net/media/clean-residential.webp");
}
.svc-facade {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.88), rgba(67,115,173,0.82));
  --svc-img: url("https://ace-media.zyntel.net/media/service-facade.webp");
}
.svc-landscaping {
  --svc-grad: linear-gradient(135deg, rgba(24,94,72,0.90), rgba(14,31,61,0.88));
  --svc-img: url("https://ace-media.zyntel.net/media/landscaping.webp");
}
.svc-maintenance {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(123,82,168,0.78));
  --svc-img: url("https://ace-media.zyntel.net/media/mentainance.webp");
}

/* Featured media */
.featured-media {
  background: #0b162c;
  padding: 110px 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.featured-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.featured-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.featured-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(11,22,44,0.85) 0%, rgba(11,22,44,0.60) 52%, rgba(11,22,44,0.18) 100%),
    radial-gradient(ellipse 75% 60% at 75% 45%, rgba(200,65,42,0.18) 0%, transparent 60%);
}
.featured-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.featured-copy .btn-red { margin-top: 14px; }
.featured-copy .section-title { color: #fff; }
.featured-copy .section-body { color: rgba(255,255,255,0.75); }
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 62%, rgba(0,0,0,0.06) 100%);
}

/* SESSION 3 — WHY ACE */
.why-ace {
  background: #fff;
  padding: 76px 5%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}
.why-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: rgba(200,65,42,0.15);
  margin-bottom: 12px;
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: rgba(28,28,28,0.7); line-height: 1.7; }

/* SESSION 3 — TEAM */
.team-section {
  background: var(--off-white);
  padding: 88px 5%;
}
.team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.08); }
.team-photo {
  height: 190px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
}
.team-photo-1 { background: linear-gradient(145deg, var(--off-white), #d8d0c4); }
.team-photo-2 { background: linear-gradient(145deg, #e8d8f0, #d4c0e0); }
.team-photo-3 { background: linear-gradient(145deg, #daecd6, #b8d4c0); }
.team-initials {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.team-initials-purple { background: #7B52A8; }
.team-icon {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.85), rgba(255,255,255,0.38));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,28,28,0.7);
}
.team-icon svg { width: 26px; height: 26px; display: block; }
.team-card:hover .team-icon { transform: translateY(-2px); }
.team-info { padding: 22px 22px 26px; }
.team-name { font-weight: 700; margin-bottom: 6px; }
.team-role { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.team-info p { font-size: 13px; line-height: 1.7; color: rgba(28,28,28,0.72); }

/* SESSION 3 — HOUSEHELPERS TEASER */
.hh-teaser {
  background: var(--navy);
  padding: 80px 5%;
}
.hh-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hh-pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(200,65,42,0.15);
  border: 1px solid rgba(200,65,42,0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.hh-inner h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hh-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 22px;
  max-width: 640px;
}
.hh-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hh-tags span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.hh-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hh-form input[type="email"] {
  width: min(420px, 100%);
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}
.hh-form input::placeholder { color: rgba(255,255,255,0.55); }
.hh-form button {
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.hh-form button:hover { background: var(--red-light); }
.form-note {
  margin-top: 12px;
  min-height: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* Before/after gallery */
.before-after {
  background: var(--charcoal);
  padding: 88px 5%;
}
.before-after .gallery-eyebrow,
.before-after .gallery-title {
  display: block;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8a090;
  margin-bottom: 10px;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ba-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ba-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px;
}
.ba-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ba-image-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}
.ba-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ba-image-wrap figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.64);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 5px 9px;
}

/* Testimonials */
.testimonials {
  padding: 82px 5%;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
  padding: 28px;
}
.testimonial-quote {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(28,28,28,0.78);
  margin-bottom: 14px;
}
.testimonial-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px 5%;
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  width: min(980px, 100%);
  position: relative;
}
.lightbox video {
  width: 100%;
  max-height: 82vh;
  height: auto;
  border-radius: 10px;
  background: #000;
  object-fit: contain;
}
.lightbox video.crop-top { object-fit: cover; object-position: top; }

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(14,31,61,0.92);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  cursor: pointer;
}
.back-to-top.is-visible { display: inline-flex; }
.back-to-top:hover { background: rgba(14,31,61,0.98); transform: translateY(-1px); }
.back-to-top svg { width: 18px; height: 18px; display: block; }

.facility-band {
  background: var(--warm-white);
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}
.facility-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.facility-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.facility-list li {
  font-size: 14px;
  color: rgba(28,28,28,0.78);
  padding-left: 20px;
  position: relative;
}
.facility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.facility-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .facility-band-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ABOUT — Mission/Vision split */
.mv-split { background: #fff; padding: 90px 5%; border-bottom: 1px solid var(--border); }
.mv-split-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.mv-block { padding: 52px 48px; background: #fff; }
.mv-block-accent {
  background:
    radial-gradient(ellipse 70% 70% at 20% 25%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(ellipse 70% 70% at 80% 70%, rgba(200,65,42,0.18), transparent 55%),
    rgba(14, 31, 61, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
}
.mv-block-accent h2 {
  color: #ffffff !important;
}
.mv-block-accent p {
  color: rgba(255,255,255,0.78) !important;
}
.mv-block-accent .mv-icon {
  color: var(--red-light);
}
.mv-icon { width: 40px; height: 40px; color: var(--red); margin-bottom: 20px; }
.mv-icon svg { width: 100%; height: 100%; }
.mv-block h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--charcoal); }
.mv-block p { font-size: 15px; line-height: 1.8; color: rgba(28,28,28,0.72); }
@media (max-width: 768px) { .mv-split-inner { grid-template-columns: 1fr; } }

/* ABOUT — Accreditation band */
.accreditation-band { background: var(--charcoal); padding: 90px 5%; }
.accreditation-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.accreditation-copy {
  position: relative;
  z-index: 0;
}
.accreditation-copy::before {
  content: '';
  position: absolute;
  inset: -18px -18px -18px -18px;
  background-image: url("../trust-stamp.webp");
  background-repeat: no-repeat;
  background-position: right 18px top -6px;
  background-size: 440px auto;
  opacity: 0.16;
  pointer-events: none;
  filter: saturate(1) contrast(1.02);
  z-index: -1;
}
.accreditation-copy > * { position: relative; z-index: 1; }
.accreditation-certs { display: flex; flex-direction: column; gap: 16px; }
.cert-card { display: flex; gap: 20px; align-items: flex-start; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 8px; padding: 22px 24px; }
.cert-badge {
  min-width: 58px;
  height: 58px;
  border-radius: 999px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
  color: rgba(55, 27, 0, 0.92);
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.32), rgba(255,255,255,0.06) 58%, rgba(0,0,0,0.0) 59%),
    radial-gradient(circle at 50% 50%, rgba(255, 210, 120, 0.65), rgba(160, 100, 22, 0.25));
  border: 1px solid rgba(255, 212, 130, 0.65);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.cert-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 2px dashed rgba(85, 45, 0, 0.35);
}
.cert-badge::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(60, 30, 0, 0.58);
}
.cert-info strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cert-info p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.62); margin: 0; }
.cert-meta {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  margin-top: 6px;
  font-style: italic;
}
@media (max-width: 768px) { .accreditation-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ABOUT — Stats strip */
.stats-strip { background: var(--red); padding: 44px 5%; }
.stats-strip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strip-stat { border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; padding: 18px 18px; background: rgba(255,255,255,0.08); }
.strip-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 6px; }
.strip-label { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.5; }
@media (max-width: 768px) { .stats-strip-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-strip-inner { grid-template-columns: 1fr; } }

/* ABOUT — Values band */
.values-band { background: #fff; padding: 90px 5%; border-bottom: 1px solid var(--border); }
.values-inner { max-width: 1100px; margin: 0 auto; }

/* CAREERS */
.openings-section { padding: 80px 5%; background: #fff; }
.openings-inner { max-width: 800px; margin: 0 auto; }
.openings-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.opening-card { border: 1px solid var(--border); border-radius: 8px; padding: 28px 30px; background: #fff; transition: box-shadow 0.2s; }
.opening-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.opening-meta { display: flex; gap: 14px; margin-bottom: 10px; }
.opening-dept, .opening-location { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(28,28,28,0.5); }
.opening-dept { color: var(--red); }
.opening-title { font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.opening-desc { font-size: 14px; line-height: 1.75; color: rgba(28,28,28,0.72); margin-bottom: 20px; }
.careers-cta { margin-top: 48px; padding: 28px 30px; background: var(--off-white); border-radius: 8px; font-size: 14px; color: rgba(28,28,28,0.72); text-align: center; }
.careers-cta a { color: var(--red); font-weight: 700; text-decoration: none; }

.whatsapp-float {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 121;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  background: #1f9f56;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 14px 36px rgba(0,0,0,0.24);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.whatsapp-float:hover {
  background: #25b963;
  transform: translateY(-1px);
}
.whatsapp-float svg {
  width: 18px;
  height: 18px;
  display: block;
}

.lightbox-inner.is-portrait {
  width: min(520px, 100%);
}
.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(17,17,17,0.7);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close svg { width: 18px; height: 18px; }

/* FOOTER */
footer { background: #111; padding: 60px 5% 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-logo {
  width: 92px;
  height: 68px;
  object-fit: contain;
  display: block;
  padding: 6px 8px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
/* (og-preview removed — OG image is now used in-page) */

@media (max-width: 768px) {
  .featured-inner { grid-template-columns: 1fr; }
}
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-contact-item span,
.footer-contact-item a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  text-decoration: none;
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.85); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-col a.red-link { color: rgba(200,65,42,0.7); }
.footer-col a.red-link:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom p + p { margin-left: 18px; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
  .hero { min-height: 640px; }
  .hero-inner { padding: 0 5%; }
  .hero-left { padding-top: 96px; padding-bottom: 0; }
  .hero-badge { top: auto; bottom: 22px; right: 5%; }
  .stats-section { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.2); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .video-hero-band { height: 280px; }
  .vhb-overlay { background: linear-gradient(to right, rgba(10,8,6,0.9) 45%, rgba(10,8,6,0.55) 100%); }
  .vhb-content h2 { font-size: 34px; }

  .about-split { grid-template-columns: 1fr; }
  .about-image { height: 300px; }
  .about-image::after { right: auto; left: 0; top: auto; bottom: 0; width: 100%; height: 3px; }
  .about-copy { padding: 44px 6%; }
  .about-copy { order: 1; }
  .about-image { order: 2; }
  .section-title { font-size: 32px; }

  .section-head { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .ba-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ba-image-wrap img { height: 210px; }
  .clients-title { font-size: 22px; }
  .logo-card { min-width: 180px; min-height: 110px; }
  .logo-card img { max-width: 110px; max-height: 36px; }
  .logo-marquee-track { animation-duration: 24s; }

  .page-hero-title { font-size: 38px; }
  .page-hero-sub { font-size: 15px; }
  .split { grid-template-columns: 1fr; }
  .section-reverse .split-image { order: 1; }
  .section-reverse .split-text { order: 2; }
  .split-image { min-height: 240px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .mv-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-title { font-size: 34px; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-section { grid-template-columns: 1fr; }
  .stat-item { border-right: none; padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 26px 22px; }
  .blog-grid { grid-template-columns: 1fr; }
  .ba-images { grid-template-columns: 1fr; }
  .ba-image-wrap img { height: 190px; }
  .logo-card { min-width: 156px; min-height: 98px; }
  .logo-card img { max-width: 102px; max-height: 34px; }
  .logo-name { font-size: 10px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 12px; }
}
