/* ==========================================================================
   CAN HEATING COOLING — Design System v2
   Brand: Deep forest green (#024136) from logo + warm orange/red accents
   ========================================================================== */

:root {
  /* Brand greens (sampled from logo: #024136) */
  --color-brand: #024136;
  --color-brand-deep: #012620;
  --color-brand-mid: #0a5a4a;
  --color-brand-soft: #e8f0ed;
  --color-brand-tint: #f3f7f5;

  /* Accents */
  --color-accent: #E8763A;        /* warm orange */
  --color-accent-light: #F2945A;
  --color-accent-soft: #FDF1E8;
  --color-red: #C73E1D;

  /* Greyscale */
  --color-white: #ffffff;
  --color-grey-50: #f8faf9;
  --color-grey-100: #f1f4f3;
  --color-grey-200: #e3e8e6;
  --color-grey-300: #cbd2cf;
  --color-grey-400: #9aa39f;
  --color-grey-500: #6b736f;
  --color-grey-600: #4a524e;
  --color-grey-700: #343a37;
  --color-grey-800: #1f2421;
  --color-grey-900: #11140f;

  --color-text: #1f2421;
  --color-text-muted: #6b736f;
  --color-text-light: #9aa39f;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --container-max: 1240px;
  --container-pad: 1.5rem;
  --section-y: 6rem;
  --section-y-sm: 4rem;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows — soft, modern */
  --shadow-xs: 0 1px 2px rgba(2, 65, 54, 0.04);
  --shadow-sm: 0 2px 8px rgba(2, 65, 54, 0.06);
  --shadow: 0 8px 24px rgba(2, 65, 54, 0.08);
  --shadow-lg: 0 16px 48px rgba(2, 65, 54, 0.12);
  --shadow-xl: 0 24px 64px rgba(2, 65, 54, 0.18);
  --shadow-glow: 0 0 0 1px rgba(2, 65, 54, 0.06), 0 8px 32px rgba(2, 65, 54, 0.08);

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & base
   ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-grey-900);
  margin: 0;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1rem; }

/* Layout helpers
   ----------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: var(--section-y) 0; }
.section-sm { padding: var(--section-y-sm) 0; }
.section-tint { background: var(--color-brand-tint); }
.section-grey { background: var(--color-grey-50); }
.section-dark { background: var(--color-brand-deep); color: rgba(255,255,255,0.92); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-accent);
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head .eyebrow { display: inline-flex; }
.section-head .lead { color: var(--color-text-muted); font-size: 1.0625rem; }

/* Buttons
   ----------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(232, 118, 58, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 118, 58, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-brand {
  background: var(--color-brand);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(2, 65, 54, 0.25);
}
.btn-brand:hover { background: var(--color-brand-mid); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(2, 65, 54, 0.35); }
.btn-outline {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-grey-300);
}
.btn-outline:hover { background: var(--color-brand); color: var(--color-white); border-color: var(--color-brand); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.btn-white {
  background: var(--color-white);
  color: var(--color-brand);
}
.btn-white:hover { background: var(--color-brand-tint); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* Header
   ----------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-grey-100);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-top {
  background: var(--color-brand-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.55rem 0;
}
.header-top a { color: rgba(255,255,255,0.95); }
.header-top a:hover { color: var(--color-accent-light); }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.header-top-info { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.header-top-info span { display: inline-flex; align-items: center; gap: 0.4rem; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.logo img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-brand);
  letter-spacing: -0.015em;
}
.logo-text small { font-size: 0.72rem; color: var(--color-text-muted); margin-top: 2px; letter-spacing: 0.01em; }

.main-nav { display: flex; align-items: center; gap: 0.15rem; }
.main-nav > a, .main-nav > .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--color-grey-700);
  border-radius: 8px;
  position: relative;
}
.main-nav > a:hover, .main-nav > .has-dropdown > a:hover {
  color: var(--color-brand);
  background: var(--color-brand-tint);
}
.main-nav > a.active, .main-nav > .has-dropdown > a.active {
  color: var(--color-brand);
  font-weight: 600;
}
.main-nav > a.active::after, .main-nav > .has-dropdown > a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2.5px;
  background: var(--color-accent);
  border-radius: 2px;
}

.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-left: 2px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
}
.has-dropdown:hover > .dropdown,
.has-dropdown.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--color-grey-700);
  border-radius: 8px;
  font-weight: 500;
}
.dropdown a:hover { background: var(--color-brand-tint); color: var(--color-brand); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: var(--color-brand-tint);
  border: 1.5px solid var(--color-brand-soft);
  border-radius: 999px;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.header-cta:hover { background: var(--color-brand); color: var(--color-white); border-color: var(--color-brand); }
.header-cta svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--color-brand-tint);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-brand);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(1, 38, 32, 0.5);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* Hero
   ----------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #012620 0%, #024136 50%, #0a5a4a 100%);
  color: var(--color-white);
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(232, 118, 58, 0.15), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(10, 90, 74, 0.4), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content > .eyebrow {
  background: rgba(232, 118, 58, 0.12);
  border: 1px solid rgba(232, 118, 58, 0.3);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  color: var(--color-accent-light);
}
.hero-content > .eyebrow::before { display: none; }
.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.075rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-num span { color: var(--color-accent); }
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* Hero visual — large photo with floating rating chip */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  max-width: 480px;
  margin-left: auto;
  background: var(--color-brand-deep);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(1, 38, 32, 0.5) 100%);
  pointer-events: none;
}

.rating-chip {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
  color: var(--color-text);
}
.rating-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-grey-900);
  line-height: 1;
}
.rating-meta { font-size: 0.7rem; color: var(--color-text-muted); line-height: 1.25; }
.rating-stars { color: var(--color-accent); font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 1px; }

.experience-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 2;
  line-height: 1.1;
}
.experience-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}
.experience-badge small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
}
.rating-stars { color: var(--color-accent); font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 1px; }

/* Trust strip
   ----------------------------------------------------------------------- */
.trust-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-grey-100);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 0.5rem;
  border-right: 1px solid var(--color-grey-100);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-brand-tint);
  color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-text strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--color-grey-900); }
.trust-text span { font-size: 0.8rem; color: var(--color-text-muted); }

/* Brands / certifications strip
   ----------------------------------------------------------------------- */
.brands-strip {
  padding: 3rem 0;
  background: var(--color-grey-50);
  border-bottom: 1px solid var(--color-grey-100);
}
.brands-strip-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-grey-700);
  letter-spacing: -0.01em;
  transition: all var(--transition);
}
.brand-pill:hover {
  color: var(--color-brand);
  border-color: var(--color-brand-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.brand-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }

/* Service cards grid — photo-on-top design
   ----------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-brand-tint);
}
.service-card-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 38, 32, 0) 60%, rgba(1, 38, 32, 0.45) 100%);
  pointer-events: none;
}
.service-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.service-card-tag svg { width: 14px; height: 14px; }
.service-card.heating .service-card-tag { color: var(--color-accent); }

.service-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.6;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-brand);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}
.service-card.heating .service-card-link { color: var(--color-accent); }
.service-card-link::after {
  content: "→";
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* Two-column "About" preview
   ----------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-brand-tint);
}
.split-image img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}
.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(1, 38, 32, 0.35) 100%);
  pointer-events: none;
}

.split-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.1;
}
.split-image-badge strong { display: block; font-size: 1.5rem; }
.split-image-badge small { font-size: 0.7rem; font-weight: 600; opacity: 0.95; letter-spacing: 0.08em; text-transform: uppercase; }

.split-content h2 { margin-bottom: 1.25rem; }
.split-content > p { color: var(--color-text-muted); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 1.75rem; }

.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-brand);
  transition: all var(--transition);
}
.feature-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--color-brand-tint);
  color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-text strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--color-grey-900); margin-bottom: 0.15rem; font-size: 1rem; }
.feature-text p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; line-height: 1.55; }

/* Process / How It Works
   ----------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--color-grey-200) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-brand);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.process-step:hover .process-num {
  background: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
  transform: scale(1.05);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.92rem; color: var(--color-text-muted); margin: 0; line-height: 1.55; }

/* Why Choose Us — premium card layout
   ----------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232, 118, 58, 0.3);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(232, 118, 58, 0.4);
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin: 0; line-height: 1.6; }

/* Testimonials
   ----------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--color-brand-soft); }
.testimonial-stars { color: var(--color-accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-grey-700);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; padding-top: 1rem; border-top: 1px solid var(--color-grey-100); }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--color-grey-900); }
.testimonial-meta span { font-size: 0.82rem; color: var(--color-text-muted); }

/* Projects (homepage)
   ----------------------------------------------------------------------- */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.project-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-brand);
  box-shadow: var(--shadow);
  transition: all var(--transition-slow);
  display: block;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-card img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1, 38, 32, 0.92) 0%, rgba(1, 38, 32, 0.45) 50%, transparent 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
}
.project-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}
.project-card h3 { color: var(--color-white); font-size: 1.25rem; margin-bottom: 0.4rem; }
.project-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }

/* CTA Banner
   ----------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, #d4612a 100%);
  border-radius: var(--radius-xl);
  padding: 3.25rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(232, 118, 58, 0.35);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(0,0,0,0.15), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--color-white); margin-bottom: 0.6rem; font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.cta-banner p { color: rgba(255,255,255,0.92); margin: 0; font-size: 1.0625rem; }
.cta-actions { display: flex; flex-direction: column; gap: 0.6rem; align-items: stretch; }
.cta-actions .btn { justify-content: center; }

/* Page banner (sub-pages)
   ----------------------------------------------------------------------- */
.page-banner {
  background: linear-gradient(135deg, var(--color-brand-deep) 0%, var(--color-brand) 100%);
  color: var(--color-white);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(232, 118, 58, 0.18), transparent 60%);
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-inner { max-width: 720px; }
.page-banner h1 { color: var(--color-white); margin-bottom: 1rem; }
.page-banner p { color: rgba(255,255,255,0.78); font-size: 1.075rem; margin: 0; max-width: 600px; }
.breadcrumbs { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.breadcrumbs a:hover { color: var(--color-accent-light); }
.breadcrumbs span { opacity: 0.5; }

/* Service detail page
   ----------------------------------------------------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-hero-image {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.service-hero-image img { width: 100% !important; height: 100% !important; max-width: none !important; object-fit: cover; display: block; }
.service-detail-content h2 { margin-bottom: 1.25rem; }
.service-detail-content > p { font-size: 1.0625rem; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 2rem; }
.service-detail-content h3 { font-size: 1.375rem; margin: 2.25rem 0 1rem; }

.service-points { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 0.75rem; }
.service-points li {
  display: flex;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  background: var(--color-brand-tint);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-grey-700);
  border-left: 3px solid var(--color-brand);
}
.service-points li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background-color: var(--color-brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Sticky sidebar quote box */
.service-sidebar { position: sticky; top: 100px; }
.quote-box {
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.quote-box-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-grey-100);
  margin-bottom: 1.5rem;
}
.quote-box-header svg {
  width: 44px; height: 44px;
  color: var(--color-accent);
  margin: 0 auto 0.85rem;
}
.quote-box-header h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.quote-box-header p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.quote-box .btn { width: 100%; margin-top: 0.75rem; }
.quote-box-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0.65rem; }
.quote-box-list li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.88rem; color: var(--color-grey-700); }
.quote-box-list li::before {
  content: "✓";
  color: var(--color-brand-mid);
  font-weight: 800;
  font-size: 0.95rem;
}

/* Related services strip on service pages */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.related-card:hover {
  border-color: var(--color-brand-soft);
  background: var(--color-brand-tint);
  transform: translateX(3px);
}
.related-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--color-brand-tint);
  color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.related-card-icon svg { width: 18px; height: 18px; }
.related-card span { font-weight: 600; color: var(--color-grey-800); font-size: 0.94rem; }

/* About page values
   ----------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--color-brand-soft); }
.value-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--color-brand-soft);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.92rem; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.audience-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.audience-card:hover { box-shadow: var(--shadow); border-color: var(--color-brand-soft); }
.audience-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-mid) 100%);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
}
.audience-icon svg { width: 26px; height: 26px; }
.audience-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.audience-card p { font-size: 0.94rem; color: var(--color-text-muted); margin: 0; }

.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-mid) 100%);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.stat-item { padding: 0 1rem; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.85rem, 3vw, 2.75rem); color: var(--color-white); line-height: 1; margin-bottom: 0.4rem; }
.stat-num span { color: var(--color-accent-light); }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.78); }

/* Contact page
   ----------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3.5rem; }
.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 1.65rem; margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--color-text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-grey-700);
  margin-bottom: 0.45rem;
}
.form-field label .req { color: var(--color-accent); }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-grey-200);
  border-radius: 10px;
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-grey-900);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(2, 65, 54, 0.08);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--color-brand-tint);
  border: 1px solid var(--color-brand-soft);
  color: var(--color-brand-deep);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 0.94rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow-sm); border-color: var(--color-brand-soft); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-brand-tint);
  color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-item h4 { font-size: 0.98rem; margin-bottom: 0.2rem; }
.contact-info-item p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; line-height: 1.55; }
.contact-info-item p a { color: var(--color-brand); font-weight: 600; }
.contact-info-item p a:hover { color: var(--color-accent); }

/* Footer
   ----------------------------------------------------------------------- */
.site-footer {
  background: var(--color-brand-deep);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo img { width: 48px; height: 48px; }
.footer-brand .logo-text strong { color: var(--color-white); }
.footer-brand .logo-text small { color: rgba(255,255,255,0.55); }
.footer-brand p { margin: 1.25rem 0; line-height: 1.65; max-width: 320px; color: rgba(255,255,255,0.65); }
.footer-socials { display: flex; gap: 0.55rem; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social:hover { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.7); transition: all var(--transition); }
.footer-links a:hover { color: var(--color-accent-light); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 0.7rem; margin-bottom: 0.85rem; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item strong { display: block; color: var(--color-white); font-size: 0.85rem; font-family: var(--font-display); margin-bottom: 1px; }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--color-accent-light); }

/* Animations
   ----------------------------------------------------------------------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Mobile / Responsive
   ----------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-y: 4.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 520px; margin: 0 auto; aspect-ratio: 16 / 11; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-image { aspect-ratio: 16/10; max-width: 100%; }
  .service-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-banner { grid-template-columns: repeat(2, 1fr); padding: 2.25rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1.25rem; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; padding-top: 1.25rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > :last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  :root { --section-y: 3.5rem; --container-pad: 1.25rem; }
  .header-top { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 84%; max-width: 360px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 5.5rem 1.25rem 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 95;
    transition: right var(--transition);
    overflow-y: auto;
  }
  .main-nav.is-open { right: 0; }
  .main-nav > a, .main-nav > .has-dropdown > a { padding: 0.85rem 1rem; font-size: 1rem; border-radius: 10px; }
  .has-dropdown > a::after { margin-left: auto; transition: transform var(--transition); }
  .has-dropdown.is-open > a::after { transform: rotate(180deg); }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    border: none; padding: 0 0 0 1rem;
    max-height: 0; overflow: hidden;
    transition: max-height var(--transition);
  }
  .has-dropdown.is-open .dropdown { max-height: 500px; }
  .hero { padding: 3rem 0 4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; text-align: left; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .trust-item { border-right: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--color-grey-100); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid > :last-child { grid-column: span 1; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.85rem; }
  .stats-banner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.5rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1rem; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .stat-item:nth-last-child(-n+2) { padding-top: 0; }
  .cta-banner { grid-template-columns: 1fr; padding: 2.25rem 1.75rem; text-align: center; }
  .cta-actions { align-items: center; }
  .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .contact-form-wrap { padding: 1.75rem 1.5rem; }
  .audience-card { grid-template-columns: 1fr; gap: 1rem; }
  .page-banner { padding: 3rem 0 2.75rem; }
}
@media (max-width: 480px) {
  .logo-text small { display: none; }
  .logo-text strong { font-size: 1rem; }
  .logo img { width: 44px; height: 44px; }
}
