@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2");
}

:root {
  --navy-950: #06162f;
  --navy-900: #0f172a;
  --navy-800: #16213c;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --green-600: #16a34a;
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;


  /* Theme roles keep the brand palette and white-on-blue buttons unchanged. */
  --surface-page: var(--white);
  --surface-raised: var(--white);
  --surface-soft: var(--slate-50);
  --surface-tint: var(--blue-50);
  --surface-detail: var(--blue-100);
  --surface-viewer: var(--slate-100);
  --text-heading: var(--navy-950);
  --text-primary: var(--navy-900);
  --text-strong: var(--slate-700);
  --text-secondary: var(--slate-600);
  --text-muted: var(--slate-500);
  --border: var(--slate-200);
  --border-strong: var(--slate-300);
  --link: var(--blue-700);
  --link-hover: #1e40af;
  --accent: var(--blue-600);
  --focus-ring: var(--blue-500);
  --positive: var(--green-600);
  --positive-text: #15803d;
  --positive-surface: #f0fdf4;
  --illustration-fill: rgba(239, 246, 255, 0.72);
  --illustration-stroke: #8ba8d5;
  --hero-end: #fbfdff;
  --dashboard-surface: rgba(255, 255, 255, 0.95);
  --audience-surface: rgba(255, 255, 255, 0.92);
  color-scheme: light;
}


html[data-theme="dark"] {
  --surface-page: #0b1424;
  --surface-raised: #15233b;
  --surface-soft: #101c30;
  --surface-tint: #172d4c;
  --surface-detail: #244266;
  --surface-viewer: #0b1424;
  --text-heading: #f1f5f9;
  --text-primary: #e2e8f0;
  --text-strong: #d0dbea;
  --text-secondary: #b9c7db;
  --text-muted: #a3b4cc;
  --border: #2d405a;
  --border-strong: #7185a0;
  --link: #93c5fd;
  --link-hover: #bfdbfe;
  --accent: #60a5fa;
  --focus-ring: #93c5fd;
  --positive: #86efac;
  --positive-text: #86efac;
  --positive-surface: #103628;
  --illustration-fill: #162d4b;
  --illustration-stroke: #648fbe;
  --hero-end: #101c30;
  --dashboard-surface: rgba(21, 35, 59, 0.96);
  --audience-surface: var(--surface-raised);
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--surface-page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--blue-600);
}

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

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 8px;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.svg-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(6, 22, 47, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  width: 180px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

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

.primary-nav {
  display: flex;
  margin-left: auto;
  align-items: stretch;
  gap: 6px;
}


.theme-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  cursor: pointer;
}

.theme-toggle[hidden] {
  display: none;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.theme-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .theme-icon-sun,
html[data-theme="dark"] .theme-toggle .theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle .theme-icon-sun {
  display: block;
}

.mobile-menu {
  display: none;
}

.primary-nav > a,
.services-menu > summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 0 17px;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 650;
  list-style: none;
  transition: color 160ms ease;
}

.primary-nav > a:hover,
.services-menu > summary:hover,
.services-menu[open] > summary {
  color: var(--white);
}

.primary-nav > a::after,
.services-menu > summary::after {
  position: absolute;
  right: 17px;
  bottom: 13px;
  left: 17px;
  height: 2px;
  content: "";
  background: var(--blue-500);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.is-current::after,
.services-menu[open] > summary::after {
  transform: scaleX(1);
}

.services-menu {
  position: relative;
}

.services-menu > summary::-webkit-details-marker {
  display: none;
}

.services-menu > summary {
  gap: 8px;
}

.services-menu > summary::before {
  order: 2;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.services-menu[open] > summary::before {
  transform: translateY(2px) rotate(225deg);
}

.services-popover {
  position: absolute;
  top: calc(100% - 8px);
  right: 0;
  display: grid;
  width: min(340px, calc(100vw - 40px));
  max-height: calc(100vh - 88px);
  max-height: calc(100dvh - 88px);
  overflow-y: auto;
  scroll-padding-block: 10px;
  padding: 10px;
  color: var(--text-primary);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.services-popover a {
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 650;
}

.services-popover a:hover {
  color: var(--link);
  background: var(--surface-tint);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background:
    radial-gradient(circle at 86% 10%, rgba(37, 99, 235, 0.13), transparent 32%),
    linear-gradient(180deg, var(--surface-page) 0%, var(--hero-end) 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 540px;
  height: 540px;
  content: "";
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(37, 99, 235, 0.03),
    0 0 0 140px rgba(37, 99, 235, 0.02);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 4px 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--text-heading);
  font-size: clamp(2.5rem, calc(2.15rem + 2vw), 4.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--accent);
}

.hero-intro {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.93rem;
  font-weight: 750;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.3);
}

.button-secondary {
  color: var(--link);
  background: var(--surface-raised);
  border-color: var(--accent);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--blue-600);
}

.hero-visual {
  --building-left: -52px;
  --building-top: -30px;
  --building-width: 130%;

  --dashboard-right: -10px;
  --dashboard-top: 65px;
  --dashboard-width: min(370px, 69%);

  position: relative;
  min-height: 560px;
}

.building-illustration {
  position: absolute;
  top: var(--building-top);
  left: var(--building-left);
  width: var(--building-width);
  height: auto;
  max-width: none;
}

.building-lines {
  fill: var(--illustration-fill);
  stroke: var(--illustration-stroke);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  top: var(--dashboard-top);
  right: var(--dashboard-right);
  width: var(--dashboard-width);
  overflow: hidden;
  background: var(--dashboard-surface);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.dashboard-header p {
  margin: 0;
  font-size: 0.87rem;
  font-weight: 800;
}

.dashboard-header span {
  padding: 3px 8px;
  color: var(--positive-text);
  background: var(--positive-surface);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dashboard-stat {
  min-height: 152px;
  padding: 17px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dashboard-stat:nth-child(2n) {
  border-right: 0;
}

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

.dashboard-stat small,
.dashboard-stat em {
  display: block;
  color: var(--text-muted);
  font-size: 0.67rem;
  font-style: normal;
}

.dashboard-stat strong {
  display: block;
  margin-top: 3px;
  color: var(--text-primary);
  font-size: 1.15rem;
  line-height: 1.25;
}

.dashboard-stat .trend {
  display: block;
  margin-top: 3px;
  color: var(--positive);
  font-size: 0.7rem;
  font-weight: 800;
}

.dashboard-stat > svg {
  width: 100%;
  height: 42px;
  margin-top: 6px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-bars {
  display: flex;
  height: 48px;
  align-items: end;
  gap: 7px;
  margin-top: 8px;
}

.mini-bars i {
  flex: 1;
  height: 45%;
  background: var(--surface-detail);
  border: 1px solid #93c5fd;
  border-radius: 3px 3px 0 0;
}

.mini-bars i:nth-child(2) {
  height: 67%;
}

.mini-bars i:nth-child(3) {
  height: 52%;
}

.mini-bars i:nth-child(4) {
  height: 86%;
}

.mini-bars i:nth-child(5) {
  height: 74%;
}

.dashboard-rating {
  text-align: center;
}

.nabers-rating {
  --nabers-teal: #008a9a;

  display: grid;
  width: min(100%, 106px);
  min-height: 84px;
  align-content: space-between;
  margin: 7px auto 0;
  justify-items: center;
}

.nabers-score {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}

.nabers-score b {
  color: #7c8288;
  font-size: 2.25rem;
  font-weight: 650;
  letter-spacing: -0.08em;
}

.nabers-score svg {
  width: 24px;
  height: 24px;
  margin-top: -1px;
  fill: var(--nabers-teal);
}

.nabers-rating > strong {
  color: var(--nabers-teal);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1;
}

.nabers-scale {
  display: grid;
  width: 100%;
  height: 5px;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 999px;
}

.nabers-scale i {
  background: var(--nabers-teal);
}

.nabers-scale i:last-child {
  background: linear-gradient(90deg, var(--nabers-teal) 50%, #d1d5db 50%);
}

.nabers-rating > span {
  color: #8b9197;
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.24em;
  line-height: 1;
}

.value-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
}

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

.value-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 30px 25px;
  border-right: 1px solid var(--border);
}

.value-item:last-child {
  border-right: 0;
}

.value-item > svg,
.service-card > svg,
.why-grid article > svg,
.process-list li > svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h2 {
  margin: 0 0 5px;
  font-size: 0.95rem;
  line-height: 1.3;
}

.value-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.55;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  max-width: 780px;
}

.section-heading h2,
.about-copy h2,
.cta-panel h2 {
  margin: 0;
  color: var(--text-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 1.04rem;
}

.services {
  background: var(--surface-page);
}

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

.services-grid > .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.service-card {
  display: grid;
  min-height: 245px;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 28px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.48);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card h3,
.why-grid h3,
.process-list h3 {
  margin: 0;
  color: var(--text-heading);
  font-size: 1.1rem;
  line-height: 1.3;
}

.service-card p,
.why-grid p,
.process-list p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--link);
  font-size: 0.85rem;
  font-weight: 800;
}

.service-card span b {
  display: inline-block;
  transition: transform 160ms ease;
}

.service-card:hover span b {
  transform: translateX(4px);
}

.audience-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(37, 99, 235, 0.08), transparent 26%),
    var(--surface-soft);
  border-top: 1px solid var(--border);
}

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

.audience-grid article {
  position: relative;
  min-height: 265px;
  padding: 0 0 30px;
  overflow: hidden;
  background: var(--audience-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.audience-grid article::after {
  position: absolute;
  right: -36px;
  bottom: -54px;
  width: 120px;
  height: 120px;
  content: "";
  background: var(--surface-tint);
  border-radius: 50%;
}

.audience-image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.audience-grid h3 {
  position: relative;
  z-index: 1;
  margin: 24px 26px 0;
  color: var(--text-heading);
  font-size: 1.03rem;
  line-height: 1.35;
}

.audience-grid p {
  position: relative;
  z-index: 1;
  margin: 11px 26px 0;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
}

.why-section {
  background: var(--surface-page);
  border-top: 1px solid var(--border);
}

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

.why-grid article {
  padding: 10px 42px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.why-grid article:first-child {
  padding-left: 0;
}

.why-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.why-grid article > svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
}

.impact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.28), transparent 32%),
    var(--navy-950);
}

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

.impact-grid article {
  display: grid;
  min-height: 160px;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-grid article:last-child {
  border-right: 0;
}

.impact-grid svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #bfdbfe;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-grid strong {
  display: block;
  color: var(--blue-500);
  font-size: 1.65rem;
  line-height: 1.1;
}

.impact-grid p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
}

.process-section {
  overflow: hidden;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  z-index: -1;
  top: 20px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), #93c5fd);
}

.process-list li {
  position: relative;
  padding-top: 66px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--link);
  background: var(--surface-raised);
  border: 2px solid var(--blue-600);
  border-radius: 50%;
  font-weight: 800;
  transform: translateX(-50%);
}

.process-list li > svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
}

.about-preview {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.team-illustration {
  display: grid;
  min-height: 310px;
  place-items: end center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 55%,
      rgba(37, 99, 235, 0.14),
      transparent 58%
    ),
    repeating-linear-gradient(
      135deg,
      transparent 0 10px,
      rgba(37, 99, 235, 0.035) 10px 12px
    );
  border: 1px solid var(--border);
  border-radius: 50% 50% 34% 34% / 42% 42% 16% 16%;
}

.team-illustration picture {
  display: block;
  width: 125%;
  max-width: none;
}

.team-illustration img {
  width: 100%;
  height: auto;
  max-width: none;
}

.about-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.about-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text-secondary);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: var(--link);
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.credibility-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 27px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.credibility-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.credibility-list .credential-check {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-section {
  padding: 28px 0 70px;
  background: var(--surface-soft);
}

.cta-panel {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 34px 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, var(--blue-700), var(--blue-600));
  border-radius: var(--radius-md);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.24);
}

.cta-panel > svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-panel h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.cta-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.button-light {
  color: var(--blue-700);
  background: var(--white);
}

.button-light:hover {
  background: var(--blue-50);
}

.australian-section {
  position: relative;
  isolation: isolate;
  min-height: clamp(320px, 23.68vw, 455px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.australian-section::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 22, 47, 0.2) 0%, rgba(6, 22, 47, 0.12) 30%, transparent 44%);
  pointer-events: none;
}

.australian-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
}

.australian-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.australian-content {
  position: relative;
  display: flex;
  width: min(430px, 34vw);
  min-height: inherit;
  align-items: center;
  margin-left: clamp(48px, 6.85vw, 132px);
  padding: 42px 0;
}

.australian-content > div {
  width: 100%;
}

.australian-content .eyebrow {
  margin-left: 0;
  color: #93c5fd;
  font-size: 0.72rem;
}

.australian-content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 2.45vw, 2.55rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  white-space: nowrap;
}

.australian-content > div > p:not(.eyebrow):not(.australian-location) {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

.australian-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
}

.australian-location svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: #93c5fd;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1.2fr;
  gap: 44px;
  padding-top: 62px;
  padding-bottom: 46px;
}

.footer-brand > p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-grid h2 {
  margin: 7px 0 17px;
  color: var(--white);
  font-size: 0.94rem;
}

.contact-list,
.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 10px;
  font-size: 0.82rem;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.52);
}

.contact-list strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.footer-links a,
.contact-list a,
.footer-bottom a {
  transition: color 150ms ease;
}

.footer-links a:hover,
.contact-list a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-links {
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}


/* Artwork adapts without inverting photographs or third-party brand assets. */
html[data-theme="dark"] .building-illustration stop:first-child {
  stop-color: #193653;
}

html[data-theme="dark"] .building-illustration stop:last-child {
  stop-color: #10243e;
}

html[data-theme="dark"] .nabers-rating {
  --nabers-teal: #5bd1d8;
}

html[data-theme="dark"] .nabers-score b,
html[data-theme="dark"] .nabers-rating > span {
  color: var(--text-secondary);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    --building-left: -40px;
    --building-top: 0;
    --building-width: 112%;
    --dashboard-right: 0;
    --dashboard-top: 64px;
    --dashboard-width: min(370px, 62%);
    width: min(100%, 760px);
    min-height: 520px;
    margin-inline: auto;
  }

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

  .value-item:nth-child(2) {
    border-right: 0;
  }

  .value-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

  .services-grid > .service-card:last-child:nth-child(3n + 1) {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }

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

  .audience-grid article {
    min-height: 245px;
  }


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

  .impact-grid article:nth-child(2) {
    border-right: 0;
  }

  .impact-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .credibility-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .site-logo {
    width: 150px;
  }

  .primary-nav {
    display: none;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu > summary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 11px;
    padding: 0 13px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 750;
    list-style: none;
  }

  .mobile-menu > summary::-webkit-details-marker,
  .mobile-services-menu > summary::-webkit-details-marker {
    display: none;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    content: "";
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before {
    position: absolute;
    transform: translateY(-6px);
  }

  .menu-icon::after {
    position: absolute;
    transform: translateY(6px);
  }

  .mobile-menu[open] .menu-icon {
    background: transparent;
  }

  .mobile-menu[open] .menu-icon::before {
    transform: rotate(45deg);
  }

  .mobile-menu[open] .menu-icon::after {
    transform: rotate(-45deg);
  }

  .mobile-menu-panel {
    position: absolute;
    z-index: 100;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(370px, calc(100vw - 28px));
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    scroll-padding-block: 10px;
    padding: 10px;
    color: var(--text-primary);
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu-panel > a,
  .mobile-services-menu > summary {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 10px 13px;
    cursor: pointer;
    border-radius: 9px;
    font-size: 0.94rem;
    font-weight: 700;
    list-style: none;
  }

  .mobile-menu-panel > a:hover,
  .mobile-menu-panel > a.is-current,
  .mobile-services-menu > summary:hover,
  .mobile-services-menu[open] > summary {
    color: var(--link);
    background: var(--surface-tint);
  }

  .mobile-services-menu > summary {
    justify-content: space-between;
  }

  .mobile-services-menu > summary::after {
    width: 7px;
    height: 7px;
    content: "";
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
  }

  .mobile-services-menu[open] > summary::after {
    transform: translateY(2px) rotate(225deg);
  }

  .mobile-services-links {
    display: grid;
    margin: 2px 0 8px;
    padding: 4px 0 4px 14px;
    border-left: 2px solid var(--surface-detail);
  }

  .mobile-services-links a {
    padding: 9px 12px;
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 650;
  }

  .mobile-services-links a:hover {
    color: var(--link);
    background: var(--surface-tint);
  }

  .hero {
    padding-top: 70px;
  }

  .hero-visual {
    --building-left: -34px;
    --building-top: 12px;
    --building-width: 110%;
    --dashboard-top: 70px;
    --dashboard-width: min(350px, 66%);
    min-height: 500px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-grid article,
  .why-grid article:first-child,
  .why-grid article:last-child {
    padding: 0;
    border-right: 0;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 28px;
  }

  .process-list::before {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .team-illustration {
    width: min(100%, 460px);
    min-height: 360px;
    margin-inline: auto;
  }

  .credibility-list {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 64px 1fr;
  }

  .cta-panel .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .australian-section {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .australian-section::after {
    display: none;
  }

  .australian-content {
    order: 1;
    width: auto;
    min-height: 0;
    margin-left: 0;
    padding: 52px max(20px, calc((100vw - var(--container)) / 2));
    background: linear-gradient(135deg, var(--navy-950), #0a2b61);
  }

  .australian-content::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    content: "";
    background: linear-gradient(180deg, #0a2b61, transparent);
    pointer-events: none;
  }

  .australian-content > div {
    position: relative;
    z-index: 2;
    max-width: 560px;
  }

  .australian-backdrop {
    position: relative;
    z-index: auto;
    inset: auto;
    order: 2;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .australian-backdrop img {
    object-position: 47% 50%;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero-visual {
    --building-left: -30px;
    --building-top: 28px;
    --building-width: 112%;
    --dashboard-right: 0;
    --dashboard-top: 70px;
    --dashboard-width: 78%;
    min-height: 430px;
  }

  .dashboard-stat {
    min-height: 130px;
    padding: 12px;
  }

  .value-grid,
  .services-grid,
  .audience-grid,
  .impact-grid,
  .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-item,
  .value-item:nth-child(2),
  .value-item:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .service-card {
    min-height: auto;
    grid-template-columns: 52px 1fr;
    padding: 24px;
  }

  .services-grid > .service-card:last-child:nth-child(3n + 1) {
    width: auto;
    grid-column: auto;
  }

  .audience-grid article {
    min-height: auto;
  }


  .impact-grid article,
  .impact-grid article:nth-child(2),
  .impact-grid article:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .impact-grid article:last-child {
    border-bottom: 0;
  }

  .process-list li {
    padding-top: 56px;
  }

  .team-illustration {
    min-height: 300px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .cta-panel .button {
    grid-column: auto;
    width: 100%;
  }

  .australian-content {
    padding: 44px 14px;
  }

  .australian-content h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .australian-backdrop {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
  }

  .site-header .site-logo {
    width: 128px;
  }

  .mobile-menu > summary {
    gap: 8px;
    padding-inline: 10px;
  }

  .hero-visual {
    --building-left: -24px;
    --building-top: 42px;
    --building-width: 110%;
    --dashboard-top: 82px;
    --dashboard-width: 84%;
    min-height: 400px;
  }

  .dashboard-header {
    padding: 14px;
  }

  .dashboard-stat strong {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
