/* =========================================================
   Adarsh Solutions — Brand-aligned modern stylesheet
   Brand colors: teal #4FC3C5 / deep teal #398E8E / near-black #101111
   Fonts: Montserrat (headings), Poppins (body)
   ========================================================= */

:root {
  /* Brand */
  --teal: #4FC3C5;
  --teal-deep: #398E8E;      /* brand secondary — for fills, gradients, icons */
  --teal-text: #2C7A7A;      /* AA-safe teal for text on light (≥4.5:1 on white) */
  --teal-50: #E8F8F8;
  --teal-100: #C9EEEE;
  --ink: #101111;
  --ink-2: #1B1F20;
  --ink-3: #2A2F31;

  /* Neutrals */
  --bg: #FBFCFC;
  --bg-2: #F4F7F7;
  --line: #E6ECEC;
  --muted: #5F6B6C;
  --muted-2: #6A7677;        /* AA-safe (~4.5:1 on white) */
  --white: #FFFFFF;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(16, 17, 17, 0.04);
  --shadow-md: 0 12px 32px rgba(16, 17, 17, 0.06);
  --shadow-lg: 0 24px 64px rgba(16, 17, 17, 0.10);
  --shadow-teal: 0 18px 50px rgba(57, 142, 142, 0.25);

  --radius-xs: 12px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Type */
  --f-head: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --f-body: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  /* Spacing */
  --container: 1240px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--teal-text); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Keyboard focus — crisp on-brand ring everywhere (WCAG 2.4.7) */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.primary-nav a:focus-visible,
.mobile-nav a:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 8px; }
/* Light ring on dark surfaces for contrast */
.hero a:focus-visible,
.work a:focus-visible,
.cta-strip a:focus-visible,
.site-footer a:focus-visible,
.person-card-cta a:focus-visible { outline-color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 15px; }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(16,17,17,0.18);
}
.btn-primary:hover {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: var(--shadow-teal);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 252, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 252, 252, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--f-head); font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.brand-tag { font-size: 11px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 32px; align-items: center;
}
.primary-nav a {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav a {
  padding: 14px 0;
  font-family: var(--f-head);
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 12px; align-self: flex-start; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #0E1414 0%, #101A1A 60%, #122323 100%);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  filter: blur(120px);
  opacity: 0.55;
  border-radius: 50%;
}
.hero-glow-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79, 195, 197, 0.55), transparent 70%);
  top: -120px; right: -120px;
}
.hero-glow-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(57, 142, 142, 0.45), transparent 70%);
  bottom: -160px; left: -100px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-copy { max-width: 640px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  font-family: var(--f-head);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C9EEEE;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(79, 195, 197, 0.18);
}

.hero-title {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 22px 0 22px;
}
.grad-text {
  background: linear-gradient(95deg, #4FC3C5 0%, #B5F1F2 60%, #4FC3C5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.hero-cta .btn-ghost:hover { background: #fff; color: var(--ink); }
.hero-cta .btn-primary { background: var(--teal); color: var(--ink); }
.hero-cta .btn-primary:hover { background: #fff; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 560px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.hero-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: .02em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;            /* fill the grid column; without this the box collapses (only absolute children) */
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 30%, rgba(79,195,197,0.18), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* no overflow:hidden — the <img> rounds itself, and the floating cards must spill outside */
}
.hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  opacity: 0.95;
}

.hero-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(15, 22, 22, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  min-width: 160px;
}
.hero-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.55);
}
.hero-card-value {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--teal);
}
.hero-card-foot {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.hero-card-1 { top: 8%; left: -8%; animation: float 7s ease-in-out infinite; }
.hero-card-2 { bottom: 14%; right: -6%; animation: float 9s ease-in-out infinite reverse; }
.hero-card-3 { top: 46%; right: 8%; animation: float 11s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.trust-label {
  font-family: var(--f-head);
  font-weight: 500;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-cell span {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-cell p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
}

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head-center { margin-inline: auto; text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid var(--teal-100);
  background: var(--teal-50);
  border-radius: 999px;
}

.section-title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding: 110px 0; background: var(--bg-2); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-media img { transform: scale(1.05); }
.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,17,17,0.35) 100%);
}
.service-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 1;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: #fff;
  background: rgba(15, 22, 22, 0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.service-badge svg { width: 22px; height: 22px; }

.service-body { padding: 28px 32px 32px; }

.service-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.service-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service-tags li {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink-3);
  letter-spacing: .03em;
}

/* =========================================================
   WHY
   ========================================================= */
.why {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(79,195,197,0.05), transparent 70%),
    var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item {
  background: var(--white);
  padding: 36px;
  transition: background .25s ease;
}
.why-item:hover { background: var(--teal-50); }
.why-num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--teal-text);
  letter-spacing: .15em;
  display: block;
  margin-bottom: 14px;
}
.why-item h3 {
  font-size: 19px;
  margin: 0 0 10px;
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}
.why-item em { color: var(--ink); font-style: italic; }

/* =========================================================
   CASE STUDIES
   ========================================================= */
.work { padding: 110px 0; background: var(--ink); color: #fff; position: relative; }
.work::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(79,195,197,0.18), transparent 70%);
  pointer-events: none;
}
.work .container { position: relative; }
.work .section-eyebrow { color: var(--teal); background: rgba(79,195,197,0.10); border-color: rgba(79,195,197,0.25); }
.work .section-title { color: #fff; }
.work .section-sub { color: rgba(255,255,255,0.6); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,195,197,0.4);
  background: rgba(79,195,197,0.05);
}
.case-media {
  margin: -32px -32px 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.case-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-card:hover .case-media img { transform: scale(1.05); }
.case-tag {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 12px;
  background: rgba(79,195,197,0.10);
  border-radius: 999px;
  margin-bottom: 20px;
}
.case-card h3 {
  font-size: 22px;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
}
.case-context {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.case-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.case-row div { display: flex; flex-direction: column; gap: 4px; }
.case-row span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.45);
}
.case-row strong {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #EFF6F6 100%);
}
/* Hairline boundaries so adjacent light sections read as distinct bands */
.services, .testimonials, .leadership, .contact { border-top: 1px solid var(--line); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 0;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
  width: 32px; height: 32px;
  color: var(--teal);
  opacity: .85;
  margin-bottom: 16px;
}
.quote-card blockquote {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.quote-card figcaption strong {
  font-family: var(--f-head);
  font-size: 15px;
  color: var(--ink);
}
.quote-card figcaption span {
  font-size: 13px;
  color: var(--muted);
}

/* =========================================================
   LEADERSHIP
   ========================================================= */
.leadership { padding: 110px 0; background: var(--bg-2); }

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.person-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }

.person-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: .01em;
  color: #fff;
  box-shadow: 0 6px 18px rgba(57, 142, 142, 0.28);
}
/* Drop a real headshot in later as <img> inside .person-photo — it covers the monogram, zero markup churn elsewhere */
.person-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.person-card h3 {
  font-size: 18px;
  margin: 0 0 4px;
}
.person-role {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-text);
  margin: 0 0 16px;
  letter-spacing: .01em;
}
.person-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.person-card-cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-color: transparent;
}
.person-card-cta:hover { background: linear-gradient(135deg, var(--teal-deep) 0%, var(--ink) 100%); }
.person-card-cta h3 { color: #fff; font-size: 22px; line-height: 1.3; margin: 0; }
.person-card-cta p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0 0 8px; }
.person-card-cta .btn-primary { align-self: flex-start; background: var(--teal); color: var(--ink); }
.person-card-cta .btn-primary:hover { background: #fff; }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at top right, rgba(79,195,197,0.18), transparent 60%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 8px;
  max-width: 700px;
}
.cta-inner p { color: rgba(255,255,255,0.7); margin: 0; font-size: 16px; }
.cta-inner .btn-primary { background: var(--teal); color: var(--ink); }
.cta-inner .btn-primary:hover { background: #fff; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: 110px 0; background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy .section-title { font-size: clamp(28px, 3vw, 42px); }
.contact-copy > p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 32px;
}

.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list svg {
  width: 22px; height: 22px;
  color: var(--teal-text);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-list div { display: flex; flex-direction: column; gap: 4px; }
.contact-list strong {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list span,
.contact-list a {
  font-size: 15px;
  color: var(--ink);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label,
.form-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-full { margin-bottom: 20px; }
.contact-form label span {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--f-body);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1.5px solid transparent;
  border-radius: var(--radius-xs);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(79, 195, 197, 0.15);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
}
.footer-brand img { width: 56px; height: 56px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  line-height: 1.7;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
}
.footer-cols ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-cols a,
.footer-cols li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color .2s ease;
}
.footer-cols a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--teal); }

/* =========================================================
   SUB-PAGES (careers, privacy)
   ========================================================= */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #0E1414 0%, #122323 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(79,195,197,0.25), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  margin: 16px 0 16px;
  max-width: 800px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
}
.page-hero .eyebrow {
  background: rgba(79,195,197,0.10);
  border-color: rgba(79,195,197,0.25);
  color: var(--teal);
}

.page-content { padding: 80px 0 110px; }
.page-content .container { max-width: 800px; }
.page-content h2 {
  font-size: 28px;
  margin: 40px 0 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p,
.page-content li {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
}
.page-content ul { padding-left: 22px; }
.page-content ul li { margin-bottom: 8px; }

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.role-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
}
.role-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.role-card h3 { font-size: 19px; margin: 0 0 8px; }
.role-card .role-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 14px;
}
.role-card p { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.role-card a { font-family: var(--f-head); font-weight: 600; font-size: 14px; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  /* keep floating cards inside the now-centered visual */
  .hero-card-1 { left: 0; }
  .hero-card-2 { right: 0; }
  .hero-card-3 { right: 4%; }
  .service-grid,
  .quote-grid,
  .case-grid,
  .people-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .case-row { grid-template-columns: 1fr; gap: 8px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 56px 0 72px; }
  .trust, .services, .why, .work, .testimonials, .leadership, .contact { padding: 72px 0; }
  .cta-strip { padding: 56px 0; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-card { display: none; }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .service-grid,
  .quote-grid,
  .case-grid,
  .people-grid,
  .why-grid,
  .footer-cols { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }

  .service-card,
  .case-card,
  .quote-card,
  .person-card,
  .contact-form { padding: 28px; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
