/* ============================================================
   WR360 Main Stylesheet
   Import order: tokens.css → main.css
   ============================================================ */

/* ── Animations ───────────────────────────────────────────── */
@keyframes om-circle-draw {
  from {
    stroke-dasharray: 1413;
    stroke-dashoffset: 1413;
    opacity: 0;
  }
  to {
    stroke-dasharray: 1413;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes om-dot-scale {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes om-text-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes om-orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes om-pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(70, 192, 188, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(70, 192, 188, 0.6));
  }
}

.om-circle-1 {
  animation: om-circle-draw 2s ease-in-out 0.2s forwards;
}

.om-circle-2 {
  animation: om-circle-draw 2s ease-in-out 0.6s forwards;
}

.om-circle-3 {
  animation: om-circle-draw 2s ease-in-out 1s forwards, om-pulse-glow 2s ease-in-out 3.8s infinite;
}

.om-dot-1 { animation: om-dot-scale 0.6s ease-out 1.8s forwards; }
.om-dot-2 { animation: om-dot-scale 0.6s ease-out 2s forwards; }
.om-dot-3 { animation: om-dot-scale 0.6s ease-out 2.2s forwards; }
.om-dot-4 { animation: om-dot-scale 0.6s ease-out 2.4s forwards; }
.om-dot-5 { animation: om-dot-scale 0.6s ease-out 2.6s forwards; }
.om-dot-6 { animation: om-dot-scale 0.6s ease-out 2.8s forwards; }

.om-text-fade {
  animation: om-text-fade 0.8s ease-in 3s forwards;
  opacity: 0;
}

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--fog);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { text-wrap: pretty; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--page-pad);
  height: var(--nav-height);
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61,192,188,0.12);
  transition: background .3s;
}
.nav.scrolled { background: rgba(13,17,23,0.97); }
.nav-logo {
  display: flex; align-items: center;
  color: var(--white); text-decoration: none;
}
.nav-wordmark {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--white); letter-spacing: -0.5px;
  transition: opacity .2s;
}
.nav-wordmark span { color: var(--teal); }
.nav-logo:hover .nav-wordmark { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 8px; border-left: 1px solid rgba(255,255,255,0.12); padding-left: 24px; }
.nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--teal); font-weight: 600; }
.nav-links a.nav-cta {
  background: var(--teal); color: var(--ink);
  font-weight: 600; padding: 8px 18px;
}
.nav-links a.nav-cta:hover { background: var(--teal-light); }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--ink);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--r-md);
  border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(70,192,188,.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--r-md);
  border: 1.5px solid rgba(13,17,23,0.15); cursor: pointer;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: var(--r-md);
  border: none; cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.btn-dark:hover { background: var(--ink-mid); transform: translateY(-1px); }
.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--ink);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: var(--r-md);
  border: none; cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.btn-teal:hover { background: var(--teal-light); transform: translateY(-1px); }

/* ── Section utilities ────────────────────────────────────── */
.section { padding: 40px var(--page-pad); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px; background: var(--teal);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.1;
  color: var(--ink); margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--teal); }
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 17px; font-weight: 300; line-height: 1.6;
  color: var(--text-body); max-width: 65ch;
}
.section-sub.light { color: rgba(255,255,255,0.55); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--teal); }

/* ── Tags / badges ────────────────────────────────────────── */
.tag {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
  background: rgba(70,192,188,0.1); color: var(--teal);
}
.tag.amber { background: rgba(232,135,42,0.1); color: var(--amber); }
.tag.dark { background: rgba(70,192,188,0.15); color: var(--teal); }
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  padding: 60px var(--page-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band.teal { background: var(--teal); }
.cta-band.teal h2 { color: var(--ink); }
.cta-band.dark { background: var(--ink); }
.cta-band.dark h2 { color: var(--white); }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.1;
  max-width: 560px;
}
.cta-band h2 em { font-style: normal; color: var(--teal); }

/* ── Trust / partner bar ──────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(13,17,23,0.06);
  padding: 32px var(--page-pad);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 48px;
  row-gap: 16px;
  grid-auto-flow: dense;
}
.trust-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); white-space: nowrap;
  grid-column: 1;
  grid-row: 1;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  grid-column: 2;
  grid-row: 1;
}
.trust-logo-item {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.05em; opacity: 0.6;
  transition: opacity .2s;
}
.trust-logo-item:hover { opacity: 1; }
.trust-support {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 600px;
  grid-column: 1 / -1;
  grid-row: 2;
}

/* ── Homepage hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-inner {
  width: 100%;
  padding: 80px var(--page-pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 2;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(70,192,188,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,192,188,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; top: 10%; right: 15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(70,192,188,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
}
.eyebrow--hero { font-size: 12px; letter-spacing: 0.12em; margin-bottom: 28px; }
.eyebrow--hero::before { width: 24px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700; line-height: 1.05; letter-spacing: -2px;
  color: var(--white); margin-bottom: 28px;
}
.hero-headline em { font-style: normal; color: var(--teal); }
.hero-body {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: var(--text-on-dark-body); max-width: 460px; margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: var(--white); letter-spacing: -1px;
}
.stat-num span { color: var(--teal); }
.stat-label {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px;
}
.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 16px;
}
.service-pill {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 18px 20px; cursor: default;
  transition: background .25s, border-color .25s, transform .25s;
  animation: fadeSlideIn .6s var(--ease) both;
}
.service-pill:hover {
  background: rgba(70,192,188,0.08);
  border-color: rgba(70,192,188,0.3);
  transform: translateX(6px);
}
.service-pill-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.service-pill-text h4 {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--white); margin-bottom: 2px;
}
.service-pill-text p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Services section (homepage) ─────────────────────────── */
.services-section { background: var(--fog); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── Shared card base ─────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid rgba(13,17,23,0.07);
  border-radius: var(--r-lg);
}

/* ── Service cards ────────────────────────────────────────── */
.service-card {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer; transition: box-shadow .25s, transform .25s, border-color .25s;
  text-decoration: none; color: inherit;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(13,17,23,.1); transform: translateY(-3px);
  border-color: rgba(70,192,188,0.25);
}
.service-card.dark { background: var(--ink); border-color: transparent; }
.service-card.dark h3 { color: var(--white); }
.service-card.dark p { color: rgba(255,255,255,0.6); }
.service-card.featured {
  background: var(--ink); border-color: transparent;
}
.service-card.featured h3 { color: var(--white); font-size: 22px; }
.service-card.featured p { color: rgba(255,255,255,0.55); font-size: 15px; }
.service-card.featured-lg {
  background: var(--ink) !important; border: 1px solid rgba(70,192,188,0.2) !important;
  display: flex; flex-direction: row; align-items: center; gap: 48px; padding: 48px 56px;
}
.service-card.featured-lg h3 { color: #ffffff !important; font-size: 24px; }
.service-card.featured-lg p { color: rgba(255, 255, 255, 0.95) !important; font-size: 16px; }
.service-card.featured-lg .svc-icon { width: 80px; height: 80px; font-size: 36px; }
.service-card-icon, .svc-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.service-card h3, .svc-card h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: var(--ink); line-height: 1.3;
}
.service-card p, .svc-card p {
  font-size: 14px; line-height: 1.6; color: var(--text-body); flex: 1;
}
.service-card-link, .svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 4px;
  transition: gap .2s;
}
.service-card:hover .service-card-link,
.svc-card:hover .svc-link { gap: 10px; }
.svc-link.white { color: rgba(255,255,255,0.6); }
.svc-card:hover .svc-link.white { color: var(--teal); }

/* ── Services listing page ────────────────────────────────── */
.svc-card {
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(13,17,23,.1); transform: translateY(-3px);
  border-color: rgba(70,192,188,.25);
}
.svc-card.dark { background: var(--ink); border-color: transparent; }
.svc-card.dark h3 { color: var(--white); }
.svc-card.dark p { color: rgba(255,255,255,0.5); }
.svc-card.featured-lg {
  background: var(--ink) !important; border: 1px solid rgba(70,192,188,0.2) !important;
  display: flex; flex-direction: row; align-items: center; gap: 48px; padding: 48px 56px;
}
.svc-card.featured-lg h3 { color: #ffffff !important; font-size: 24px; }
.svc-card.featured-lg p { color: rgba(255, 255, 255, 0.95) !important; font-size: 16px; }

/* ── Category tabs ────────────────────────────────────────── */
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 56px; }
.cat-tab {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 8px 18px; border-radius: 24px;
  border: 1px solid rgba(13,17,23,0.12);
  background: var(--white); color: var(--text-body);
  cursor: pointer; transition: all .2s;
}
.cat-tab:hover, .cat-tab.active {
  background: var(--teal); color: var(--ink);
  border-color: var(--teal); font-weight: 600;
}

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--ink); padding: 140px var(--page-pad) 80px;
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(70,192,188,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,192,188,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.05;
  color: var(--white); margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--teal); }
.page-hero p {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 520px;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  padding: 88px var(--page-pad) 0;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--ink); font-weight: 500; }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.4; }

/* ── Service / job detail page ────────────────────────────── */

/* Outer single grid: left column (breadcrumb → title → body) + sticky sidebar */
.svc-page {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start;
  padding: 40px var(--page-pad) 80px;
}
.svc-page-main { display: flex; flex-direction: column; min-width: 0; }

/* Hero header within the left column */
.svc-head {
  padding-bottom: 40px; margin-bottom: 40px;
  border-bottom: 1px solid rgba(13,17,23,0.08);
}
.svc-head h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 54px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.08;
  color: var(--ink); margin-bottom: 20px;
}

/* Legacy two-grid layout (kept for any custom templates that still use it) */
.svc-hero {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start; padding: 40px var(--page-pad) 80px;
}
.svc-tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(70,192,188,0.1); color: var(--teal);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 20px;
}
.svc-hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 54px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.08;
  color: var(--ink); margin-bottom: 20px;
}
.svc-hero h1 em { font-style: normal; color: var(--teal); }
.svc-hero-lead {
  font-size: 18px; font-weight: 300; line-height: 1.75;
  color: var(--text-body); max-width: 580px; margin-bottom: 36px;
}
.svc-hero-actions { display: flex; gap: 12px; }

/* Sidebar */
.svc-sidebar {
  position: sticky; top: 88px;
  background: var(--white); border: 1px solid rgba(13,17,23,0.08);
  border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-card);
}
.svc-sidebar h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--ink); margin-bottom: 20px;
}
.sidebar-items { display: flex; flex-direction: column; gap: 12px; }
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-body);
}
.sidebar-item::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%; flex-shrink: 0;
}
.sidebar-divider { height: 1px; background: rgba(13,17,23,0.07); margin: 20px 0; }
.sidebar-cta { display: flex; flex-direction: column; gap: 10px; }
.sidebar-btn-primary {
  display: block; width: 100%; text-align: center;
  background: var(--teal); color: var(--ink);
  font-size: 14px; font-weight: 600; padding: 12px;
  border-radius: var(--r-md); border: none; cursor: pointer;
  text-decoration: none; transition: background .2s;
}
.sidebar-btn-primary:hover { background: var(--teal-dark); }
.sidebar-btn-outline {
  display: block; width: 100%; text-align: center;
  background: transparent; color: var(--text-body);
  font-size: 14px; font-weight: 500; padding: 12px;
  border-radius: var(--r-md); border: 1.5px solid rgba(13,17,23,0.12); cursor: pointer;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.sidebar-btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.sidebar-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 4px; }

/* Content sections */
.content-wrap {
  padding: 0 var(--page-pad) 80px;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start;
}
.content-section { margin-bottom: 64px; }
.content-section .section-label { font-size: 13px; letter-spacing: 0.1em; }
.content-section .section-label::before { width: 24px; }
.content-section h2 {
  font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700; letter-spacing: -1px; color: var(--ink); margin-bottom: 20px;
}
.content-section p {
  font-size: 16px; line-height: 1.6; color: var(--text-body); margin-bottom: 16px;
}
.deliver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.deliver-item {
  background: var(--white); border: 1px solid rgba(13,17,23,0.07);
  border-radius: var(--r-md); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.deliver-item-head { display: flex; align-items: center; gap: 10px; }
.deliver-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(70,192,188,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.deliver-item h4 {
  font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--ink);
}
.deliver-item p { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* Process steps */
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid rgba(13,17,23,0.06);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--ink); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
}
.step-content h4 {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.step-content p { font-size: 14px; line-height: 1.7; color: var(--text-body); margin: 0; }

/* Compliance badges */
.compliance-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.compliance-badge {
  background: var(--white); border: 1px solid rgba(13,17,23,0.08);
  border-radius: var(--r-md); padding: 14px 18px; text-align: center; min-width: 100px;
}
.compliance-badge .badge-label {
  font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--teal);
}
.compliance-badge .badge-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Highlight box */
.highlight-box {
  background: var(--ink-mid); border: 1px solid rgba(70,192,188,0.15);
  border-radius: var(--r-lg); padding: 32px 28px; margin: 32px 0;
  color: rgba(255,255,255,0.8);
}
.highlight-box p { color: rgba(255,255,255,0.8); }
.highlight-box strong { color: var(--white); font-weight: 600; }

/* Veeam partner section */
.partner-band {
  background: var(--ink-mid); border-top: 1px solid rgba(70,192,188,0.12);
  border-bottom: 1px solid rgba(70,192,188,0.12);
  padding: 48px var(--page-pad);
  display: flex; align-items: center; gap: 48px;
}
.partner-badge {
  background: rgba(70,192,188,0.1); border: 1px solid rgba(70,192,188,0.25);
  border-radius: var(--r-lg); padding: 20px 28px; white-space: nowrap;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--teal); letter-spacing: 0.05em;
}
.partner-band p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); }

/* Related services */
.related-section { padding: 0 var(--page-pad) 80px; }
.related-section h2 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  letter-spacing: -0.5px; margin-bottom: 24px;
}
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card {
  background: var(--white); border: 1px solid rgba(13,17,23,0.07);
  border-radius: var(--r-lg); padding: 24px 20px;
  cursor: pointer; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.related-card:hover {
  box-shadow: 0 8px 24px rgba(13,17,23,.08); transform: translateY(-2px);
  border-color: rgba(70,192,188,.2);
}
.related-card h4 {
  font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink);
}
.related-card p { font-size: 13px; line-height: 1.6; color: var(--text-body); flex: 1; }
.related-link {
  font-size: 12px; font-weight: 600; color: var(--teal);
  display: flex; align-items: center; gap: 4px; transition: gap .2s;
}
.related-card:hover .related-link { gap: 8px; }

/* ── Operating model section ──────────────────────────────── */
.om-section {
  background: var(--ink);
  padding: 60px var(--page-pad);
  --om-text-secondary: #a8b0b8;
  --om-text-muted:     #8b919a;
}
.om-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px; align-items: center;
  margin-bottom: 48px;
}
.eyebrow--section { display: flex; font-size: 12px; letter-spacing: 0.18em; gap: 12px; margin-bottom: 24px; }
.eyebrow--section::before { width: 32px; height: 1px; }
.om-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--white); margin: 0 0 8px;
}
.om-headline--accent { color: var(--teal); margin-bottom: 32px; }
.om-intro {
  font-size: 16px; line-height: 1.7;
  color: var(--text-on-dark-body);
  margin: 0 0 20px; max-width: 480px;
}
.om-intro:last-child { margin-bottom: 0; }

.om-diagram-wrap { display: flex; align-items: center; justify-content: center; }
.om-diagram { width: 100%; max-width: 650px; height: auto; }

.om-domains {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.om-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color .2s, background .2s;
}
.om-card:hover {
  border-color: rgba(70,192,188,0.4);
  background: rgba(255,255,255,0.05);
}
.om-card--accent { border-color: rgba(70,192,188,0.3); }
.om-card-number {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.om-card-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  color: var(--white); margin: 0 0 10px;
}
.om-card-desc {
  font-size: 13px; line-height: 1.6;
  color: var(--text-on-dark-body); margin: 0;
}

/* ── Why WR360 section ────────────────────────────────────── */
.why-section { background: var(--ink); color: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.why-pillar {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg); padding: 24px 20px;
}
.why-pillar-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: var(--teal); letter-spacing: -1px; line-height: 1; margin-bottom: 12px;
}
.why-pillar h4 {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--white); margin-bottom: 6px;
}
.why-pillar p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.60); }

/* Orbit visualisation */
.why-visual {
  position: relative; height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.why-visual-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(70,192,188,0.15);
}
.why-visual-center {
  width: 120px; height: 120px;
  background: rgba(70,192,188,0.12); border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--teal); text-align: center; line-height: 1.3; z-index: 2;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(70,192,188,0.3); }
  50%       { box-shadow: 0 0 0 20px rgba(70,192,188,0); }
}
.orbit-dot {
  position: absolute; width: 10px; height: 10px;
  background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 12px rgba(70,192,188,0.6);
}
.orbit-label {
  position: absolute; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.7); white-space: nowrap;
  font-family: var(--font-body);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.5);
  padding: 64px var(--page-pad) 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-wordmark {
  display: block; margin-bottom: 16px;
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--white); letter-spacing: -0.5px;
}
.footer-wordmark span { color: var(--teal); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.55);
  margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.55);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.55); font-size: 12px; transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--teal); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .om-hero { grid-template-columns: 1fr; gap: 48px; }
  .om-domains { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-page { grid-template-columns: 1fr; padding: 40px var(--page-pad) 60px; }
  .svc-hero { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .content-wrap { grid-template-columns: 1fr; }
  .content-wrap > div:last-child { display: none; }
}
@media (max-width: 768px) {
  :root { --page-pad: var(--page-pad-sm); }
  .nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(13,17,23,0.98); backdrop-filter: blur(12px);
    padding: 8px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-left: none;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 15px; }
  .nav-links a.nav-cta { margin-top: 8px; text-align: center; }
  .hero-inner { padding-top: 60px; padding-bottom: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-page { padding: 24px var(--page-pad-sm) 48px; }
  .svc-hero { padding: 24px 24px 48px; }
  .page-hero { padding: 100px 24px 60px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 48px 24px; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .deliver-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .om-domains { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .om-domains .om-card:nth-child(5) { grid-column: 1 / -1; }
}

/* ── Policy pages ────────────────────────────────────────── */
.policy-updated {
  font-size: 13px; color: var(--text-muted); margin-bottom: 40px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(13,17,23,0.08);
}
.policy-body h2 { margin-top: 56px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body h3 { color: var(--text-body); }

/* ── RSS link ─────────────────────────────────────────────── */
.rss-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color .2s;
}
.rss-link:hover { color: var(--teal); }

/* ── Blog listing page ────────────────────────────────────── */
.blog-main { padding: 72px var(--page-pad) 80px; }

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

.blog-card {
  background: var(--white);
  border: 1px solid rgba(13,17,23,0.07);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  text-decoration: none; color: inherit;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
  border-color: rgba(70,192,188,.25);
}

.blog-card-featured {
  grid-column: 1 / -1;
  background: var(--ink) !important;
  border: 1px solid rgba(70,192,188,0.2) !important;
  flex-direction: row; align-items: center; gap: 48px;
  padding: 48px 56px;
}
.blog-card-featured .blog-date,
.blog-card-featured .blog-read-time { color: rgba(255,255,255,0.9); }
.blog-card-featured h3 {
  font-size: 24px; color: #ffffff !important; letter-spacing: -0.5px;
}
.blog-card-featured p { font-size: 16px; color: rgba(255, 255, 255, 0.95) !important; }
.blog-card-featured .blog-read-more { color: var(--teal); }
.blog-card-featured:hover .blog-read-more { color: var(--teal); }

.blog-card-accent {
  width: 80px; height: 80px;
  background: rgba(70,192,188,0.2);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.blog-card-featured-body {
  flex: 1; display: flex; flex-direction: column; gap: 14px;
}

.blog-card-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.blog-date { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.blog-read-time { font-size: 12px; color: var(--text-muted); }

.blog-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--ink); line-height: 1.3; letter-spacing: -0.3px;
}
.blog-card p { font-size: 14px; line-height: 1.7; color: var(--text-body); flex: 1; }

.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto;
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal); transition: gap .2s;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ── Blog single (article) page ───────────────────────────── */
.article-header {
  padding: 40px var(--page-pad) 40px;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.08;
  color: var(--ink); margin: 16px 0 20px;
}
.article-lead {
  font-size: 19px; font-weight: 300; line-height: 1.7; color: var(--text-body);
}
.article-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}
.article-meta-item { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.article-meta-sep {
  width: 3px; height: 3px;
  background: var(--text-muted); border-radius: 50%; opacity: 0.5; flex-shrink: 0;
}
.article-divider-line {
  border: none; border-top: 1px solid rgba(13,17,23,0.08); margin: 0;
}
.article-wrap {
  padding: 48px var(--page-pad) 80px;
}

/* Article body — prose column */
.article-body { max-width: 65ch; margin: 0 auto; }
/* When article-body is a grid cell rather than a standalone column, undo centering */
.content-main.article-body { max-width: none; margin: 0; }

/* Article body typography */
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700; letter-spacing: -0.8px; line-height: 1.2;
  color: var(--ink); margin: 48px 0 16px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600; letter-spacing: -0.4px; line-height: 1.3;
  color: var(--ink); margin: 36px 0 12px;
}
.article-body p { font-size: 16px; line-height: 1.6; color: var(--text-body); margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 16px; line-height: 1.6; color: var(--text-body); margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--teal);
  background: rgba(70,192,188,0.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 24px; margin: 32px 0;
}
.article-body blockquote p {
  font-size: 18px; font-style: italic; font-weight: 300; color: var(--ink); margin: 0;
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body .highlight-box,
.article-body .highlight-box p,
.article-body .highlight-box li { color: rgba(255,255,255,0.8); }
.article-body .highlight-box strong { color: var(--white); }
.article-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--teal-dark); }
.article-body code {
  font-family: 'Courier New', monospace; font-size: 13px;
  background: rgba(13,17,23,0.06); padding: 2px 6px; border-radius: var(--r-sm); color: var(--ink);
}
.article-body hr { border: none; border-top: 1px solid rgba(13,17,23,0.08); margin: 40px 0; }

.article-tags {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  max-width: 65ch; margin: 40px auto 0;
  padding-top: 40px; border-top: 1px solid rgba(13,17,23,0.08);
}
.article-tags-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
}

/* ── Blog responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card-featured { padding: 36px 32px; gap: 32px; }
}
@media (max-width: 768px) {
  .blog-main { padding: 48px var(--page-pad-sm); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .article-header { padding: 24px var(--page-pad-sm) 32px; }
  .article-wrap { padding: 40px var(--page-pad-sm) 60px; }
}

/* ── Prose utility ─────────────────────────────────────────── */
.prose-measure { max-width: var(--prose-max); }

/* ── Shared long-form prose ──────────────────────────────────── */
.about-mission p,
.about-approach p,
.about-principles p,
.about-who-we-work-with p,
.about-capacity p,
.services-note p,
.services-organized > p,
.services-approach p,
.services-sectors p {
  max-width: var(--prose-max);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ── About page ───────────────────────────────────────────── */
.about-mission { background: var(--white); }

.about-mission p { color: var(--text-body); margin-bottom: 16px; }

.about-approach { background: var(--ink); }

.about-approach p { margin-bottom: 20px; }

.about-approach p:last-of-type { margin-bottom: 0; }

.about-principles p { margin-bottom: 20px; }

.about-principles p:last-of-type { margin-bottom: 0; }

.about-principles { background: var(--fog); }

.about-who-we-work-with { background: var(--white); }

.about-who-we-work-with p { color: var(--text-body); margin-bottom: 16px; }

.about-capacity { background: var(--fog); }

.about-capacity p { color: var(--text-body); margin-bottom: 16px; }


.about-approach .section-title,
.about-approach .section-title em {
  color: var(--white);
}

.about-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}

.about-pillar {
  padding: 28px 24px;
}

.about-pillar h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px; line-height: 1.3;
}

.about-pillar p { font-size: 13px; line-height: 1.75; color: var(--text-body); margin: 0; }

.about-stats {
  display: flex; gap: 56px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 48px;
  border-top: 1px solid rgba(13,17,23,0.08);
}
.about-stat-num {
  font-family: var(--font-display); font-size: 42px; font-weight: 700;
  color: var(--ink); letter-spacing: -1.5px; line-height: 1;
}
.about-stat-num span { color: var(--teal); }
.about-stat-label {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px;
}

.about-coverage {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px var(--page-pad);
}

.about-coverage-text p { font-size: 16px; line-height: 1.6; color: var(--text-body); margin-bottom: 16px; }

.about-coverage-card {
  background: var(--fog); border: 1px solid rgba(13,17,23,0.07);
  border-radius: var(--r-lg); padding: 0; overflow: hidden;
}

.about-coverage-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 28px; border-bottom: 1px solid rgba(13,17,23,0.07);
}

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

.about-coverage-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(70,192,188,0.1); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: #46C0BC;
}

.about-coverage-item h4 {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--ink); margin-bottom: 4px; margin-top: 0;
}

.about-coverage-item p { font-size: 13px; line-height: 1.5; color: var(--text-muted); margin: 0; }

/* About responsive */
@media (max-width: 1024px) {
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .about-coverage { grid-template-columns: 1fr; gap: 48px; padding: 80px var(--page-pad); }
}
@media (max-width: 768px) {
  .about-stats { gap: 28px; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-coverage { padding: 60px var(--page-pad-sm); }
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-wrap {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 64px; align-items: start;
  padding: 80px var(--page-pad);
}
.contact-info { position: sticky; top: 88px; }
.contact-info-heading {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--ink); margin-bottom: 32px;
}
.contact-detail-list { display: flex; flex-direction: column; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(13,17,23,0.07);
}
.contact-detail:first-child { border-top: 1px solid rgba(13,17,23,0.07); }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(70,192,188,0.1); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  color: #46C0BC;
}
.contact-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px;
}
.contact-value { font-size: 14px; color: var(--ink); line-height: 1.6; text-decoration: none; }
a.contact-value:hover { color: var(--teal); }

.contact-portal-card {
  background: var(--ink); border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-portal-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal);
}
.contact-portal-card p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.contact-portal-btn {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-md);
  padding: 10px 18px; text-decoration: none; align-self: flex-start;
  transition: border-color .2s, color .2s;
}
.contact-portal-btn:hover { border-color: var(--teal); color: var(--teal); }

.contact-form-card {
  background: var(--white); border: 1px solid rgba(13,17,23,0.07);
  border-radius: var(--r-lg); padding: 48px 40px; box-shadow: var(--shadow-card);
}

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-optional { font-weight: 400; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--fog); border: 1.5px solid rgba(13,17,23,0.1);
  border-radius: var(--r-md); padding: 12px 16px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(70,192,188,0.12); background: var(--white);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7590' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 8px; flex-wrap: wrap;
}
.form-popi { font-size: 12px; line-height: 1.6; color: var(--text-muted); max-width: 400px; }
.form-popi a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* Contact responsive */
@media (max-width: 1024px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
}
@media (max-width: 768px) {
  .contact-wrap { padding: 48px var(--page-pad-sm); }
  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { flex-direction: column; align-items: flex-start; }
}

/* ── Careers pages ────────────────────────────────────────── */
.careers-main { padding: 80px var(--page-pad); }

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

.job-card {
  background: var(--white); border: 1px solid rgba(13,17,23,0.07);
  border-radius: var(--r-lg); padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  text-decoration: none; color: inherit;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.job-card:hover {
  box-shadow: var(--shadow-lift); transform: translateY(-3px);
  border-color: rgba(70,192,188,.25);
}
.job-card-top { display: flex; flex-direction: column; gap: 14px; }
.job-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.job-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; width: 100%; margin-bottom: 20px; }
.job-badges .svc-tag-pill { margin-bottom: 0; }
.job-type {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
  background: rgba(13,17,23,0.06); color: var(--text-muted);
}
.job-location { font-size: 13px; color: var(--text-muted); }
.job-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--ink); line-height: 1.3; letter-spacing: -0.3px;
}
.job-card p { font-size: 14px; line-height: 1.7; color: var(--text-body); }

.careers-empty { text-align: center; padding: 40px 0; }
.careers-empty p { font-size: 17px; color: var(--text-body); }

.careers-why { color: var(--white); }
.careers-values {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.careers-value {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.careers-value-icon { font-size: 28px; color: var(--teal); display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; }
.careers-value h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--white); line-height: 1.3;
}
.careers-value p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.6); }

/* Job content body */
.job-body h2 {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; letter-spacing: -0.6px; color: var(--ink);
  margin: 40px 0 14px;
}
.job-body h2:first-child { margin-top: 0; }
.job-body p { font-size: 16px; line-height: 1.6; color: var(--text-body); margin-bottom: 16px; }
.job-body ul { padding-left: 22px; margin-bottom: 16px; }
.job-body li { font-size: 15px; line-height: 1.6; color: var(--text-body); margin-bottom: 6px; }
.job-body strong { color: var(--ink); font-weight: 600; }

/* Careers responsive */
@media (max-width: 1024px) {
  .careers-values { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .careers-main { padding: 48px var(--page-pad-sm); }
  .careers-values { grid-template-columns: 1fr 1fr; }
}

/* Tags section */
.tags-section {
  padding: 80px var(--page-pad);
  background: var(--white);
}
.tags-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.tag-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 32px 24px;
  background: var(--fog); border: 1px solid rgba(13,17,23,0.07);
  border-radius: var(--r-lg);
  text-align: center; text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.tag-card:hover {
  background: rgba(70,192,188,0.06); border-color: var(--teal);
  transform: translateY(-2px);
}
.tag-card-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--ink); line-height: 1.3;
}
.tag-card-count {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-muted);
}
.tag-card-arrow {
  font-size: 18px; color: var(--text-muted);
  opacity: 0; transition: opacity .2s; margin-top: 4px;
}
.tag-card:hover .tag-card-arrow { opacity: 1; }

/* Tags responsive */
@media (max-width: 768px) {
  .tags-section { padding: 60px var(--page-pad-sm); }
  .tags-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .tag-card { padding: 28px 16px; }
  .tag-card-count { font-size: 28px; }
  .tag-card-name { font-size: 14px; }
}

/* Services page sections */
.services-note {
  background: var(--white);
}
.services-note p { margin-bottom: 16px; }

.services-organized {
  background: var(--fog);
}
.services-organized > p { margin-bottom: 16px; }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.practice-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(13,17,23,.05);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.practice-card:hover {
  box-shadow: 0 12px 40px rgba(13,17,23,.1);
  transform: translateY(-3px);
  border-color: rgba(70,192,188,.25);
}
.practice-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.practice-summary {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}
.practice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.practice-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  padding-left: 24px;
  position: relative;
}
.practice-list li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--teal);
  font-weight: 700;
}
.practice-audience {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 8px 0 0 0;
}
.practice-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: 12px;
  transition: opacity .2s;
}
.practice-link:hover {
  opacity: 0.8;
}

.services-adjacent {
  background: var(--white);
}
.adjacent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.adjacent-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(13,17,23,.05);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.adjacent-card:hover {
  box-shadow: 0 12px 40px rgba(13,17,23,.1);
  transform: translateY(-3px);
  border-color: rgba(70,192,188,.25);
}
.adjacent-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.services-approach {
  background: var(--ink);
}
.services-approach.dark {
  background: var(--ink);
  color: var(--white);
}

.services-approach h2 {
  color: var(--white);
}
.services-approach h2 em {
  color: var(--teal);
}

.om-section p,
.about-approach p,
.services-approach p {
  color: var(--text-on-dark-body);
}
.services-approach p { margin-bottom: 20px; }

.services-sectors {
  background: var(--white);
}
.services-sectors p { margin-bottom: 16px; }

/* Services responsive */
@media (max-width: 768px) {
  .practice-grid,
  .adjacent-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .practice-card,
  .adjacent-card {
    padding: 28px 24px;
  }
  .practice-card h3,
  .adjacent-card h3 {
    font-size: 18px;
  }
}
