/* ============================================================
   SECURE STEP FORWARD — Global Stylesheet
   Fonts: Outfit (headings) + DM Sans (body) via Google Fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --navy:       #1a2b4a;
  --navy-deep:  #111e35;
  --teal:       #00b5ad;
  --teal-dark:  #009990;
  --teal-light: #e6f8f7;
  --grey:       #4a5568;
  --grey-light: #f4f6f8;
  --border:     #e2e8f0;
  --white:      #ffffff;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --max-w:      1200px;
  --pad-x:      clamp(24px, 5vw, 64px);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--grey);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  line-height: 1.22;
  font-weight: 700;
}

h1 { font-size: clamp(32px, 4.5vw, 52px); }
h2 { font-size: clamp(26px, 3.5vw, 38px); }
h3 { font-size: clamp(18px, 2vw, 22px); }

p { line-height: 1.75; }

/* --- Utilities -------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section    { padding: clamp(60px, 8vw, 100px) var(--pad-x); }
.section-alt { background: var(--grey-light); }
.section-navy { background: var(--navy); }

.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}

.section-intro {
  font-size: 17px; color: var(--grey);
  line-height: 1.75; max-width: 620px;
  margin-top: 14px;
}

.text-teal  { color: var(--teal); }
.text-white { color: var(--white); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer; transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); }

.btn-outline-teal {
  background: transparent; color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

/* --- Navigation ------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: 68px;
  background: var(--navy);
  border-bottom: 3px solid var(--teal);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 42px; width: auto; display: block; }
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 800;
  color: var(--white); letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--teal); display: block; font-weight: 500; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 8px 12px; border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active { color: var(--teal); background: transparent; }

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  background: var(--teal); color: var(--white);
  padding: 10px 20px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--white);
}
.nav-toggle svg { display: block; }

.nav-mobile {
  display: none;
  position: fixed; top: 71px; left: 0; right: 0;
  background: var(--navy-deep);
  border-bottom: 2px solid var(--teal);
  padding: 16px var(--pad-x) 24px;
  z-index: 199;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
}
.nav-mobile a:hover { color: var(--teal); }
.nav-mobile .mob-cta {
  display: block; margin-top: 16px;
  background: var(--teal); color: var(--white);
  text-align: center; padding: 14px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
}

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(480px, 60vh, 640px);
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(26,43,74,0.94) 45%, rgba(0,181,173,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(60px, 8vw, 96px) var(--pad-x);
  max-width: min(720px, 90vw);
}
.hero-eyebrow {
  display: inline-flex; align-items: center;
  background: rgba(0,181,173,0.18);
  border: 1px solid rgba(0,181,173,0.45);
  border-radius: 24px; padding: 6px 16px;
  margin-bottom: 26px;
}
.hero-eyebrow span {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  color: #5de8e0; letter-spacing: 0.12em; text-transform: uppercase;
}

/* --- Hero prominent logo --- */
.hero-logo {
  height: 72px; width: auto;
  display: block;
  margin-bottom: 36px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}
@media (max-width: 768px) {
  .hero-logo { height: 52px; margin-bottom: 24px; }
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.75; margin-bottom: 40px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (internal pages) */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 280px; display: flex; align-items: flex-end;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vw, 72px) var(--pad-x);
}
.page-hero h1 { color: var(--white); margin-top: 10px; }
.page-hero p  { color: rgba(255,255,255,0.68); font-size: 17px; margin-top: 12px; max-width: 560px; }

/* --- Trust Strip ------------------------------------------ */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--pad-x);
}
.trust-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.trust-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  color: #aaa; letter-spacing: 0.1em;
  text-transform: uppercase; white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.trust-logos {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.trust-logo-tile {
  display: inline-flex; align-items: center; justify-content: center;
  height: 68px; padding: 0 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.trust-logo-tile:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 16px rgba(0,181,173,0.15);
}
.trust-logo-tile img {
  height: 36px; width: auto; max-width: 130px;
  display: block;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.25s ease;
}
.trust-logo-tile:hover img {
  filter: grayscale(0%) opacity(1);
}

/* --- Problems --------------------------------------------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 40px;
}
.problem-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal);
}
.problem-card p {
  font-size: 15px; color: var(--grey); line-height: 1.72;
}
.problem-pivot {
  margin-top: 28px; padding: 22px 28px;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal);
}
.problem-pivot p {
  font-size: 17px; font-family: 'Outfit', sans-serif;
  font-weight: 700; color: var(--navy); line-height: 1.45;
}

/* --- Services Cards --------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-top: 40px;
}
.svc-card {
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
}
.svc-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 28px rgba(0,181,173,0.12);
  transform: translateY(-2px);
}
.svc-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.svc-card h3 { font-size: 15px; margin-bottom: 8px; line-height: 1.35; }
.svc-card p  { font-size: 13.5px; color: var(--grey); line-height: 1.65; }
.svc-link    { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--teal); font-weight: 600; }

/* --- Featured Result -------------------------------------- */
.result-block {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  margin-top: 40px;
}
.result-content { padding: 44px; background: var(--white); }
.result-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  color: var(--teal); background: var(--teal-light);
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 20px;
}
.result-content h3 { font-size: 26px; margin-bottom: 24px; }
.result-stats { display: flex; gap: 32px; margin-bottom: 24px; }
.rs-val {
  font-family: 'Outfit', sans-serif;
  font-size: 34px; font-weight: 800;
  color: var(--teal); line-height: 1;
}
.rs-lbl { font-size: 12px; color: #999; margin-top: 4px; }
.result-quote {
  padding: 18px 20px;
  background: var(--grey-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  margin-bottom: 24px;
}
.result-quote p     { font-size: 14px; font-style: italic; color: var(--navy); line-height: 1.65; margin-bottom: 6px; }
.result-quote cite  { font-size: 12px; color: #888; font-style: normal; }
.result-link { font-size: 14px; font-weight: 700; color: var(--teal); }
.result-photo { position: relative; overflow: hidden; }
.result-photo img { width: 100%; height: 100%; object-fit: cover; }
.result-photo-overlay { position: absolute; inset: 0; background: rgba(26,43,74,0.2); }

/* --- Why Stay -------------------------------------------- */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 20px;
}
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 420px; object-fit: cover; }
.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 800;
  color: var(--teal); background: var(--teal-light);
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}
.why-point h3 { font-size: 16px; margin-bottom: 7px; }
.why-point p  { font-size: 14px; color: var(--grey); line-height: 1.72; }

/* --- CTA Banner ------------------------------------------- */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--navy);
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.15); mix-blend-mode: luminosity;
}
.cta-banner-content {
  position: relative; z-index: 2;
  padding: clamp(60px, 8vw, 96px) var(--pad-x);
  text-align: center; max-width: 680px; margin: 0 auto;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.75; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* --- Case Studies (Results page) -------------------------- */
.case-studies { padding: clamp(40px, 6vw, 80px) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.cs-grid { display: grid; gap: 28px; }
.cs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border-left: 5px solid var(--teal);
  transition: box-shadow 0.18s;
}
.cs-card:hover { box-shadow: var(--shadow); }
.cs-meta {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--teal); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 10px;
}
.cs-card h2 { font-size: 22px; margin-bottom: 12px; }
.cs-card .cs-sub { font-size: 14px; color: #888; margin-bottom: 20px; font-style: italic; }
.cs-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  color: var(--grey); letter-spacing: 0.1em;
  text-transform: uppercase; margin: 20px 0 8px;
}
.cs-body { font-size: 15px; color: var(--grey); line-height: 1.75; }
.cs-quote {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.cs-quote p    { font-size: 15px; font-style: italic; color: var(--navy); line-height: 1.65; }
.cs-quote cite { display: block; margin-top: 8px; font-size: 12.5px; color: #888; font-style: normal; font-weight: 600; }
.cs-why {
  margin-top: 20px; padding: 16px 20px;
  background: var(--grey-light);
  border-radius: var(--radius);
  font-size: 14px; color: var(--navy); line-height: 1.7;
}
.cs-why strong { font-family: 'Outfit', sans-serif; font-weight: 700; }

/* --- Services Detail (What We Do) ------------------------- */
.svc-detail-grid { display: grid; gap: 24px; padding: clamp(40px, 6vw, 80px) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.svc-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border-left: 5px solid var(--teal);
  transition: box-shadow 0.18s;
}
.svc-detail-card:hover { box-shadow: var(--shadow); }
.sdc-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.sdc-icon { width: 48px; height: 48px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sdc-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.sdc-header h2 { font-size: 22px; margin-bottom: 4px; }
.sdc-header p  { font-size: 15px; color: var(--grey); line-height: 1.65; }
.sdc-services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sdc-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--navy);
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
  transition: background 0.15s, color 0.15s;
}
.sdc-tag:hover { background: var(--teal-light); color: var(--teal); }
.sdc-note { margin-top: 20px; font-size: 14px; color: var(--grey); line-height: 1.72; }

/* --- Thinking (Blog) -------------------------------------- */
.thinking-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.thinking-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}
.thinking-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.thinking-card-body { padding: 28px; }
.thinking-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  color: var(--teal); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 10px;
}
.thinking-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.42; }
.thinking-card p  { font-size: 14px; color: var(--grey); line-height: 1.68; margin-bottom: 16px; }
.thinking-link { font-size: 13.5px; color: var(--teal); font-weight: 600; }

/* --- About ------------------------------------------------ */
.manifesto-block {
  background: var(--navy); color: var(--white);
  padding: clamp(60px, 8vw, 96px) var(--pad-x);
}
.manifesto-block h2 { color: var(--white); font-size: clamp(28px, 4vw, 44px); line-height: 1.28; max-width: 820px; }
.manifesto-block h2 em { color: var(--teal); font-style: normal; }
.manifesto-block p { color: rgba(255,255,255,0.68); font-size: 17px; line-height: 1.8; max-width: 680px; margin-top: 20px; }

.accreditations { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.acc-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 40px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  text-align: center;
}
.team-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--teal-light); }
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.team-card p  { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* --- Contact ---------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 28px; margin-bottom: 16px; }
.contact-info p  { font-size: 16px; color: var(--grey); line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--grey-light);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.contact-item svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; }
.contact-item a { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-item a:hover { color: var(--teal); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 20px; margin-bottom: 6px; }
.contact-form > p { font-size: 14px; color: var(--grey); margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--teal); color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.15s;
}
.form-submit:hover { background: var(--teal-dark); }

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--navy-deep);
  padding: clamp(48px, 6vw, 72px) var(--pad-x) 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; line-height: 1.75; margin: 16px 0; max-width: 280px; }
.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600;
  color: var(--teal); letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--white); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  padding: 4px 0; transition: color 0.15s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.35); }

/* --- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .result-block  { grid-template-columns: 1fr; }
  .result-photo  { height: 260px; }
  .why-grid      { grid-template-columns: 1fr; }
  .why-image     { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .form-row      { grid-template-columns: 1fr; }
  .cs-card       { padding: 24px 22px; }
  .svc-detail-card { padding: 24px 22px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .result-stats  { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Case study client logo badge --- */
.cs-client-logo {
  position: absolute;
  top: 28px;
  right: 32px;
  height: 40px;
  width: auto;
  max-width: 130px;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.25s ease;
  object-fit: contain;
}
.cs-card:hover .cs-client-logo {
  filter: grayscale(0%) opacity(1);
}
/* Push case study heading to not overlap logo */
.cs-card h2 {
  padding-right: 160px;
}
@media (max-width: 768px) {
  .cs-client-logo { 
    position: static; 
    display: block;
    margin-bottom: 16px;
    filter: grayscale(0%) opacity(1);
  }
  .cs-card h2 { padding-right: 0; }
}

/* Offset anchor scroll targets for fixed nav */
[id] {
  scroll-margin-top: 80px;
}
