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

:root {
  --navy: #102337;
  --navy-dark: #091522;
  --navy2: #18334d;
  --teal: #0fa8a2;
  --teal-dark: #0a7d78;
  --teal-light: #e6f7f6;
  --teal-glow: rgba(15, 168, 162, 0.15);
  --yellow: #f2c400;
  --yellow-light: #fef9e6;
  --ink: #162532;
  --muted: #5e707d;
  --muted-light: #8395a1;
  --line: #dce5e9;
  --line-light: #edf2f5;
  --bg: #f5f8fa;
  --bg-alt: #edf3f6;
  --white: #ffffff;
  --max: 1240px;
  --radius: 20px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --shadow: 0 16px 48px rgba(16, 35, 55, 0.08);
  --shadow-lg: 0 24px 64px rgba(16, 35, 55, 0.12);
  --shadow-sm: 0 4px 16px rgba(16, 35, 55, 0.05);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 700;
  font-size: 13px;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 15px;
  outline: 3px solid var(--yellow);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

button, input, select, textarea {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}

/* Brand Top Accent Line */
.topline {
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0 25%, var(--teal) 25% 72%, var(--navy) 72%);
}

/* Header & Global Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 220px;
  height: auto;
  display: block;
}

.navlinks {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #3b4e5c;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navlinks a, .nav-item-btn {
  position: relative;
  padding: 30px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-weight: 700;
  font-size: 13px;
}

.navlinks a:hover, .navlinks a.active, .nav-item-btn:hover {
  color: var(--navy);
}

.navlinks a.active:after {
  content: "";
  position: absolute;
  height: 3px;
  background: var(--teal);
  left: 0;
  right: 0;
  bottom: 18px;
  border-radius: 2px;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 9px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 110;
  list-style: none;
  margin: 0;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.dropdown-menu a.active {
  background: var(--bg);
  color: var(--teal-dark);
}

.dropdown-menu a.active:after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--navy);
  font-weight: 800;
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

h4 {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.lead {
  font-size: 18px;
  color: #4a5d6a;
  line-height: 1.65;
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: inline-block;
}

.micro-line {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.micro-line span {
  color: var(--teal);
}

/* Call To Action Buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: var(--navy2);
  color: var(--white);
}

.cta.teal {
  background: var(--teal);
  color: var(--white);
}
.cta.teal:hover {
  background: var(--teal-dark);
}

.cta.light {
  background: var(--white);
  color: var(--navy);
}
.cta.light:hover {
  background: var(--bg);
}

.cta.outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid #b7c7cf;
}
.cta.outline:hover {
  border-color: var(--navy);
  background: rgba(16, 35, 55, 0.04);
}

.cta.arrow:after {
  content: "→";
  font-size: 15px;
  transition: transform 0.2s ease;
}
.cta.arrow:hover:after {
  transform: translateX(3px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

/* Badges & Tags */
.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.badge.yellow {
  background: var(--yellow-light);
  color: #8c6e00;
}

.badge.navy {
  background: rgba(16, 35, 55, 0.08);
  color: var(--navy);
}

/* Sections */
.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--bg);
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section.dark h1,
.section.dark h2,
.section.dark h3,
.section.dark h4 {
  color: var(--white);
}

.section.dark .lead {
  color: #b3c5d1;
}

.section.dark .head p {
  color: #9cb1bf;
}

.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.head p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f7f9 0%, #ffffff 100%);
  padding: 95px 0 85px;
  border-bottom: 1px solid var(--line-light);
}

.hero:before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  right: -200px;
  top: -240px;
  background: #dff4f2;
  opacity: 0.6;
  pointer-events: none;
}

.hero:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 500px;
  right: 180px;
  top: -80px;
  transform: rotate(28deg);
  background: var(--yellow);
  opacity: 0.25;
  border-radius: 100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-panel {
  min-height: 460px;
  border-radius: 28px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-panel .ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  right: -100px;
  top: -80px;
}

.hero-panel .ring2 {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(15, 168, 162, 0.35);
  border-radius: 50%;
  right: -20px;
  top: -20px;
}

.panel-label {
  color: #9aabb7;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-steps {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  position: relative;
  z-index: 2;
}

.panel-step {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.panel-step b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}

.panel-step .step-text strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.panel-step .step-text span {
  font-size: 11px;
  color: #9eb2c0;
}

.panel-title {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  position: relative;
  z-index: 2;
}

.panel-title span {
  color: #67d5d0;
}

/* Grids & Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c4d3da;
}

.card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.card .num {
  font-size: 10px;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.card .go {
  margin-top: auto;
  padding-top: 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card.highlight {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy2);
}

.card.highlight h3, .card.highlight h4 {
  color: var(--white);
}

.card.highlight p {
  color: #a9bcc9;
}

/* Service Cards */
.service-card {
  min-height: 250px;
}

/* Split Section & Dark Panel */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dark-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 46px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dark-panel:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(15, 168, 162, 0.4);
  right: -100px;
  bottom: -90px;
  pointer-events: none;
}

.bigline {
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 16px 0;
}

.smallcopy {
  color: #b7c8d4;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Tangible Deliverables Document Cards */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c4d3da;
}

.doc-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
}

.doc-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.doc-card-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.doc-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--teal-light);
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-size: 13px;
}

.doc-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.doc-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-card-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.doc-card-list li:before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

/* Wakefield Control Framework (7 Stages) */
.framework-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 36px;
  position: relative;
}

.framework-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.framework-step:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(15, 168, 162, 0.5);
  transform: translateY(-3px);
}

.framework-step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.framework-step strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: block;
}

.framework-step p {
  font-size: 12px;
  color: #9cb1bf;
  margin: 0;
  line-height: 1.5;
}

/* Industries Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.industry {
  min-height: 200px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.industry:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c4d3da;
}

.industry:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #e5f6f4;
  right: -30px;
  top: -30px;
  transition: var(--transition);
}

.industry:hover:before {
  transform: scale(1.2);
}

.industry h3 {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.industry p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 2;
  line-height: 1.5;
}

/* Selected Experience & Image Cards */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.image-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--bg-alt);
}

.image-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.image-card-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.image-card-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
  flex-grow: 1;
}

.image-card-body small {
  display: block;
  font-size: 11px;
  color: var(--muted-light);
  line-height: 1.4;
  border-top: 1px solid var(--line-light);
  padding-top: 10px;
}

/* Case Study Structure (Section 11) */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.case-study-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c4d3da;
}

.case-study-header {
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.case-study-header .badge {
  margin-bottom: 8px;
}

.case-study-header h3 {
  font-size: 20px;
  margin: 0 0 6px;
}

.case-study-header .location {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.case-study-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.case-item {
  font-size: 13px;
  line-height: 1.5;
}

.case-item b {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 2px;
}

.case-item span {
  color: var(--muted);
}

.case-item.outcome {
  background: var(--teal-light);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}

.case-item.outcome b {
  color: var(--teal-dark);
}

.case-item.outcome span {
  color: var(--ink);
  font-weight: 500;
}

/* Proof Centre Metric Framework (Section 12) */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-card:hover {
  transform: translateY(-3px);
  border-color: #c4d3da;
}

.proof-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.proof-status {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
}

.proof-status.verified {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.proof-card h4 {
  font-size: 16px;
  margin: 0 0 6px;
}

.proof-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Banner / CTA Strips */
.banner {
  padding: 80px 0;
  background: linear-gradient(115deg, #09726d 0%, #102337 100%);
  color: var(--white);
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.banner p {
  color: #d1e2e6;
  max-width: 620px;
  margin: 0;
  font-size: 16px;
}

/* Page Hero (Inner Pages) */
.page-hero {
  padding: 85px 0 70px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 18px;
}

.page-hero .lead {
  max-width: 780px;
  margin-bottom: 0;
}

/* Service Detail Layout (Mandatory 9-part structure) */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  gap: 60px;
}

.service-main {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.service-section {
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 45px;
}

.service-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-section h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 16px;
}

.service-section p {
  font-size: 15px;
  color: #435562;
  line-height: 1.7;
}

/* Scope & Deliverables Lists */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.scope-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.scope-item:before {
  content: "•";
  color: var(--teal);
  font-size: 20px;
  line-height: 0;
}

.deliverables-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.deliv-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.deliv-card b {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}

.deliv-card span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}

/* Sticky Sidebar */
.side {
  height: max-content;
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.side h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.side p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.side-meta {
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-meta-item {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

.side-meta-item strong {
  color: var(--ink);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: #c4d3da;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  color: var(--teal);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  transition: max-height 0.35s ease-in-out;
  padding: 0 22px 18px;
}

.faq-answer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Contact Page (Pathways + 11-Field CRM Form) */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.pathway-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.pathway-card:hover, .pathway-card.active {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.pathway-card h3 {
  font-size: 18px;
  margin: 0 0 6px;
}

.pathway-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

.pathway-card .cta {
  align-self: flex-start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-block h4 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.contact-block p {
  font-size: 14px;
  color: #405260;
  margin: 0;
  line-height: 1.6;
}

.contact-block a {
  color: var(--navy);
  font-weight: 700;
}
.contact-block a:hover {
  color: var(--teal);
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3b4e5c;
}

.field input,
.field select,
.field textarea {
  border: 1px solid #ccd7de;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input[type="file"] {
  padding: 9px 12px;
  font-size: 12px;
  background: var(--bg);
  cursor: pointer;
}

.form-note {
  font-size: 11px;
  color: var(--muted-light);
  line-height: 1.4;
  margin-top: 4px;
}

.form-status {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 16px;
}

.form-status.success {
  display: block;
  background: var(--teal-light);
  border: 1px solid var(--teal);
  color: var(--teal-dark);
}

/* Mobile Contact Bar (Section 12) */
.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  z-index: 1000;
  box-shadow: 0 -8px 24px rgba(16, 35, 55, 0.08);
}

.mobile-contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 10px;
}

.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.mobile-btn.call {
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--line);
}

.mobile-btn.email {
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--line);
}

.mobile-btn.enquiry {
  background: var(--teal);
  color: var(--white);
}

/* Capability Statement Modal (Section 21) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 21, 34, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.modal-close:hover {
  background: var(--line);
  color: var(--navy);
}

/* Footer (Section 22) */
.footer {
  background: var(--navy-dark);
  color: #a7b7c2;
  padding: 75px 0 30px;
}

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

.footer .logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 14px;
}

.footer h3, .footer h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  font-size: 13px;
  margin: 9px 0;
  color: #a7b7c2;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #1a2c3d;
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  display: inline;
  margin: 0;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Media Queries & Responsive QA */
@media (max-width: 1050px) {
  .navlinks {
    display: none;
  }
  .menu {
    display: block;
  }
  .header-actions .cta {
    display: none;
  }
  .hero-grid,
  .split,
  .service-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-panel {
    min-height: 400px;
  }
  .grid-4,
  .industry-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .deliverables-grid,
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .framework-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .side {
    position: static;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }
  .nav {
    height: 72px;
  }
  .logo {
    width: 180px;
  }
  .navlinks.mobile {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .navlinks.mobile a,
  .navlinks.mobile .nav-item-btn {
    padding: 12px 0;
    width: 100%;
    justify-content: space-between;
  }
  .navlinks.mobile .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 10px 14px;
    display: none;
  }
  .navlinks.mobile .has-dropdown.open .dropdown-menu {
    display: block;
  }
  .navlinks.mobile a.active:after {
    display: none;
  }

  .hero {
    padding: 60px 0 50px;
  }
  .hero-panel {
    min-height: 360px;
    padding: 26px;
  }
  .panel-title {
    font-size: 26px;
  }
  .section {
    padding: 65px 0;
  }
  .head,
  .banner-inner {
    display: block;
  }
  .head .cta,
  .banner .cta {
    margin-top: 20px;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .industry-grid,
  .deliverables-grid,
  .case-studies-grid,
  .proof-grid,
  .image-grid,
  .pathways-grid,
  .framework-track,
  .scope-grid,
  .deliverables-box,
  .form,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 24px;
  }
  .dark-panel {
    padding: 30px;
    min-height: auto;
  }
  .bigline {
    font-size: 36px;
  }
  .page-hero {
    padding: 55px 0 45px;
  }

  /* Show mobile contact bar */
  .mobile-contact-bar {
    display: block;
  }
  body {
    padding-bottom: 64px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 26px;
  }
  .cta {
    width: 100%;
    text-align: center;
  }
  .actions {
    flex-direction: column;
    width: 100%;
  }
  .actions .cta {
    width: 100%;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
