/* ============================================================
   THREE PHASE CONTRACTORS — Main Stylesheet
   ============================================================
   Table of Contents:
   1. Reset & Base
   2. CSS Variables
   3. Layout & Container
   4. Reveal Animations
   5. Section Headings
   6. Top Bar
   7. Header / Nav
   8. Mobile Menu
   9. Dropdowns
   10. Hero Section
   11. About Section
   12. Accreditations Slider
   13. CHiL Framework
   14. Services Grid
   15. How We Work (Bento Grid)
   16. Who We Work With
   17. Case Studies
   18. Enquiry / Contact Form
   19. Footer
   20. Buttons & Shared Components
   ============================================================ */


/* ============================================================
   1. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  color: #1a2332;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}


/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
  /* Greens */
  --green: #00B876;
  --green-light: #00D48E;
  --green-dark: #009960;

  /* Navy / Dark */
  --navy: #0C1D2E;
  --navy-light: #112838;
  --navy-lighter: #1A3A50;

  /* Text */
  --text-primary: #1a2332;
  --text-secondary: #4d6475;
  --text-muted: #7d94a5;
  --text-faint: #b8c8d4;

  /* Backgrounds */
  --cream: #F6F4EF;
  --sand: #E8E4DC;

  /* Accent */
  --blue: #007AAD;
  --amber: #D4880C;
}


/* ============================================================
   3. LAYOUT & CONTAINER
   ============================================================ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}


/* ============================================================
   4. REVEAL ANIMATIONS (scroll-triggered)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }


/* ============================================================
   5. SECTION HEADINGS
   ============================================================ */
.section-header {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 52px;
  }
}

.section-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-title--white { color: #fff; }
.section-title--white em { color: var(--green-light); font-style: normal; }
.section-title--dark  { color: var(--text-primary); }

.section-subtitle {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 620px;
}

/* Subtle top divider on light sections */
.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--sand) 50%, transparent 95%);
}

/* Section CTA row */
.section-cta {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .section-cta {
    margin-top: 56px;
  }
}


/* ============================================================
   6. TOP BAR (Trustpilot + contact strip)
   ============================================================ */
.topbar {
  background: #080F18;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  gap: 12px;
  min-width: 0;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-shrink: 1;
}

/* Trustpilot link */
.trustpilot-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.trustpilot-link:hover {
  opacity: 0.85;
}

.trustpilot-stars {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}

.trustpilot-star {
  width: 18px;
  height: 18px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trustpilot-star svg {
  width: 11px;
  height: 11px;
  fill: #fff;
}

.trustpilot-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  white-space: nowrap;
}

/* Right side contact links */
.topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 1;
  min-width: 0;
}

.topbar__right a,
.topbar__right span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}

.topbar__right a:hover {
  color: var(--green-light);
}

.topbar__right svg {
  width: 13px;
  height: 13px;
  stroke: var(--green-light);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .topbar__email { display: none; }
  .trustpilot-label { display: none; }
  .topbar__right { gap: 12px; }
}

@media (max-width: 420px) {
  .topbar__inner {
    gap: 8px;
  }
  .topbar__right a,
  .topbar__right span {
    font-size: 11px;
    gap: 4px;
  }
  .topbar__right svg {
    width: 11px;
    height: 11px;
  }
  .trustpilot-star {
    width: 15px;
    height: 15px;
  }
  .trustpilot-star svg {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 340px) {
  .topbar__right a,
  .topbar__right span {
    font-size: 10px;
  }
}


/* ============================================================
   7. HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.97);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.logo__name {
  font-weight: 900;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.logo__subtitle {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav > a,
.dropdown__trigger {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.desktop-nav > a:hover,
.dropdown__trigger:hover,
.dropdown.open .dropdown__trigger {
  color: var(--green);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.desktop-nav .nav-cta {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--green);
  color: #fff !important;
  font-size: 11.5px;
  font-weight: 700;
  transition: all 0.25s;
  margin-left: 2px;
  box-shadow: 0 2px 6px rgba(0, 184, 118, 0.15);
}

.desktop-nav .nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 184, 118, 0.25);
}


/* ============================================================
   8. MOBILE MENU
   ============================================================ */
/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: 0.25s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 106px 0 0;
  z-index: 499;
  background: #fff;
  padding: 20px 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.mobile-menu a:active {
  background: var(--cream);
}

.mobile-menu__cta {
  margin-top: 8px;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-menu__phone {
  margin-top: 4px;
  text-align: center;
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  color: var(--text-primary);
}

.mobile-menu__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 20px 16px 6px;
  pointer-events: none;
}

.mobile-menu__sub {
  padding-left: 32px;
  font-size: 14px;
  color: var(--text-secondary);
}


/* ============================================================
   9. DROPDOWNS
   ============================================================ */
.dropdown__chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.dropdown.open .dropdown__chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}

.dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  z-index: 600;
}

.dropdown.open .dropdown__menu {
  display: block;
}

.dropdown__menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s;
}

.dropdown__menu a:hover {
  background: rgba(0, 184, 118, 0.04);
  color: var(--green);
}

.dropdown__menu a svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  flex-shrink: 0;
  transition: stroke 0.15s;
}

.dropdown__menu a:hover svg {
  stroke: var(--green);
}

/* Wide dropdown (services) */
.dropdown__menu--wide {
  min-width: 480px;
  max-width: calc(100vw - 48px);
  display: none;
  padding: 12px;
}

.dropdown.open .dropdown__menu--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

@media (max-width: 560px) {
  .dropdown__menu--wide {
    min-width: 280px;
  }
  .dropdown.open .dropdown__menu--wide {
    grid-template-columns: 1fr;
  }
}

.dropdown__menu--wide a {
  padding: 10px 12px;
  font-size: 12.5px;
}

.dropdown__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.04);
  margin: 4px 8px;
}


/* ============================================================
   10. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: #060E17;
  overflow: hidden;
  padding: 64px 0 68px;
  min-height: 480px;
}

@media (min-width: 768px) {
  .hero {
    padding: 100px 0;
    min-height: 600px;
  }
}

@media (min-width: 1000px) {
  .hero {
    padding: 120px 0;
    min-height: 92vh;
    max-height: 860px;
  }
}

/* Blue-green ambient wash */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 80% at 70% 40%, rgba(0, 45, 70, 0.6), transparent 70%),
    radial-gradient(ellipse 40% 50% at 85% 25%, rgba(0, 80, 60, 0.25), transparent);
}

/* Text-side darken + bottom fade */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 14, 23, 0.7) 0%, rgba(6, 14, 23, 0.35) 45%, transparent 70%),
    linear-gradient(180deg, transparent 60%, rgba(6, 14, 23, 0.5) 100%);
}

/* Solar panel array background */
.hero__panels {
  position: absolute;
  top: -10%;
  right: -4%;
  width: 75%;
  height: 140%;
  z-index: 2;
  transform: rotate(-12deg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 4px;
  padding: 20px;
  mask-image: radial-gradient(ellipse 80% 75% at 55% 45%, black 25%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 55% 45%, black 25%, transparent 68%);
}

@media (max-width: 767px) {
  .hero__panels {
    right: -30%;
    width: 110%;
  }
}

/* Individual solar cell */
.solar-cell {
  background: linear-gradient(175deg, #0a1e30, #071828, #0c2235);
  border: 1px solid rgba(140, 160, 180, 0.12);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* Busbar centre line */
.solar-cell::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 4%;
  width: 2px;
  height: 92%;
  background: rgba(200, 220, 230, 0.12);
}

/* Horizontal wafer lines */
.solar-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(200, 220, 230, 0.06) 1px, transparent 1px);
  background-size: 100% 33.33%;
}

/* Sunlight reflection sweep */
.solar-cell span {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.03) 42%,
    rgba(255, 255, 255, 0.08) 48%,
    rgba(200, 220, 240, 0.12) 50%,
    rgba(255, 255, 255, 0.08) 52%,
    rgba(255, 255, 255, 0.03) 58%,
    transparent 65%,
    transparent 100%
  );
  opacity: 0;
  animation: sunReflect 6s ease-in-out infinite;
}

/* Staggered reflection delays per cell */
.solar-cell:nth-child(1)  span { animation-delay: 0s; }
.solar-cell:nth-child(2)  span { animation-delay: 0.15s; }
.solar-cell:nth-child(3)  span { animation-delay: 0.3s; }
.solar-cell:nth-child(4)  span { animation-delay: 0.45s; }
.solar-cell:nth-child(5)  span { animation-delay: 0.2s; }
.solar-cell:nth-child(6)  span { animation-delay: 0.35s; }
.solar-cell:nth-child(7)  span { animation-delay: 0.5s; }
.solar-cell:nth-child(8)  span { animation-delay: 0.65s; }
.solar-cell:nth-child(9)  span { animation-delay: 0.4s; }
.solar-cell:nth-child(10) span { animation-delay: 0.55s; }
.solar-cell:nth-child(11) span { animation-delay: 0.7s; }
.solar-cell:nth-child(12) span { animation-delay: 0.85s; }
.solar-cell:nth-child(13) span { animation-delay: 0.6s; }
.solar-cell:nth-child(14) span { animation-delay: 0.75s; }
.solar-cell:nth-child(15) span { animation-delay: 0.9s; }
.solar-cell:nth-child(16) span { animation-delay: 1.05s; }
.solar-cell:nth-child(17) span { animation-delay: 0.8s; }
.solar-cell:nth-child(18) span { animation-delay: 0.95s; }
.solar-cell:nth-child(19) span { animation-delay: 1.1s; }
.solar-cell:nth-child(20) span { animation-delay: 1.25s; }

@keyframes sunReflect {
  0%, 15%  { opacity: 0; transform: translateX(-60%); }
  25%      { opacity: 1; transform: translateX(-20%); }
  45%      { opacity: 1; transform: translateX(20%); }
  60%, 100% { opacity: 0; transform: translateX(60%); }
}

/* Green energy glow beneath panels */
.hero__glow {
  position: absolute;
  bottom: 20%;
  right: 12%;
  width: 40%;
  height: 30%;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(0, 184, 118, 0.06), transparent 70%);
  animation: energyPulse 6s ease-in-out infinite;
  transform: rotate(-12deg);
}

@keyframes energyPulse {
  0%, 100% { opacity: 0.3; }
  40%, 60% { opacity: 1; }
}

/* Energy flow line */
.hero__energy-line {
  position: absolute;
  bottom: 18%;
  right: 8%;
  width: 45%;
  height: 2px;
  z-index: 2;
  border-radius: 2px;
  overflow: hidden;
  transform: rotate(-12deg);
}

.hero__energy-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 142, 0.5), transparent);
  border-radius: 2px;
  animation: energyFlow 4s ease-in-out 2s infinite;
}

.hero__energy-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 142, 0.35), transparent);
  border-radius: 2px;
  animation: energyFlow 4s ease-in-out 3.5s infinite;
}

@keyframes energyFlow {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 0.7; }
  80%  { opacity: 0.7; }
  100% { transform: translateX(250%); opacity: 0; }
}

/* Hero content */
.hero .container {
  position: relative;
  z-index: 4;
}

.hero__tagline {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  max-width: 620px;
}

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

.hero__subtitle {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 560px;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 16.5px;
  }
}

.hero__subtitle strong {
  color: #fff;
  font-weight: 600;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 374px) {
  .hero__tagline {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .hero h1 {
    letter-spacing: -1px;
  }
}


/* ============================================================
   11. ABOUT SECTION
   ============================================================ */
.about {
  padding: 56px 0;
  background: #fff;
  position: relative;
}

@media (min-width: 768px) {
  .about {
    padding: 80px 0;
  }
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--blue));
}

.about__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .about__layout {
    display: grid;
    grid-template-columns: 0.55fr 0.45fr;
    gap: 52px;
    align-items: start;
  }
}

.about__text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about__text p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Read more link */
.about__readmore {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: all 0.2s;
}

.about__readmore:hover {
  color: var(--green-light);
}

/* Director signatures */
.directors {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.directors__signatures {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.director-sig {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.director-sig__name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-primary);
  font-style: italic;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.director-sig__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Photo grid */
.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about__photo {
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy);
}

.about__photo:nth-child(1) {
  aspect-ratio: 0.85;
  grid-row: span 2;
}

.about__photo:nth-child(2) {
  aspect-ratio: 1.1;
}

.about__photo:nth-child(3) {
  aspect-ratio: 1.1;
}

.about__photo-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.about__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4));
}


/* ============================================================
   12. ACCREDITATIONS SLIDER
   ============================================================ */
.accreditations {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.accreditations__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: center;
}

.accreditations__slider {
  position: relative;
  overflow: hidden;
}

/* Fade edges */
.accreditations__slider::before,
.accreditations__slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.accreditations__slider::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.accreditations__slider::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

/* Scrolling track */
.accreditations__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: accredScroll 10s linear infinite;
  padding: 10px 0;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.accreditations__track:active {
  cursor: grabbing;
}

.accreditations__track.dragging {
  animation-play-state: paused !important;
}

@keyframes accredScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual accreditation card */
.accreditation-card {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 22px 26px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--sand);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  min-height: 200px;
  justify-content: center;
}

.accreditation-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(0, 184, 118, 0.08);
  transform: translateY(-3px);
}

.accreditation-card__icon {
  width: 120px;
  height: 90px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accreditation-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.accreditation-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.accreditation-card__sub {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.25;
}


/* ============================================================
   13. CHiL FRAMEWORK SECTION
   ============================================================ */
.chil {
  padding: 56px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .chil {
    padding: 110px 0;
  }
}

/* Stats row */
.chil__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 52px;
}

@media (min-width: 768px) {
  .chil__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 64px;
  }
}

.chil-stat {
  padding: 24px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
  .chil-stat {
    padding: 32px 24px;
  }
}

.chil-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.3;
  transition: opacity 0.4s;
}

.chil-stat:hover {
  border-color: var(--green);
  box-shadow: 0 12px 36px rgba(0, 184, 118, 0.1);
  transform: translateY(-4px);
}

.chil-stat:hover::before {
  opacity: 0.7;
}

.chil-stat__value {
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  word-break: break-word;
}

@media (max-width: 374px) {
  .chil-stat__value {
    font-size: 18px;
  }
}

.chil-stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Two-column content */
.chil__content {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

@media (min-width: 900px) {
  .chil__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

.chil__text {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.chil__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Capabilities card */
.capabilities-card {
  padding: 30px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.capabilities-card__title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.capabilities-card__title::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.capability-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(0, 184, 118, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-item__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Local Authorities card */
.la-card {
  padding: 30px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.la-card__title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.la-card__title::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

.la-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Full width variant sits below the two-column content */
.la-card--fullwidth {
  margin-top: 24px;
  text-align: center;
}

.la-card--fullwidth .la-card__tags {
  justify-content: center;
}

.la-tag {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.la-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0, 184, 118, 0.03);
  transform: translateY(-1px);
}

/* CHiL partner banner */
.chil__banner {
  margin-top: 40px;
  padding: 28px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 1px solid rgba(0, 184, 118, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 599px) {
  .chil__banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .chil__banner {
    padding: 28px 32px;
  }
}

.chil__banner-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.chil__banner-text em {
  font-style: normal;
  color: var(--green-light);
}

.chil__banner-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 4px;
}


/* ============================================================
   14. SERVICES GRID
   ============================================================ */
.services {
  padding: 56px 0;
  background: #fff;
  position: relative;
}

@media (min-width: 768px) {
  .services {
    padding: 100px 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 550px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.service-card {
  padding: 24px 20px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .service-card {
    padding: 32px 26px;
  }
}

.service-card:hover {
  background: rgba(0, 184, 118, 0.04);
  border-color: rgba(0, 184, 118, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
}

.service-card__name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.service-card__tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0, 184, 118, 0.08);
  color: var(--green);
}


/* ============================================================
   15. HOW WE WORK (Bento Grid)
   ============================================================ */
.how-we-work {
  padding: 60px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .how-we-work {
    padding: 120px 0;
  }
}

/* Dot grid texture */
.how-we-work::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Ambient glow */
.how-we-work::after {
  content: '';
  position: absolute;
  top: 5%;
  right: -18%;
  width: 55%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(0, 184, 118, 0.04), transparent 65%);
  pointer-events: none;
}

.how-we-work .container {
  position: relative;
  z-index: 1;
}

.how-we-work__intro {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  max-width: 660px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .how-we-work__intro {
    margin-bottom: 68px;
    font-size: 18px;
  }
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .comparison-banner {
    grid-column: span 2;
  }
}

@media (min-width: 1000px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .comparison-banner {
    grid-column: span 3;
  }
}

/* Base bento card */
.bento-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .bento-card {
    padding: 36px 30px;
  }
}

.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 184, 118, 0.12);
  transform: translateY(-5px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    0 0 48px rgba(0, 184, 118, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Hero card — highlighted */
.bento-card--hero {
  background: linear-gradient(145deg, rgba(0, 184, 118, 0.04), rgba(0, 122, 173, 0.02), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(0, 184, 118, 0.08);
}

.bento-card--hero:hover {
  border-color: rgba(0, 184, 118, 0.18);
  background: linear-gradient(145deg, rgba(0, 184, 118, 0.06), rgba(0, 122, 173, 0.03), rgba(255, 255, 255, 0.02));
}

.bento-card--hero .bento-card__icon { width: 52px; height: 52px; border-radius: 14px; }
.bento-card--hero .bento-card__icon svg { width: 22px; height: 22px; }
.bento-card--hero .bento-card__title { font-size: 18px; }
.bento-card--hero .bento-card__body { font-size: 14px; }

/* Card icon */
.bento-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(0, 184, 118, 0.1), rgba(0, 122, 173, 0.08));
  border: 1px solid rgba(0, 184, 118, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-light);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bento-card:hover .bento-card__icon {
  background: linear-gradient(140deg, rgba(0, 184, 118, 0.15), rgba(0, 122, 173, 0.1));
  border-color: rgba(0, 184, 118, 0.2);
  transform: scale(1.05);
}

/* Card content */
.bento-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
}

.bento-card__body {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

.bento-card:hover .bento-card__body {
  color: rgba(255, 255, 255, 0.72);
}

/* Tag pill */
.bento-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(0, 184, 118, 0.06);
  border: 1px solid rgba(0, 184, 118, 0.1);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-light);
  transition: all 0.3s;
}

.bento-card:hover .bento-card__tag {
  background: rgba(0, 184, 118, 0.1);
  border-color: rgba(0, 184, 118, 0.2);
}

.bento-card__tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
}

/* Comparison banner */
.comparison-banner {
  margin-top: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.comparison-banner__header {
  padding: 32px 24px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .comparison-banner__header {
    padding: 52px 52px 0;
  }
}

.comparison-banner__title {
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.comparison-banner__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .comparison-banner__subtitle {
    font-size: 14.5px;
    margin-bottom: 36px;
  }
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .comparison-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-col {
  padding: 24px 20px 32px;
}

@media (min-width: 768px) {
  .comparison-col {
    padding: 36px 44px 48px;
  }
}

/* Others column */
.comparison-col--others {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 100, 80, 0.015);
}

@media (min-width: 700px) {
  .comparison-col--others {
    border-top: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Us column */
.comparison-col--us {
  background: rgba(0, 184, 118, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 700px) {
  .comparison-col--us {
    border-top: none;
  }
}

.comparison-col__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
}

.comparison-col--others .comparison-col__label {
  color: rgba(255, 150, 130, 0.8);
  background: rgba(255, 120, 100, 0.04);
}

.comparison-col--us .comparison-col__label {
  color: var(--green-light);
  background: rgba(0, 184, 118, 0.06);
}

.comparison-col__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.comparison-col--others .comparison-col__label-dot {
  background: rgba(255, 120, 100, 0.6);
}

.comparison-col--us .comparison-col__label-dot {
  background: var(--green-light);
}

/* Comparison items */
.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.comparison-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.comparison-col--others .comparison-item__icon {
  background: rgba(255, 120, 100, 0.08);
}

.comparison-col--us .comparison-item__icon {
  background: rgba(0, 184, 118, 0.08);
}

.comparison-item__icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-col--others .comparison-item__icon svg {
  stroke: rgba(255, 120, 100, 0.7);
}

.comparison-col--us .comparison-item__icon svg {
  stroke: var(--green-light);
}

.comparison-item__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.comparison-col--us .comparison-item__text {
  color: rgba(255, 255, 255, 0.7);
}

/* Bottom CTA */
.comparison-banner__cta {
  padding: 28px 24px 36px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 184, 118, 0.02);
}

@media (min-width: 768px) {
  .comparison-banner__cta {
    padding: 36px 52px 48px;
  }
}


/* ============================================================
   16. WHO WE WORK WITH
   ============================================================ */
.partners {
  padding: 56px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .partners {
    padding: 100px 0;
  }
}

.partners::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 184, 118, 0.04), transparent 70%);
  pointer-events: none;
}

.partners .section-label { color: var(--green-light); }
.partners .section-title { color: #fff; }
.partners .container { position: relative; z-index: 1; }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  min-height: 160px;
}

@media (min-width: 768px) {
  .partner-card {
    padding: 30px 28px;
    min-height: 190px;
  }
}

.partner-card:hover {
  border-color: rgba(0, 184, 118, 0.25);
  background: rgba(0, 184, 118, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.partner-card__name {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.partner-card:hover .partner-card__name {
  color: var(--green-light);
}

.partner-card__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
  transition: color 0.3s;
}

.partner-card:hover .partner-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.partner-card__arrow {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-light);
  opacity: 0.5;
  transition: all 0.3s;
  display: inline-block;
}

.partner-card:hover .partner-card__arrow {
  opacity: 1;
  transform: translateX(4px);
}


/* ============================================================
   17. CASE STUDIES
   ============================================================ */
.case-studies {
  padding: 56px 0;
  background: var(--cream);
  position: relative;
}

@media (min-width: 768px) {
  .case-studies {
    padding: 100px 0;
  }
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .case-studies-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .case-studies-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.case-study {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.case-study:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 184, 118, 0.12);
}

.case-study__image {
  aspect-ratio: 1.5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.case-study:nth-child(1) .case-study__image:not([style*="background-image"]) {
  background: linear-gradient(150deg, #1a3a2e, #0d2820);
}

.case-study:nth-child(2) .case-study__image:not([style*="background-image"]) {
  background: linear-gradient(150deg, #1a2e3d, #0d1f2e);
}

.case-study:nth-child(3) .case-study__image:not([style*="background-image"]) {
  background: linear-gradient(150deg, #2e2a1a, #1e1c12);
}

.case-study__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3));
}

.case-study__image-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.case-study__body {
  padding: 24px;
}

.case-study__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.case-study__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.case-study__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-secondary);
}


/* ============================================================
   18. ENQUIRY / CONTACT FORM
   ============================================================ */
.enquiry {
  padding: 56px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .enquiry {
    padding: 100px 0;
  }
}

.enquiry::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 184, 118, 0.03), transparent 70%);
  pointer-events: none;
}

.enquiry__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .enquiry__layout {
    display: grid;
    grid-template-columns: 0.48fr 0.52fr;
    gap: 60px;
    align-items: start;
  }
}

.enquiry__title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.enquiry__title em {
  font-style: normal;
  color: var(--green-light);
}

.enquiry__body {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  max-width: 440px;
}

.enquiry__body strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.enquiry__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.enquiry__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.enquiry__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.enquiry__contact-item a,
.enquiry__contact-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}

@media (min-width: 768px) {
  .enquiry__contact-item a,
  .enquiry__contact-item span {
    font-size: 14px;
  }
}

.enquiry__contact-item a:hover {
  color: var(--green-light);
}

/* Form */
.enquiry-form {
  padding: 28px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 184, 118, 0.12);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.25), 0 0 80px rgba(0, 184, 118, 0.05);
}

@media (min-width: 480px) {
  .enquiry-form {
    padding: 40px 36px;
  }
}

@media (min-width: 768px) {
  .enquiry-form {
    padding: 44px 40px;
  }
}

.enquiry-form__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.enquiry-form__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 500px) {
  .form-row--2col {
    flex-direction: row;
  }
  .form-row--2col .form-field {
    flex: 1;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field__label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.form-field__input,
.form-field__select,
.form-field__textarea {
  padding: 13px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: var(--cream);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
  outline: none;
  width: 100%;
}

.form-field__input::placeholder,
.form-field__textarea::placeholder {
  color: var(--text-muted);
}

.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 184, 118, 0.08);
}

.form-field__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237d94a5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field__select option {
  background: #fff;
  color: var(--text-primary);
}

.form-field__textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 184, 118, 0.2);
}

.form-submit:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 184, 118, 0.3);
}


/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer {
  padding: 48px 0 28px;
  background: #080F18;
  position: relative;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 72px 0 36px;
  }
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 184, 118, 0.2), rgba(0, 122, 173, 0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo__name {
  color: rgba(255, 255, 255, 0.9);
}

.footer-brand__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-accreditation {
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--green-light);
}

.footer-bottom {
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer-credit {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit a {
  color: var(--green-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 14px;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-end;
  }
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--green-light);
}


/* ============================================================
   20. BUTTONS & SHARED COMPONENTS
   ============================================================ */

/* Focus outlines for keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* Dark section label override */
.section-label--light {
  color: var(--green-light);
}

/* Dark section title/subtitle overrides */
.section-title--white-em em {
  color: var(--green-light);
  font-style: normal;
}

.section-title--dark-em em {
  color: var(--green);
  font-style: normal;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.6);
}

/* Centred CTA row */
.section-cta--center {
  text-align: center;
  justify-content: center;
}

/* Tight CTA (reduced top margin) */
.section-cta--tight {
  margin-top: 28px;
}

/* Service icon colour variants */
.service-card__icon--green { background: rgba(0, 212, 142, 0.08); }
.service-card__icon--blue  { background: rgba(0, 122, 173, 0.08); }
.service-card__icon--amber { background: rgba(212, 136, 12, 0.08); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 184, 118, 0.15);
}

.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 184, 118, 0.3);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--sand);
}

.btn--secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 184, 118, 0.1);
}


/* ============================================================
   21. INNER PAGE STYLES — Premium, matching homepage quality
   ============================================================ */

/* ── Inner page hero ── */
.hero--short {
  min-height: auto !important;
  max-height: none !important;
  padding: 56px 0 60px;
}

@media (min-width: 768px) {
  .hero--short {
    padding: 80px 0 84px;
  }
}

/* Ambient gradient wash — same language as homepage hero */
.hero--short::before {
  background:
    radial-gradient(ellipse 60% 80% at 75% 30%, rgba(0, 45, 70, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 60% at 15% 60%, rgba(0, 184, 118, 0.05), transparent 60%);
}

/* Dot grid texture — same as How We Work section */
.hero--short .hero__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero--short h1 {
  font-size: clamp(30px, 4.8vw, 52px);
}

/* Minimal hero (legal pages) */
.hero--minimal {
  padding: 40px 0 44px;
}

.hero--minimal h1 {
  font-size: clamp(24px, 3.5vw, 40px);
  margin-bottom: 8px;
}


/* ── Content sections with proper section transitions ── */
.content-section {
  padding: 56px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .content-section {
    padding: 80px 0;
  }
}

/* Cream variant */
.content-section--cream {
  background: var(--cream);
}

/* Subtle top border transition between light sections */
.content-section--cream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--sand) 50%, transparent 95%);
}

/* Navy variant — with dot grid and ambient glow like homepage dark sections */
.content-section--navy {
  background: var(--navy);
}

.content-section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.content-section--navy::after {
  content: '';
  position: absolute;
  top: 5%;
  right: -15%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0, 184, 118, 0.04), transparent 65%);
  pointer-events: none;
}

.content-section--navy .container {
  position: relative;
  z-index: 1;
}

/* Green accent bar at top — matches homepage about section */
.content-section--accent-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--blue));
}


/* ── Two-column content grid ── */
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .content-grid {
    display: grid;
    grid-template-columns: 0.55fr 0.45fr;
    gap: 52px;
    align-items: start;
  }
}

/* Content text blocks */
.content-text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
}


/* ── Stats section — reuses homepage CHiL stat cards ── */
/* (Uses existing .chil__stats and .chil-stat classes from homepage) */


/* ── Short enquiry / CTA section ── */
.enquiry--short {
  padding: 56px 0;
  overflow: hidden;
}

.enquiry--short::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.enquiry--short::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 184, 118, 0.04), transparent 70%);
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .enquiry--short {
    padding: 80px 0;
  }
}


/* ── Process steps ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: start;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__number {
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.process-step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-secondary);
}


/* ── Service features grid ── */
.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .service-features {
    grid-template-columns: 1fr 1fr;
  }
}

.service-feature {
  padding: 32px 28px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Subtle top accent — matches homepage stat cards */
.service-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-feature:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 184, 118, 0.1);
}

.service-feature:hover::before {
  opacity: 0.6;
}

.service-feature__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-feature__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-secondary);
}


/* ── Full projects grid ── */
.case-studies-grid--full {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .case-studies-grid--full {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .case-studies-grid--full {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* ── Legal content ── */
.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

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

.legal-content p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--green);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}


/* ============================================================
   22. ABOUT PAGE — Unique components
   ============================================================ */

/* Prose layout — lead paragraph + two columns */
.about-prose__lead {
  max-width: 780px;
  margin-bottom: 36px;
}

.about-prose__lead p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .about-prose__lead p {
    font-size: 18px;
  }
}

.about-prose__cols {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .about-prose__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.about-prose__cols p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Differentiator cards — dark section, premium */
.about-diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}

@media (min-width: 600px) {
  .about-diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-diff-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .about-diff-card {
    padding: 36px 30px;
  }
}

/* Top highlight line — same as homepage bento cards */
.about-diff-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.about-diff-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 184, 118, 0.12);
  transform: translateY(-5px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    0 0 48px rgba(0, 184, 118, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-diff-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(0, 184, 118, 0.1), rgba(0, 122, 173, 0.08));
  border: 1px solid rgba(0, 184, 118, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-diff-card__icon svg {
  width: 22px;
  height: 22px;
}

.about-diff-card:hover .about-diff-card__icon {
  background: linear-gradient(140deg, rgba(0, 184, 118, 0.15), rgba(0, 122, 173, 0.1));
  border-color: rgba(0, 184, 118, 0.2);
  transform: scale(1.05);
}

.about-diff-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
}

.about-diff-card__desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
}

.about-diff-card:hover .about-diff-card__desc {
  color: rgba(255, 255, 255, 0.72);
}

/* Accred strip on cream background — override fade edges */
.content-section--cream .accreditations__slider::before {
  background: linear-gradient(90deg, var(--cream), transparent);
}

.content-section--cream .accreditations__slider::after {
  background: linear-gradient(270deg, var(--cream), transparent);
}

/* Remove orphan margin when stats are last element in section */
.chil__stats:last-child {
  margin-bottom: 0;
}

/* Remove accreditation strip top border/margin when inside its own section */
.content-section .accreditations {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}


/* ============================================================
   23. RESPONSIVE VISIBILITY UTILITIES
   ============================================================ */

/* Hide on mobile only (below 768px) */
.hide-mobile {
  display: block;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hide on desktop only (768px and above) */
.hide-desktop {
  display: none;
}

@media (max-width: 767px) {
  .hide-desktop {
    display: block !important;
  }
}


/* ============================================================
   23. RESPONSIVE VISIBILITY UTILITIES
   ============================================================ */

/* Hide on mobile, show on desktop */
.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

/* Hide on desktop, show on mobile */
.mobile-only {
  display: block;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

/* Inline variants */
.desktop-only--inline {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only--inline {
    display: inline;
  }
}

.mobile-only--inline {
  display: inline;
}

@media (min-width: 768px) {
  .mobile-only--inline {
    display: none;
  }
}


/* ============================================================
   24. CONTACT PAGE — Unique components
   ============================================================ */

/* Contact detail rows */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-detail__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Map placeholder */
.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(150deg, #1a3a2e, #0d2820);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.map-placeholder__text {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.map-placeholder__sub {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}


/* ============================================================
   25. HOW WE WORK — Comparison on cream background
   ============================================================ */

.hww-comparison {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.hww-comparison .comparison-col {
  padding: 28px 24px 36px;
}

@media (min-width: 768px) {
  .hww-comparison .comparison-col {
    padding: 36px 40px 44px;
  }
}

.hww-comparison .comparison-col--others {
  background: rgba(255, 100, 80, 0.02);
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 700px) {
  .hww-comparison .comparison-col--others {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }
}

.hww-comparison .comparison-col--us {
  background: rgba(0, 184, 118, 0.03);
  border-top: none;
}

.hww-comparison .comparison-col--others .comparison-col__label {
  color: rgba(200, 80, 60, 0.8);
  background: rgba(200, 80, 60, 0.04);
}

.hww-comparison .comparison-col--us .comparison-col__label {
  color: var(--green);
  background: rgba(0, 184, 118, 0.06);
}

.hww-comparison .comparison-col--others .comparison-col__label-dot {
  background: rgba(200, 80, 60, 0.5);
}

.hww-comparison .comparison-col--us .comparison-col__label-dot {
  background: var(--green);
}

.hww-comparison .comparison-item {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.hww-comparison .comparison-item__text {
  color: var(--text-secondary);
}

.hww-comparison .comparison-col--others .comparison-item__icon {
  background: rgba(200, 80, 60, 0.06);
}

.hww-comparison .comparison-col--others .comparison-item__icon svg {
  stroke: rgba(200, 80, 60, 0.6);
}

.hww-comparison .comparison-col--us .comparison-item__icon {
  background: rgba(0, 184, 118, 0.06);
}

.hww-comparison .comparison-col--us .comparison-item__icon svg {
  stroke: var(--green);
}


/* ============================================================
   26. CTA BANNERS — full-bleed visual punch between sections
   ============================================================ */

.cta-banner {
  padding: 48px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 64px 0;
  }
}

/* Dark variant — navy with glow */
.cta-banner--dark {
  background: var(--navy);
}

.cta-banner--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-banner--dark::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(0, 184, 118, 0.06), transparent 65%);
  pointer-events: none;
}

.cta-banner--dark .cta-banner__title {
  color: #fff;
}

.cta-banner--dark .cta-banner__sub {
  color: rgba(255, 255, 255, 0.6);
}

/* Green variant — gradient green */
.cta-banner--green {
  background: linear-gradient(135deg, var(--green), #008855);
}

.cta-banner--green::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-banner--green::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06), transparent 65%);
  pointer-events: none;
}

.cta-banner--green .cta-banner__title {
  color: #fff;
}

.cta-banner--green .cta-banner__sub {
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner--green .btn--primary {
  background: #fff;
  color: var(--green);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-banner--green .btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* Inner elements */
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-banner__title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-banner__title em {
  font-style: normal;
  color: var(--green-light);
}

.cta-banner--green .cta-banner__title em {
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner__sub {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}


/* ============================================================
   27. FLOW CARDS — numbered step cards in a row
   ============================================================ */

.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.flow-card {
  padding: 32px 24px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  opacity: 0;
  transition: opacity 0.4s;
}

.flow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: var(--green);
}

.flow-card:hover::before {
  opacity: 1;
}

.flow-card__number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 16px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.05);
}

.flow-card:hover .flow-card__number {
  -webkit-text-stroke: 1.5px rgba(0, 184, 118, 0.15);
}

.flow-card__icon {
  margin-bottom: 16px;
}

.flow-card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.flow-card__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}


/* ============================================================
   28. SPLIT CARDS — side by side comparison cards
   ============================================================ */

.split-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .split-cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.split-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.split-card__header {
  padding: 24px 24px 20px;
  position: relative;
}

.split-card__header--green {
  background: linear-gradient(135deg, rgba(0, 184, 118, 0.06), rgba(0, 184, 118, 0.02));
  border-bottom: 2px solid var(--green);
}

.split-card__header--blue {
  background: linear-gradient(135deg, rgba(0, 122, 173, 0.06), rgba(0, 122, 173, 0.02));
  border-bottom: 2px solid var(--blue);
}

.split-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.split-card__header--blue .split-card__tag {
  color: var(--blue);
}

.split-card__heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.split-card__body {
  padding: 20px 24px 28px;
}

.split-card__body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.split-card__body p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   29. SPACING FIXES — eliminate padding stacking
   ============================================================ */

/* Stats followed by CTA — tighten gap */
.chil__stats + .section-cta {
  margin-top: -28px;
}

/* CTA banner after content-section — reduce top gap */
.content-section + .cta-banner {
  margin-top: -24px;
}

/* Accred section after CTA banner — reduce top gap */
.cta-banner + .content-section--cream {
  padding-top: 40px;
}

@media (min-width: 768px) {
  .cta-banner + .content-section--cream {
    padding-top: 56px;
  }
}

/* Accred strip inside its section needs no extra top space */
.content-section .accreditations {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* When section-cta is inside section-header context, tighter margin */
.section-header + .chil__stats {
  margin-top: -12px;
}


/* ============================================================
   30. ENQUIRY — "What happens next" component
   ============================================================ */

.enquiry__expect {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enquiry__expect-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}

.enquiry__expect-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

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

.enquiry__expect-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 184, 118, 0.1);
  border: 1px solid rgba(0, 184, 118, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-light);
}


/* Single column prose body — replaces two-column layout */
.about-prose__body {
  max-width: 780px;
}

.about-prose__body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.case-study:nth-child(4) .case-study__image:not([style*="background-image"]) {
  background: linear-gradient(150deg, #2a1a2e, #1c121e);
}

.case-study:nth-child(5) .case-study__image:not([style*="background-image"]) {
  background: linear-gradient(150deg, #1a2a3e, #121c2e);
}

.case-study:nth-child(6) .case-study__image:not([style*="background-image"]) {
  background: linear-gradient(150deg, #2e2e1a, #1e1e12);
}


/* ============================================================
   31. PROJECT IMAGES — full-width photos between sections
   ============================================================ */

.project-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

.project-image-section {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .project-image-section {
    padding: 0;
  }
  .project-image {
    max-width: 900px;
  }
}

.project-image-section__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(12, 29, 46, 0.7));
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 0.5px;
}
