@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --navy-950: #0b1220;
  --navy-900: #111827;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --blue-700: #2563eb;
  --blue-800: #1d4ed8;
  --teal-500: #0891b2;
  --teal-600: #0e7490;
  --teal-100: #cffafe;
  --success: #15803d;
  --ink-900: #111827;
  --ink-700: #475569;
  --ink-500: #64748b;
  --line-light: #d8e0ea;
  --steel-700: #cbd5e1;
  --steel-500: #94a3b8;
  --steel-200: rgba(203, 213, 225, 0.24);
  --steel-100: #eef4f8;
  --white: #ffffff;
  --warm: #f8fafc;
  --warm-muted: #eef4f8;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.3);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--navy-950);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-900);
  line-height: 1.14;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 5.6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.95rem, 3.5vw, 2.85rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}

p {
  color: var(--ink-700);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(204, 231, 242, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--navy-950);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.primary-nav a {
  color: var(--navy-700);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--navy-950);
  background: rgba(37, 99, 235, 0.08);
  outline: none;
}

.brand:focus-visible,
.nav-toggle:focus-visible,
.primary-nav a:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.site-footer nav a:focus-visible {
  outline: 3px solid var(--blue-700);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-950);
  border-radius: 999px;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(99, 199, 220, 0.22);
  border-color: var(--teal-500);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  min-height: min(820px, calc(100vh - 72px));
  padding: clamp(4.75rem, 8vw, 7.5rem) clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.99) 0%, rgba(17, 24, 39, 0.99) 52%, rgba(30, 41, 59, 0.98) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 199, 220, 0.45), transparent);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero h1,
.hero h2,
.hero h3,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.cta-card h2,
.trust-section h2,
.trust-section h3 {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--teal-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 2.2rem;
  color: var(--steel-700);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.26);
}

.button-secondary {
  color: var(--navy-950);
  background: transparent;
  border-color: #cbd5e1;
  font-weight: 650;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--blue-700);
}

.hero .button-secondary,
.page-hero .button-secondary,
.cta-card .button-secondary,
.inline-cta .button-secondary,
.trust-section .button-secondary {
  color: var(--white);
  border-color: rgba(203, 213, 225, 0.52);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible,
.page-hero .button-secondary:hover,
.page-hero .button-secondary:focus-visible,
.cta-card .button-secondary:hover,
.cta-card .button-secondary:focus-visible,
.inline-cta .button-secondary:hover,
.inline-cta .button-secondary:focus-visible,
.trust-section .button-secondary:hover,
.trust-section .button-secondary:focus-visible {
  color: var(--navy-950);
  background: var(--white);
}

.hero-panel {
  min-height: 480px;
  padding: 1.35rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(234, 242, 246, 0.96)),
    var(--navy-900);
  border: 1px solid rgba(204, 231, 242, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.delivery-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--ink-900);
}

.risk-panel {
  min-height: 520px;
}

.panel-header {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.panel-header strong {
  display: block;
  color: var(--ink-900);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.panel-list {
  display: grid;
  gap: 0.85rem;
}

.panel-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1.05rem;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.panel-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius);
  font-weight: 800;
}

.panel-item strong {
  display: block;
  color: var(--ink-900);
  line-height: 1.25;
}

.panel-item p {
  margin: 0.2rem 0 0;
  color: var(--ink-700);
}

.risk-path {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding-left: 0.35rem;
}

.risk-path::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1.45rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(8, 145, 178, 0.18), rgba(8, 145, 178, 0.74), rgba(8, 145, 178, 0.18));
}

.risk-path > div {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 34, 53, 0.06);
}

.risk-path span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--white);
  background: var(--teal-500);
  border-radius: var(--radius);
  font-weight: 800;
}

.risk-path strong {
  display: block;
  color: var(--ink-900);
  line-height: 1.25;
}

.risk-path p {
  margin: 0.2rem 0 0;
  color: var(--ink-700);
}

.panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.panel-footer span {
  padding: 0.48rem 0.68rem;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
}

.metric-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.25rem, 7vw, 6.25rem) clamp(1rem, 4vw, 3rem);
}

.section-light {
  color: var(--ink-900);
  background: var(--warm);
}

.section-muted {
  color: var(--ink-900);
  background: var(--warm-muted);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.section-light h2,
.section-light h3,
.section-muted h2,
.section-muted h3 {
  color: var(--ink-900);
}

.section-light .eyebrow,
.section-muted .eyebrow {
  color: var(--blue-700);
}

.section-light p,
.section-muted p {
  color: var(--ink-700);
}

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

.narrow {
  max-width: 860px;
}

.intro-band {
  background: var(--navy-900);
  border-top: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
}

.audience-band {
  background:
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.audience-band .narrow {
  max-width: 980px;
}

.audience-band h2 {
  max-width: 820px;
}

.intro-band .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading p:last-child {
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 1.1rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.problem-card,
.service-summary,
.principle-card,
.contact-card,
.enquiry-panel {
  background: linear-gradient(180deg, rgba(8, 48, 77, 0.92), rgba(0, 21, 48, 0.94));
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.problem-card,
.service-summary,
.principle-card {
  padding: clamp(1.35rem, 2.5vw, 1.7rem);
}

.problem-card {
  display: flex;
  flex-direction: column;
  min-height: 215px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--blue-700);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.problem-card h3::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-bottom: 1rem;
  background: var(--teal-500);
  border-radius: 999px;
}

.problem-card .card-number {
  color: var(--white);
  background: var(--blue-700);
}

.problem-card h3 {
  color: var(--ink-900);
  font-weight: 750;
}

.problem-card p {
  color: var(--ink-700);
}

.homepage-services-section .problem-card {
  min-height: 180px;
}

.homepage-services-section .problem-card p {
  margin-bottom: 0;
}

.principle-card {
  min-height: 230px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--teal-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.principle-card h3 {
  color: var(--ink-900);
  font-weight: 750;
}

.principle-card p {
  color: var(--ink-700);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.8rem;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius);
  font-weight: 800;
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-summary {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--blue-700);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-summary h3 {
  color: var(--ink-900);
  font-weight: 750;
}

.service-summary p {
  color: var(--ink-700);
}

.service-decision-card h4 {
  margin: 0 0 0.7rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-decision-card {
  scroll-margin-top: 96px;
}

.service-decision-card .service-inclusions {
  margin-bottom: 1.3rem;
}

.service-decision-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.service-decision-note {
  max-width: 820px;
  margin: 1.4rem 0 0;
  color: var(--ink-700);
}

.service-decision-note a {
  color: var(--blue-700);
  font-weight: 800;
}

.service-summary strong {
  display: block;
  margin-top: auto;
  color: var(--ink-900);
  font-size: 0.98rem;
  line-height: 1.45;
}

.service-summary .metric-label {
  margin-bottom: 0.85rem;
}

.section-muted .text-link {
  margin-top: 1.7rem;
  color: var(--blue-700);
}

.section-action {
  margin-top: 1.8rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-compare > div {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-compare ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--ink-700);
}

.about-compare li::marker {
  color: var(--teal-600);
}

.feature-copy p {
  font-size: 1.08rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.steps.compact {
  grid-template-columns: repeat(5, 1fr);
}

.steps article {
  padding: clamp(1.25rem, 2.2vw, 1.55rem);
  background: linear-gradient(180deg, rgba(8, 48, 77, 0.88), rgba(0, 21, 48, 0.9));
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
}

.section-light .steps article {
  background: var(--white);
  border-color: var(--line-light);
  box-shadow: var(--shadow-soft);
}

.section-light .steps article h3 {
  color: var(--ink-900);
}

.section-light .steps article p {
  color: var(--ink-700);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.1rem;
  color: var(--navy-950);
  background: var(--teal-500);
  border-radius: var(--radius);
  font-weight: 800;
}

.pathway-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pathway-step {
  position: relative;
  min-height: 260px;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border-right: 1px solid var(--line-light);
}

.pathway-step:last-child {
  border-right: 0;
}

.pathway-step::after {
  content: "";
  position: absolute;
  top: 2.05rem;
  right: -0.48rem;
  z-index: 1;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--white);
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  transform: rotate(45deg);
}

.pathway-step:last-child::after {
  display: none;
}

.pathway-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.1rem;
  color: var(--navy-950);
  background: rgba(99, 199, 220, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
}

.pathway-step h3 {
  color: var(--ink-900);
}

.pathway-step p {
  margin-bottom: 0;
  color: var(--ink-700);
}

.trust-section {
  color: var(--white);
  background: var(--navy-900);
  border-top: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
}

.trust-section h2,
.trust-section h3 {
  color: var(--white);
}

.trust-section p {
  color: var(--steel-700);
}

.trust-section .eyebrow {
  color: var(--teal-100);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.section-light .check-list li,
.section-muted .check-list li {
  color: var(--ink-700);
  background: var(--white);
  border: 1px solid var(--line-light);
}

.section-light .check-list li::before,
.section-muted .check-list li::before {
  border-color: var(--success);
}

.starting-point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.starting-point-section {
  scroll-margin-top: 96px;
}

.trust-section.starting-point-section {
  background:
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, var(--navy-800));
  border-top: 1px solid rgba(203, 213, 225, 0.22);
  border-bottom: 1px solid rgba(203, 213, 225, 0.22);
}

.starting-point-section .section-heading {
  max-width: 860px;
}

.starting-point-section .section-heading p:last-child,
.starting-point-note {
  color: var(--steel-700);
}

.starting-point-column {
  padding: clamp(1.2rem, 2.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(203, 213, 225, 0.2);
  border-top: 4px solid var(--blue-700);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.starting-point-column h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 750;
}

.starting-point-note {
  max-width: 860px;
  margin: 1.4rem 0 0;
}

.credibility-card {
  min-height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.55rem);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.credibility-card h3 {
  color: var(--white);
}

.credibility-card p {
  margin-bottom: 0;
  color: var(--steel-700);
}

.credibility-note {
  max-width: 860px;
  margin: 1.4rem 0 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.proof-row div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.proof-row span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--teal-100);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-row strong {
  display: block;
  color: var(--white);
  line-height: 1.35;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 0.82rem;
  height: 0.48rem;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

.cta-section {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.cta-card {
  padding: clamp(2.3rem, 5vw, 4.25rem);
  text-align: center;
  background:
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.cta-card h2,
.cta-card p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card p {
  color: var(--steel-700);
}

.page-hero {
  position: relative;
  padding: clamp(5rem, 9vw, 7.5rem) clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.page-hero p {
  color: var(--steel-700);
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.1rem);
}

.page-hero p:last-child {
  max-width: 780px;
  font-size: 1.15rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--blue-700);
  font-weight: 800;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-chooser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto repeat(4, auto);
  column-gap: 1.15rem;
  row-gap: 0;
  align-items: stretch;
}

.service-choice-card {
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  scroll-margin-top: 96px;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--blue-700);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(16, 34, 53, 0.08);
}

.service-choice-header {
  padding: 1.35rem 1.35rem 1rem;
  background: linear-gradient(180deg, var(--white), var(--warm));
  border-bottom: 1px solid var(--line-light);
}

.service-choice-header .card-number {
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  background: var(--blue-700);
}

.service-choice-header h3 {
  margin-bottom: 0;
  color: var(--ink-900);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.service-fit-list {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  margin: 0;
}

.service-fit-list div {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line-light);
}

.service-fit-list div:last-child {
  background: var(--warm);
  border-bottom: 0;
}

.service-fit-list dt {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-fit-list dd {
  margin: 0;
  color: var(--ink-700);
}

.service-fit-list div:last-child dd {
  color: var(--ink-900);
  font-weight: 800;
}

.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 2.5vw, 1.7rem);
  background: var(--navy-900);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 18, 38, 0.14);
}

.inline-cta h3 {
  margin-bottom: 0.25rem;
  color: var(--white);
}

.inline-cta p {
  grid-column: 1;
  margin: 0;
  color: var(--steel-700);
}

.inline-cta .button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.outputs-grid article {
  min-height: 210px;
  padding: clamp(1.25rem, 2.4vw, 1.55rem);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--blue-700);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.outputs-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius);
  font-weight: 800;
}

.outputs-grid h3 {
  color: var(--ink-900);
  font-weight: 750;
}

.outputs-grid p {
  margin-bottom: 0;
  color: var(--ink-700);
}

.service-card-grid article {
  min-height: 235px;
  border-top-color: var(--teal-500);
}

.service-card-grid h3 {
  font-size: 1.08rem;
  font-weight: 750;
}

.compact-service-grid article {
  min-height: 205px;
}

.service-detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  background: linear-gradient(180deg, rgba(8, 48, 77, 0.9), rgba(0, 21, 48, 0.92));
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
}

.services-section .service-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.services-section .service-detail {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-color: var(--line-light);
  border-top: 4px solid var(--blue-700);
  box-shadow: var(--shadow-soft);
}

.services-section .service-detail > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-detail .card-number {
  margin-bottom: 0;
}

.services-section .service-detail .card-number {
  width: 38px;
  height: 38px;
  background: var(--blue-700);
}

.services-section .service-detail h3 {
  color: var(--ink-900);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.service-detail p {
  max-width: 820px;
  margin-bottom: 0.85rem;
}

.service-detail p strong {
  color: var(--ink-900);
}

.services-section .service-detail p {
  color: var(--ink-700);
}

.service-problem {
  color: var(--ink-900);
  font-weight: 800;
}

.service-inclusions {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: var(--ink-700);
}

.service-inclusions li::marker {
  color: var(--teal-600);
}

.service-outcome {
  max-width: 820px;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--warm);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.service-outcome span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-outcome strong {
  display: block;
  color: var(--ink-900);
  line-height: 1.45;
}

.services-section .service-outcome {
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.35rem;
  align-items: start;
}

.contact-card,
.enquiry-panel {
  padding: clamp(1.4rem, 4vw, 2rem);
}

.contact-section .contact-card,
.contact-section .enquiry-panel {
  background: var(--white);
  border-color: var(--line-light);
  box-shadow: var(--shadow-soft);
}

.contact-section .contact-card h2,
.contact-section .contact-card dd,
.contact-section .enquiry-panel h2,
.contact-section .enquiry-panel dd,
.contact-section label {
  color: var(--ink-900);
}

.contact-section .contact-card p,
.contact-section .enquiry-panel p {
  color: var(--ink-700);
}

.contact-note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.95rem;
}

.contact-card dl,
.enquiry-panel dl {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-card dt,
.enquiry-panel dt {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card dd,
.enquiry-panel dd {
  margin: 0.15rem 0 0;
  color: var(--white);
  font-weight: 700;
}

.contact-card a,
.enquiry-panel a {
  color: var(--blue-700);
}

.contact-card .button-primary,
.enquiry-panel .button-primary {
  color: var(--white);
}

.enquiry-panel {
  display: grid;
  gap: 1rem;
}

.enquiry-panel p {
  margin: 0;
  color: var(--ink-700);
}

.enquiry-panel h3 {
  margin-bottom: 0.85rem;
  color: var(--ink-900);
  font-size: 1.08rem;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: start;
  margin-top: 0.4rem;
}

.enquiry-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0.35rem 0 0;
  list-style: none;
}

.enquiry-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-700);
}

.enquiry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--teal-600);
  border-radius: 50%;
}

.next-steps {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.15rem 0.8rem;
  padding: 1rem;
  background: var(--warm);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.next-steps span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--navy-950);
  background: rgba(99, 199, 220, 0.26);
  border-radius: var(--radius);
  font-weight: 800;
}

.next-steps strong {
  color: var(--ink-900);
  line-height: 1.3;
}

.next-steps p {
  grid-column: 2;
  margin: 0;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  padding: 0.85rem 1rem;
  color: var(--ink-700);
  background: var(--warm);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

label {
  color: var(--white);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: rgba(0, 20, 44, 0.6);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-700);
  outline: 3px solid rgba(18, 111, 152, 0.22);
}

.contact-section input,
.contact-section select,
.contact-section textarea {
  color: var(--ink-900);
  background: var(--warm);
  border-color: var(--line-light);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  display: none;
  margin: 0;
  font-weight: 700;
}

.form-status.is-success,
.form-status.is-error {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.form-status span {
  font-weight: 600;
}

.contact-section .form-status.is-success {
  color: var(--success);
  background: rgba(99, 199, 150, 0.2);
  border: 1px solid rgba(17, 101, 48, 0.32);
  border-left: 6px solid var(--success);
  box-shadow: 0 12px 26px rgba(17, 101, 48, 0.12);
}

.contact-section .form-status.is-error {
  color: #9f1d1d;
  background: rgba(159, 29, 29, 0.08);
  border: 1px solid rgba(159, 29, 29, 0.22);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.66;
  transform: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: var(--steel-700);
  background: var(--navy-950);
  border-top: 1px solid var(--steel-200);
}

.site-footer p {
  max-width: 520px;
  margin: 1rem 0 0;
  color: var(--steel-700);
}

.site-footer .brand-text {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.site-footer nav a {
  color: var(--steel-700);
  font-weight: 700;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-layout,
  .about-compare {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 620px;
  }

  .card-grid.three,
  .card-grid.four,
  .steps,
  .steps.compact,
  .pathway-panel,
  .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pathway-step:nth-child(2) {
    border-right: 0;
  }

  .pathway-step:nth-child(2)::after {
    display: none;
  }

  .pathway-step {
    border-bottom: 1px solid var(--line-light);
  }

  .pathway-step:nth-child(n + 3) {
    border-bottom: 0;
  }

  .service-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-chooser-grid,
  .enquiry-grid,
  .outputs-grid {
    grid-template-columns: 1fr;
  }

  .service-choice-card {
    min-height: auto;
    margin-bottom: 1.15rem;
  }

  .service-choice-card:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 75px 1rem auto 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 0.8rem;
    background: var(--white);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 0.9rem 1rem;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-detail,
  .service-outcome {
    padding: 1rem;
  }

  .card-grid.three,
  .card-grid.four,
  .steps,
  .steps.compact,
  .pathway-panel,
  .service-summary-grid,
  .service-chooser-grid,
  .enquiry-grid,
  .outputs-grid,
  .proof-row,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .next-steps li {
    grid-template-columns: 1fr;
  }

  .next-steps span,
  .next-steps p {
    grid-column: auto;
    grid-row: auto;
  }

  .inline-cta {
    grid-template-columns: 1fr;
  }

  .inline-cta p,
  .inline-cta .button {
    grid-column: auto;
    grid-row: auto;
  }

  .pathway-step,
  .pathway-step:nth-child(2),
  .pathway-step:nth-child(n + 3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .pathway-step:last-child {
    border-bottom: 0;
  }

  .pathway-step::after {
    display: none;
  }

  .hero-panel {
    min-height: auto;
  }

  .panel-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-content,
  .hero h1,
  .hero-copy,
  .hero-actions {
    max-width: 340px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-panel {
    width: 100%;
    max-width: 340px;
  }

  .page-hero .narrow {
    max-width: 340px;
    margin-left: 0;
    margin-right: 0;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 2.05rem;
    overflow-wrap: anywhere;
  }

  .page-hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .hero-content,
  .hero h1,
  .hero-copy,
  .hero-actions {
    max-width: 330px;
  }

  .hero-panel {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 2.05rem;
  }

}
