﻿:root {
  --navy: #081d35;
  --navy-light: #123a61;
  --blue: #176b87;
  --teal: #16a39a;
  --gold: #d5a747;
  --off-white: #f6f8fa;
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --danger: #b42318;
  --success: #067647;
  --shadow: 0 20px 50px rgba(8, 29, 53, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

:focus-visible {
  outline: 3px solid rgba(22, 163, 154, 0.6);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

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

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

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-tight {
  padding: clamp(42px, 6vw, 72px) 0;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "Open Sans", Arial, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.section-head {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 32px rgba(22, 163, 154, 0.24);
}

.btn-primary:hover {
  background: #0e817a;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
}

.text-link::after {
  content: ">";
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 82px;
}

.logo img {
  width: 206px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a,
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  color: var(--text);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.nav-menu a:hover,
.submenu-toggle:hover,
.submenu-toggle.is-active,
.submenu-toggle[aria-current="page"],
.nav-menu a[aria-current="page"] {
  color: var(--teal);
  background: #effaf8;
}

.has-submenu {
  position: relative;
}

.submenu-toggle::after {
  margin-left: 7px;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 4px;
  min-width: 540px;
  padding: 14px;
  list-style: none;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-submenu::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  content: "";
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 10px);
}

.submenu a {
  justify-content: flex-start;
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.92rem;
  line-height: 1.2;
}

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

.mobile-menu-cta {
  display: none;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 112px);
  background:
    linear-gradient(135deg, rgba(8, 29, 53, 0.04), rgba(22, 163, 154, 0.08)),
    var(--off-white);
}

.hero::before {
  position: absolute;
  inset: auto 4% -120px auto;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(22, 163, 154, 0.2);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.hero-slider {
  min-height: 550px;
  height: 550px;
  padding: 0;
}

.hero-slides {
  position: relative;
  min-height: 550px;
  height: 550px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 550px;
  height: 550px;
  padding: 54px 0 84px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(36px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide .hero-copy,
.hero-slide .visual-composition {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease 120ms, transform 720ms ease 120ms;
}

.hero-slide.is-active .hero-copy,
.hero-slide.is-active .visual-composition {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-arrow,
.hero-dot {
  pointer-events: auto;
}

.hero-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(6, 26, 47, 0.42);
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--gold);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.trust-line {
  color: var(--navy-light);
  font-weight: 900;
}

.visual-composition {
  position: relative;
  min-height: 570px;
}

.visual-composition img,
.page-hero-media img,
.image-panel img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  position: absolute;
  inset: 0 0 70px 44px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.analytics-card,
.contact-card,
.float-card {
  position: absolute;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.analytics-card {
  left: 0;
  top: 54px;
  width: 220px;
  padding: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--teal);
}

.contact-card {
  right: 0;
  bottom: 0;
  padding: 18px;
}

.contact-card span,
.float-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}

.float-card {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 900;
}

.float-card:nth-child(4) {
  right: 28px;
  top: 28px;
}

.float-card:nth-child(5) {
  left: 18px;
  bottom: 130px;
}

.float-card:nth-child(6) {
  right: 34px;
  bottom: 116px;
}

.feature-grid,
.service-grid,
.industry-grid,
.article-grid,
.footer-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.industry-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.service-card,
.industry-card,
.article-card,
.outcome-card,
.form-card,
.faq-item,
.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 29, 53, 0.06);
}

.card,
.service-card,
.industry-card,
.outcome-card,
.team-card {
  padding: 24px;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(22, 163, 154, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal);
  background: #e8fbf8;
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tick-list,
.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.clean-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 700;
}

.tick-list li::before {
  position: absolute;
  left: 2px;
  top: 5px;
  width: 16px;
  height: 10px;
  content: "";
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.timeline-step {
  position: relative;
  padding: 24px 18px;
  border-right: 1px solid var(--border);
}

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

.timeline-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 900;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 159, 149, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 247, 0.94));
  box-shadow: 0 18px 44px rgba(6, 26, 47, 0.08);
}

.insight-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(15, 159, 149, 0.18);
  border-radius: 50%;
}

.insight-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-light), var(--teal));
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(15, 159, 149, 0.22);
}

.insight-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.insight-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.58;
}

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

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

.dark-section .eyebrow {
  color: var(--gold);
}

.dark-section .outcome-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.editorial-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white), #edf8f6);
}

.document-mockup {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mock-line {
  height: 10px;
  margin: 12px 0;
  border-radius: 999px;
  background: var(--border);
}

.mock-line.short {
  width: 58%;
  background: var(--teal);
}

.frameworks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(22, 163, 154, 0.24);
  border-radius: 999px;
  color: var(--navy);
  background: #effaf8;
  font-weight: 800;
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band .btn-secondary {
  color: var(--navy);
}

.article-card {
  overflow: hidden;
}

.article-card img {
  aspect-ratio: 16 / 10;
}

.article-body {
  padding: 22px;
}

.article-meta {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-grid > .contact-panel {
  order: 2;
}

.contact-grid > .form-card {
  order: 1;
}

.contact-panel,
.form-card {
  position: relative;
  overflow: hidden;
}

.contact-panel {
  padding: clamp(24px, 3.5vw, 32px);
  border: 1px solid rgba(11, 95, 159, 0.12);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at top right, rgba(11, 95, 159, 0.14), transparent 34%),
    linear-gradient(165deg, #ffffff, #f4f8fc 68%);
  box-shadow: 0 20px 48px rgba(6, 31, 58, 0.1);
}

.contact-panel::before,
.form-card::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.contact-panel h2,
.form-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1.12;
}

.contact-intro,
.form-intro {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-panel .eyebrow,
.form-card .eyebrow {
  margin-bottom: 10px;
}

.contact-map-section {
  padding-top: 0;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 45vw, 520px);
  border: 0;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-details > a,
.contact-details > span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 95, 159, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 10px 24px rgba(6, 31, 58, 0.05);
}

.contact-details > span:first-child,
.contact-details > span:last-child {
  font-weight: 800;
}

.contact-details > *::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(11, 95, 159, 0.1);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  content: "";
}

.contact-details > span:first-child::before {
  content: "AF";
  font-size: 0.72rem;
}

.contact-details > span:nth-child(2)::before {
  content: "+";
  font-size: 1rem;
}

.contact-details a[href^="mailto:"]::before {
  content: "@";
}

.contact-details a[href^="tel:"]::before {
  content: "\260E";
  font-size: 1rem;
}

.contact-details a:hover {
  border-color: rgba(11, 95, 159, 0.22);
  transform: translateY(-1px);
}

.form-card {
  padding: clamp(26px, 4vw, 36px);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at top left, rgba(11, 95, 159, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
  box-shadow: 0 22px 54px rgba(6, 31, 58, 0.12);
}

.form-card form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.field {
  display: grid;
  gap: 8px;
}

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

label,
.field-label {
  color: var(--navy);
  font-weight: 900;
}

.required {
  color: var(--danger);
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(10, 63, 112, 0.14);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(11, 95, 159, 0.24);
  background: #ffffff;
}

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

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(10, 63, 112, 0.1);
  border-radius: 18px;
  background: rgba(247, 250, 252, 0.92);
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.error-message {
  display: none;
  color: var(--danger);
  font-size: 0.88rem;
  font-weight: 700;
}

.error-message:not(:empty) {
  display: block;
}

.form-status {
  display: none;
  padding: 12px 14px;
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: #ecfdf3;
  color: var(--success);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(180, 35, 24, 0.16);
  background: #fff4f3;
  color: var(--danger);
}

.form-status.is-success {
  border-color: rgba(6, 118, 71, 0.16);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(180, 35, 24, 0.42);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.page-hero {
  padding: clamp(48px, 8vw, 86px) 0;
  background: linear-gradient(135deg, var(--off-white), #edf8f6);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  aspect-ratio: 4 / 3;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--teal);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.content-block {
  margin-bottom: 38px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.note {
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fffbeb;
  color: var(--text);
  font-weight: 700;
}

.side-panel {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--teal);
  font-size: 1.4rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-answer.is-open {
  display: block;
}

.site-footer {
  padding: 64px 0 36px;
  color: #cbd5e1;
  background: var(--navy);
}

.footer-grid {
  grid-template-columns: 1.25fr 1fr 0.85fr 1.1fr;
  margin-bottom: 0;
}

.footer-logo {
  width: 210px;
  margin-bottom: 20px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #cbd5e1;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-bottom {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 10px;
  padding-top: 18px;
  font-size: 0.92rem;
  text-align: center;
}

.footer-bottom::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.footer-contact-item p {
  margin: 0;
}

.footer-contact-item strong {
  color: var(--white);
}

.footer-contact-icon,
.footer-social-row a {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 800;
}

.footer-location-icon::before {
  width: 10px;
  height: 10px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.footer-location-icon::after {
  position: absolute;
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social-row a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #e8eef5;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-social-row a:hover,
.footer-contact-item a:hover {
  color: var(--white);
  background: var(--blue);
}

.footer-social-row a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 30px rgba(5, 25, 45, 0.22);
  transform: translateY(-2px);
}

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

.scroll-top,
.floating-consult {
  position: fixed;
  z-index: 40;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.scroll-top {
  right: 22px;
  bottom: 94px;
  display: none;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--navy);
}

.scroll-top.is-visible {
  display: block;
}

.floating-consult {
  right: 22px;
  bottom: 150px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.mobile-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 24px rgba(8, 29, 53, 0.1);
}

.mobile-contact-bar a {
  display: grid;
  min-height: 58px;
  place-items: center;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.mobile-contact-bar a:nth-child(3) {
  color: var(--white);
  background: var(--teal);
}

.cookie-notice {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  max-width: 390px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-notice.is-visible {
  display: block;
}

.cookie-notice p {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

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

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-actions .phone-link {
    display: none;
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .logo img {
    width: 178px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
    width: 100%;
    max-height: calc(100dvh - 108px);
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.menu-open .main-nav,
  .main-nav.is-open {
    display: block;
  }

  .nav-menu {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .nav-menu a,
  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding-inline: 14px;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    grid-template-columns: 1fr;
    margin: 4px 0 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-submenu.is-open .submenu {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-cta {
    display: flex;
    margin-top: 14px;
  }

  .hero-grid,
  .section-head,
  .split,
  .editorial-panel,
  .contact-grid,
  .page-hero-grid,
  .content-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .visual-composition {
    min-height: 500px;
  }

  .hero-photo {
    inset: 0 0 66px 0;
  }

  .service-grid,
  .feature-grid,
  .article-grid,
  .insight-grid,
  .footer-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .side-panel {
    position: static;
  }

  .floating-consult {
    display: none;
  }

  .mobile-contact-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .visual-composition {
    min-height: 430px;
  }

  .analytics-card {
    top: auto;
    bottom: 72px;
    width: 210px;
  }

  .float-card {
    display: none;
  }

  .contact-card {
    left: 14px;
    right: 14px;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 72px;
    max-width: none;
  }
}

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

/* Design refresh: premium executive consultancy style */
:root {
  --navy: #061a2f;
  --navy-light: #0f3357;
  --blue: #145c73;
  --teal: #0f9f95;
  --gold: #c79a35;
  --off-white: #f4f7fa;
  --white: #ffffff;
  --text: #182536;
  --muted: #5c6b7a;
  --border: #d8e2ea;
  --shadow: 0 22px 55px rgba(6, 26, 47, 0.13);
}

body {
  background:
    linear-gradient(180deg, #f9fbfc 0%, #f4f7fa 46%, #ffffff 100%);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.03rem;
  line-height: 1.68;
}

h1,
h2,
h3,
h4 {
  font-family: "Open Sans", Arial, sans-serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.75rem, 6vw, 5.9rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  line-height: 1.02;
}

h3 {
  line-height: 1.12;
}

p {
  font-size: 1.03rem;
}

.lead {
  color: #526274;
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.66;
}

.site-header {
  background: rgba(255, 255, 255, 0.96); 
  box-shadow: 0 14px 36px rgba(6, 26, 47, 0.07);
}

.header-inner {
  min-height: 88px;
}

.logo img {
  width: 218px;
}

.nav-menu a,
.submenu-toggle {
  color: #233347;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.nav-menu a:hover,
.submenu-toggle:hover,
.submenu-toggle.is-active,
.submenu-toggle[aria-current="page"],
.nav-menu a[aria-current="page"] {
  color: var(--navy);
  background: #edf8f7;
}

.submenu {
  border-color: rgba(15, 159, 149, 0.22);
  box-shadow: 0 28px 70px rgba(6, 26, 47, 0.18);
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #087d79);
  box-shadow: 0 18px 38px rgba(15, 159, 149, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0b827d, #075f5d);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(216, 226, 234, 0.9);
  box-shadow: 0 12px 28px rgba(6, 26, 47, 0.06);
}

.eyebrow {
  color: var(--gold);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.hero {
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(6, 26, 47, 0.98), rgba(13, 48, 78, 0.94)),
    var(--navy);
}

.hero::before {
  inset: 8% -140px auto auto;
  width: 520px;
  height: 520px;
  border-color: rgba(199, 154, 53, 0.24);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 76%);
}

.hero h1,
.hero h2 {
  color: var(--white);
}

.hero .lead {
  color: #d4dde7;
}

.hero .trust-line {
  color: #cfe9e7;
}

.hero .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-photo {
  inset: 18px 0 74px 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.hero-photo::after,
.page-hero-media::after,
.image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 26, 47, 0), rgba(6, 26, 47, 0.18));
}

.analytics-card,
.contact-card,
.float-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.float-card {
  color: #102842;
}

.section {
  padding: clamp(50px, 9vw, 80px) 0;
}

.section-head {
  margin-bottom: 42px;
}

.section-head h2 {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section-head .eyebrow {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 800;
}

.card,
.service-card,
.industry-card,
.article-card,
.outcome-card,
.form-card,
.faq-item,
.team-card,
.side-panel {
  border-color: rgba(216, 226, 234, 0.88);
  box-shadow: 0 18px 46px rgba(6, 26, 47, 0.075);
}

.card,
.service-card,
.industry-card,
.team-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 253, 0.98));
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.card::before,
.industry-card::before,
.team-card::before {
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 18px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 999px;
}

.service-card:hover {
  border-color: rgba(15, 159, 149, 0.52);
  transform: translateY(-6px);
}

.service-thumb {
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: 18px 0 16px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(6, 26, 47, 0.12);
  transition: transform 220ms ease, filter 220ms ease;
}

.service-card:hover .service-thumb {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-2px);
}

.icon {
  width: 54px;
  height: 54px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-light), var(--teal));
  box-shadow: 0 16px 30px rgba(15, 159, 149, 0.2);
}

.split {
  align-items: stretch;
}

.image-panel,
.page-hero-media,
.article-card {
  position: relative;
  box-shadow: 0 24px 62px rgba(6, 26, 47, 0.14);
}

.page-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(15, 159, 149, 0.14), transparent 32%),
    linear-gradient(135deg, #f7fafc, #eef5f7);
}

.page-hero h1 {
  font-size: clamp(4rem, 3vw, 4.5rem);
}

.process-timeline {
  border-color: rgba(15, 159, 149, 0.22);
  box-shadow: 0 18px 46px rgba(6, 26, 47, 0.08);
}

.timeline-step {
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
}

.timeline-step span {
  color: var(--teal);
}

.dark-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 159, 149, 0.18), transparent 28%),
    linear-gradient(135deg, #061a2f, #0d2f4e);
}

.editorial-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 247, 0.96)),
    #ffffff;
  box-shadow: 0 24px 64px rgba(6, 26, 47, 0.1);
}

.document-mockup {
  border: 1px solid rgba(216, 226, 234, 0.9);
  box-shadow: 0 24px 58px rgba(6, 26, 47, 0.16);
}

.badge {
  color: #08304b;
  background: #edf8f7;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(6, 26, 47, 0.98), rgba(12, 56, 91, 0.94)),
    var(--navy);
  box-shadow: 0 26px 70px rgba(6, 26, 47, 0.22);
}

.form-card,
.side-panel {
  background: rgba(255, 255, 255, 0.96);
}

input,
select,
textarea {
  border-color: #cfdae4;
  background: #fbfdfe;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 159, 149, 0.12);
  outline: none;
}

.site-footer {
  background:
    linear-gradient(135deg, #061a2f, #08233d 68%, #0b2d48);
}

.floating-consult {
  background: linear-gradient(135deg, var(--teal), #087d79);
}

@media (max-width: 920px) {
  .main-nav {
    background:
      linear-gradient(180deg, #ffffff, #f7fafc);
  }

  .hero-slider,
  .hero-slides {
    min-height: auto;
  }

  .hero-slide {
    padding: 56px 0 92px;
  }

  .hero-photo {
    inset: 0 0 66px 0;
  }

  .hero::after {
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
  }

  .hero-slider-controls {
    bottom: 18px;
  }
}

@media (max-width: 620px) {
  .hero-slider-controls {
    justify-content: center;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide .hero-copy,
  .hero-slide .visual-composition {
    transition: none;
  }
}

/* Simple premium hero slider */
.hero-slider {
  min-height: 550px;
  height: 550px;
  background: var(--navy);
}

.hero-slider::before {
  display: none;
}

.hero-slider::after {
  opacity: 0.55;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 82%);
}

.hero-slider .hero-slide {
  min-height: 550px;
  height: 550px;
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.92) 0%, rgba(6, 26, 47, 0.78) 42%, rgba(6, 26, 47, 0.38) 72%, rgba(6, 26, 47, 0.18) 100%),
    var(--hero-bg) center / cover no-repeat;
}

.hero-slider .hero-grid {
  grid-template-columns: minmax(0, 760px);
  align-content: center;
}

.hero-slider .hero-copy {
  max-width: 760px;
  padding: clamp(22px, 3vw, 34px) 0;
}

.hero-slider .visual-composition {
  display: none;
}

.hero-slider .hero-slide-has-video {
  overflow: hidden;
  background: #061729;
}

.hero-slider .hero-slide-has-video .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 760px);
  align-content: center;
  height: 100%;
}

.hero-slider .hero-slide-has-video .hero-video-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #061729;
}

.hero-slider .hero-slide-has-video .hero-video-background::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 17, 30, 0.84) 0%, rgba(5, 17, 30, 0.56) 42%, rgba(5, 17, 30, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 17, 30, 0.14), rgba(5, 17, 30, 0.24));
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .hero-slide-has-video .hero-copy {
  max-width: 760px;
  padding: clamp(10px, 1vw, 14px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-slider .hero-slide-has-video .eyebrow {
  color: #f2c14e;
}

.hero-slider h1 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1.12;
}

.hero-slider .lead {
  max-width: 680px;
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
  line-height: 1.55;
}

.hero-slider .hero-slider-controls {
  justify-content: flex-start;
}

.hero-slider .hero-dots {
  order: -1;
}

.hero-slider .hero-arrow {
  width: 44px;
  height: 44px;
}

@media (max-width: 920px) {
  .hero-slider,
  .hero-slides,
  .hero-slider .hero-slide {
    min-height: 550px;
    height: auto;
  }

  .hero-slider .hero-slide {
    background:
      linear-gradient(180deg, rgba(6, 26, 47, 0.92) 0%, rgba(6, 26, 47, 0.82) 62%, rgba(6, 26, 47, 0.72) 100%),
      var(--hero-bg) center / cover no-repeat;
  }

  .hero-slider .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider .hero-slider-controls {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .hero-slider h1 {
    font-size: clamp(1.72rem, 7.2vw, 2.25rem);
  }
}

/* AFL logo colour system */
:root {
  --navy: #061f3a;
  --navy-light: #0a3f70;
  --blue: #0b5f9f;
  --teal: #0b5f9f;
  --gold: #a7a9ac;
  --off-white: #f3f6f9;
  --white: #ffffff;
  --text: #09233f;
  --muted: #5e6f80;
  --border: #d9e0e7;
  --shadow: 0 22px 55px rgba(6, 31, 58, 0.13);
}

.site-header {
  border-top-color: var(--gold);
}

.logo img {
  width: 250px;
  max-height: 58px;
  object-fit: contain;
}

.footer-logo {
  width: 250px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
}

.btn-primary,
.floating-consult,
.mobile-contact-bar a:nth-child(3) {
  background: linear-gradient(135deg, var(--blue), #063c67);
  box-shadow: 0 18px 38px rgba(11, 95, 159, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #084d82, #052f52);
}

.eyebrow,
.text-link,
.article-meta,
.contact-details a,
.faq-question::after {
  color: var(--blue);
}

.nav-menu a:hover,
.submenu-toggle:hover,
.submenu-toggle.is-active,
.submenu-toggle[aria-current="page"],
.nav-menu a[aria-current="page"] {
  color: var(--navy);
  background: #edf4fa;
}

.icon,
.insight-icon {
  background: linear-gradient(135deg, var(--navy-light), var(--blue));
  box-shadow: 0 16px 30px rgba(11, 95, 159, 0.2);
}

.card::before,
.industry-card::before,
.team-card::before {
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.service-card:hover {
  border-color: rgba(11, 95, 159, 0.45);
}

.insight-card {
  border-color: rgba(11, 95, 159, 0.18);
}

.insight-card::after {
  border-color: rgba(11, 95, 159, 0.18);
}

.hero-dot.is-active {
  background: var(--gold);
}

.badge {
  color: var(--navy);
  background: #edf4fa;
  border-color: rgba(11, 95, 159, 0.2);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 95, 159, 0.12);
}

.site-footer {
  background: linear-gradient(135deg, #061f3a, #082c4f 68%, #0a3f70);
}

@media (max-width: 920px) {
  .logo img {
    width: 220px;
  }

  .main-nav .nav-menu {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .main-nav .nav-menu > li,
  .main-nav .has-submenu {
    width: 100%;
    min-width: 0;
  }

  .main-nav .has-submenu::after {
    display: none;
  }

  .main-nav .submenu {
    position: static;
    top: auto;
    left: auto;
    display: none;
    grid-template-columns: 1fr;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 6px 0 4px;
    padding: 8px;
    border-radius: var(--radius);
    background: #f7fafc;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav .has-submenu.is-open > .submenu {
    display: grid;
    position: static !important;
    inset: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  body.menu-open .main-nav .submenu {
    transform: none !important;
  }

  .main-nav .submenu a {
    justify-content: flex-start;
    min-height: 44px;
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.3;
  }
}

/* Modern header and navigation refinement */
:root {
  --header-surface: rgba(255, 255, 255, 0.84);
  --header-surface-strong: rgba(255, 255, 255, 0.95);
  --header-border-soft: rgba(10, 63, 112, 0.12);
  --header-border-strong: rgba(10, 63, 112, 0.18);
  --header-shadow-soft: 0 20px 45px rgba(6, 31, 58, 0.08);
  --header-shadow-strong: 0 24px 52px rgba(6, 31, 58, 0.14);
}

.site-header {
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.top-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(10, 63, 112, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92));
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.top-header-info,
.top-header-links {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.top-header-info {
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.4;
}

.top-header-info > * {
  position: relative;
}

.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-contact-item::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-right: 2px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(11, 95, 159, 0.1);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  order: -1;
}

.top-contact-email::after {
  content: "@";
}

.top-contact-address::after {
  content: "\2316";
  font-size: 0.72rem;
}

.top-contact-phone::after {
  content: "\260E";
  font-size: 0.72rem;
}

.top-header-info > * + *::before,
.top-header-links > * + *::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(10, 63, 112, 0.14);
  transform: translateY(-50%);
}

.top-header-links > * + *::before {
  display: none;
}

.top-header-info a,
.top-header-links a {
  color: #38506a;
  font-weight: 600;
  transition: color 180ms ease;
}

.top-header-info a:hover,
.top-header-links a:hover {
  color: var(--blue);
}

.top-header-links {
  flex-shrink: 0;
  gap: 16px;
  color: #6a7a8b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-header-link-group,
.top-header-social {
  display: flex;
  align-items: center;
}

.top-header-link-group {
  gap: 14px;
}

.top-header-social {
  gap: 8px;
}

.top-header-social a {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(10, 63, 112, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(6, 31, 58, 0.06);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.top-header-social a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #063c67);
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(11, 95, 159, 0.2);
  transform: translateY(-1px);
}

.top-header-social a svg,
.footer-social-row a svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.top-header-links span {
  padding-inline: 0;
}

.site-header::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(11, 95, 159, 0.08), rgba(167, 169, 172, 0.06));
  border-bottom: 1px solid rgba(217, 224, 231, 0.74);
  backdrop-filter: blur(18px);
  pointer-events: none;
}

.site-header.is-scrolled::before {
  background:
    linear-gradient(180deg, var(--header-surface-strong), rgba(255, 255, 255, 0.9)),
    linear-gradient(90deg, rgba(11, 95, 159, 0.12), rgba(167, 169, 172, 0.08));
  border-bottom-color: rgba(217, 224, 231, 0.94);
  box-shadow: var(--header-shadow-strong);
}

.header-inner {
  position: relative;
  min-height: 94px;
  gap: 26px;
}

.site-header.is-scrolled .header-inner {
  min-height: 84px;
}

.logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
}

.logo img {
  width: 232px;
  max-height: 54px;
}

.main-nav {
  justify-self: center;
}

.nav-menu {
  position: relative;
  z-index: 1;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--header-border-soft);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 253, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    var(--header-shadow-soft);
}

.nav-menu > li {
  position: relative;
}

.nav-menu a,
.submenu-toggle {
  position: relative;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #23374e;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-menu a:hover,
.submenu-toggle:hover,
.submenu-toggle.is-active,
.submenu-toggle[aria-current="page"],
.nav-menu a[aria-current="page"] {
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 250, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(10, 63, 112, 0.1),
    0 12px 26px rgba(6, 31, 58, 0.08);
  transform: translateY(-1px);
}

.submenu-toggle::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.has-submenu:hover .submenu-toggle::after,
.has-submenu:focus-within .submenu-toggle::after,
.has-submenu.is-open .submenu-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.submenu {
  top: calc(100% + 10px);
  left: 50%;
  gap: 8px;
  min-width: min(680px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid var(--header-border-strong);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96)),
    var(--white);
  box-shadow: 0 28px 64px rgba(6, 31, 58, 0.16);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 12px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-submenu::after {
  top: 100%;
  left: 50%;
  width: min(680px, calc(100vw - 48px));
  height: 22px;
  transform: translateX(-50%);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  transform: translate(-50%, 0) scale(1);
}

.submenu a {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(243, 246, 249, 0.7), rgba(255, 255, 255, 0.98));
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.header-actions {
  position: relative;
  z-index: 1;
  gap: 10px;
}

.phone-link {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--header-border-soft);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 249, 0.88));
  box-shadow: 0 14px 30px rgba(6, 31, 58, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-link:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(6, 31, 58, 0.1);
  transform: translateY(-1px);
}

.phone-link svg {
  stroke: var(--blue);
}

.header-actions .btn-primary {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid var(--header-border-soft);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 249, 0.88));
  box-shadow: 0 14px 30px rgba(6, 31, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(6, 31, 58, 0.1);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1120px) {
  .top-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-header-links {
    flex-wrap: wrap;
    letter-spacing: 0.03em;
  }

  .header-inner {
    gap: 16px;
  }

  .logo {
    padding: 9px 14px;
  }

  .logo img {
    width: 214px;
  }

  .nav-menu a,
  .submenu-toggle {
    padding-inline: 15px;
    font-size: 0.91rem;
  }
}

@media (max-width: 920px) {
  .site-header::before {
    border-bottom-color: rgba(217, 224, 231, 0.92);
  }

  .top-header-inner {
    gap: 10px;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-header-info,
  .top-header-links {
    width: 100%;
  }

  .top-header-info {
    gap: 10px 14px;
    font-size: 0.79rem;
  }

  .top-header-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.78rem;
  }

  .header-inner {
    min-height: 84px;
    gap: 14px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 80px;
  }

  .logo {
    padding: 8px 12px;
    border-radius: 0;
  }

  .logo img {
    width: 186px;
    max-height: 46px;
  }

  .main-nav {
    top: calc(100% + 12px);
    padding: 18px;
    border: 1px solid var(--header-border-strong);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 249, 0.96)),
      var(--white);
    box-shadow: 0 30px 60px rgba(6, 31, 58, 0.18);
  }

  .nav-menu {
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu a,
  .submenu-toggle {
    min-height: 52px;
    padding-inline: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 249, 0.9));
    box-shadow: inset 0 0 0 1px rgba(10, 63, 112, 0.08);
  }

  .main-nav .submenu {
    gap: 8px;
    margin: 8px 0 4px;
    padding: 10px;
    border: 1px solid rgba(10, 63, 112, 0.1);
    border-radius: 20px;
    background: linear-gradient(180deg, #f7fafc, #ffffff);
  }

  .main-nav .submenu a {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .mobile-menu-cta {
    margin-top: 16px;
    border-radius: 18px;
  }
}

@media (max-width: 620px) {
  .top-header {
    display: none;
  }

  .top-header-info > * + *::before,
  .top-header-links > * + *::before {
    display: none;
  }

  .top-header-info,
  .top-header-links {
    gap: 6px 12px;
  }

  .top-header-info span {
    flex-basis: 100%;
  }

  .top-contact-item::after {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    font-size: 0.62rem;
  }
}

/* Final contact section polish */
.contact-grid {
  align-items: stretch;
}

.contact-grid .form-card,
.contact-grid .contact-panel {
  border-radius: 28px;
}

.contact-grid .form-card {
  border: 1px solid rgba(11, 95, 159, 0.14);
  background:
    radial-gradient(circle at top left, rgba(11, 95, 159, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 252, 0.96));
  box-shadow: 0 30px 70px rgba(6, 31, 58, 0.12);
}

.contact-grid .contact-panel {
  position: sticky;
  top: 118px;
  border: 1px solid rgba(11, 95, 159, 0.12);
  background:
    radial-gradient(circle at top right, rgba(11, 95, 159, 0.16), transparent 34%),
    linear-gradient(165deg, #ffffff, #f4f8fc 70%);
  box-shadow: 0 26px 62px rgba(6, 31, 58, 0.11);
}

.contact-grid .form-card h2,
.contact-grid .contact-panel h2 {
  letter-spacing: -0.03em;
}

.contact-grid .form-intro,
.contact-grid .contact-intro {
  max-width: 62ch;
  font-size: 1rem;
}

.contact-grid .form-grid {
  gap: 20px 18px;
}

.contact-grid label {
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.contact-grid input,
.contact-grid select,
.contact-grid textarea {
  border-color: rgba(10, 63, 112, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-grid input::placeholder,
.contact-grid textarea::placeholder {
  color: #7b8b9b;
}

.contact-grid textarea {
  min-height: 176px;
}

.contact-grid .checkbox-field {
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.contact-grid .btn-primary {
  min-height: 54px;
  padding-inline: 26px;
  border-radius: 18px;
}

.contact-grid .contact-details {
  gap: 14px;
}

.contact-grid .contact-details > * {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-grid .contact-details > *:hover {
  border-color: rgba(11, 95, 159, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(6, 31, 58, 0.08);
  transform: translateY(-2px);
}

.contact-grid .contact-details span:last-child {
  display: grid;
  gap: 8px;
}

.contact-grid .contact-details span:last-child a {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-weight: 700;
}

.contact-grid .contact-details span:last-child a:hover {
  transform: none;
  text-decoration: underline;
}

.contact-grid .contact-social {
  display: grid;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(11, 95, 159, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(6, 31, 58, 0.05);
}

.contact-grid .contact-social::before {
  display: none;
  content: none;
}

.contact-grid .contact-social-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid .contact-social-label::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(11, 95, 159, 0.1);
  content: "#";
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.contact-grid .contact-social-links {
  display: grid;
  gap: 10px;
}

.contact-grid .contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(11, 95, 159, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(6, 31, 58, 0.05);
  color: var(--navy);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-grid .contact-social-links a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 95, 159, 0.14), rgba(11, 95, 159, 0.06));
  box-shadow: none;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.contact-grid .contact-social-links a:hover {
  border-color: rgba(11, 95, 159, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(6, 31, 58, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 920px) {
  .contact-grid .contact-panel {
    position: static;
  }

  .contact-grid .form-card,
  .contact-grid .contact-panel {
    border-radius: 24px;
  }
}

@media (max-width: 620px) {
  .contact-grid .form-card,
  .contact-grid .contact-panel {
    border-radius: 22px;
  }

  .contact-grid .form-grid {
    gap: 16px;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
    line-height: 1.05;
  }
}

/* About page */
.about-page .page-hero {
  overflow: hidden;
}

.about-page-hero {
  position: relative;
  padding: clamp(58px, 8vw, 96px) 0 clamp(68px, 9vw, 104px);
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 95, 159, 0.14), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(167, 169, 172, 0.16), transparent 24%),
    radial-gradient(circle at 72% 78%, rgba(11, 95, 159, 0.09), transparent 24%),
    linear-gradient(135deg, #f7fafc, #eef4f8 58%, #f5f8fb);
}

.about-page-hero::before {
  position: absolute;
  inset: auto auto -140px -80px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(11, 95, 159, 0.12);
  border-radius: 50%;
}

.about-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.26), transparent 78%);
  pointer-events: none;
}

.about-hero-grid,
.about-split,
.about-company-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.94fr);
  gap: clamp(32px, 5vw, 74px);
}

.about-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.about-company-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.about-hero-copy {
  position: relative;
  max-width: 720px;
}

.about-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.85vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.about-hero-copy .lead {
  max-width: 58ch;
  margin-bottom: 0;
  font-size: clamp(1.06rem, 1.4vw, 1.26rem);
  line-height: 1.72;
}

.about-hero-line {
  display: block;
}

.about-hero-line + .about-hero-line {
  margin-top: 2px;
}

.about-hero-line-accent {
  position: relative;
  display: inline-block;
  max-width: 10.8ch;
}

.about-hero-line-accent::after {
  position: absolute;
  left: 0;
  bottom: 0.08em;
  z-index: -1;
  width: 100%;
  height: 0.22em;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 95, 159, 0.16), rgba(167, 169, 172, 0.2));
}

.about-hero-note {
  max-width: 54ch;
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 3px solid rgba(11, 95, 159, 0.28);
  color: #36506c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.62;
}

.about-hero-actions {
  margin-top: 30px;
}

.about-hero-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-chip {
  display: grid;
  gap: 6px;
  min-height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid rgba(10, 63, 112, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(6, 31, 58, 0.06);
}

.about-chip strong {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.3;
}

.about-chip small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.about-hero-visual {
  position: relative;
  min-width: 0;
  padding: 34px 0 42px 34px;
}

.about-hero-visual::before {
  position: absolute;
  inset: 18px 0 0 68px;
  content: "";
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, rgba(11, 95, 159, 0.14), rgba(167, 169, 172, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.about-hero-badge {
  position: absolute;
  top: 0;
  right: 36px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(10, 63, 112, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(6, 31, 58, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-image {
  min-height: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 66px rgba(6, 31, 58, 0.18);
}

.about-hero-image img {
  aspect-ratio: 10 / 10.8;
}

.about-hero-card {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 12px;
  z-index: 2;
  width: min(100%, 330px);
  padding: 24px 24px 22px;
  border: 1px solid rgba(10, 63, 112, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 64px rgba(6, 31, 58, 0.18);
  backdrop-filter: blur(18px);
}

.about-hero-card p,
.about-image-panel-note span,
.about-team-mark span {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-card strong,
.about-image-panel-note strong {
  display: block;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.28;
}

.about-hero-card ul,
.about-credibility-list,
.about-team-fields {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.about-hero-card li,
.about-credibility-list li,
.about-team-fields li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-hero-card li + li,
.about-credibility-list li + li,
.about-team-fields li + li {
  margin-top: 10px;
}

.about-hero-card li::before,
.about-credibility-list li::before,
.about-team-fields li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

.about-image-panel {
  min-height: 520px;
  border-radius: 30px;
}

.about-image-panel-note {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 46px rgba(6, 31, 58, 0.14);
}

.about-credibility-card,
.about-card,
.about-support-card,
.about-company-card,
.about-process-step {
  border: 1px solid rgba(216, 226, 234, 0.9);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  box-shadow: 0 18px 46px rgba(6, 31, 58, 0.08);
}

.about-credibility-card {
  margin-top: 30px;
  padding: 24px;
}

.about-credibility-card h3,
.about-company-card h3 {
  margin-bottom: 16px;
}

.about-mission-section {
  padding-top: 0;
}

.about-mission-band {
  padding: clamp(34px, 5vw, 52px);
  border: 1px solid rgba(10, 63, 112, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(11, 95, 159, 0.16), transparent 28%),
    linear-gradient(135deg, #071f39, #0a345b 72%);
  box-shadow: 0 28px 68px rgba(6, 31, 58, 0.2);
}

.about-mission-band h2,
.about-mission-band p {
  color: var(--white);
}

.about-mission-band .eyebrow {
  color: #d9e3ec;
}

.about-card-grid,
.about-support-grid,
.about-values-grid {
  display: grid;
  gap: 18px;
}

.about-service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-support-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-card,
.about-support-card,
.about-company-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.about-card .icon {
  margin-bottom: 18px;
}

.about-card p,
.about-support-card p,
.about-company-card p {
  margin-bottom: 0;
}

.about-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.about-support-section {
  background:
    linear-gradient(180deg, rgba(243, 246, 249, 0.82), rgba(255, 255, 255, 0)),
    transparent;
}

.about-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.about-process::before {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 46px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(11, 95, 159, 0.24), rgba(167, 169, 172, 0.34));
}

.about-process-step {
  position: relative;
  padding: 88px 22px 24px;
}

.about-process-number {
  position: absolute;
  left: 22px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  padding: 0 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-light), var(--blue));
  box-shadow: 0 16px 28px rgba(11, 95, 159, 0.18);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.about-process-step h3 {
  font-size: 1.18rem;
}

.about-benefits-split {
  align-items: stretch;
}

.about-benefit-image {
  min-height: 100%;
}

.about-benefit-list {
  margin-bottom: 0;
}

.about-people-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(11, 95, 159, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(243, 246, 249, 0.68), rgba(255, 255, 255, 0));
}

.about-team-panel {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 36px);
  border-radius: 28px;
}

.about-team-mark {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  min-height: 220px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(135deg, #071f39, #0a345b);
}

.about-team-mark img {
  width: 82px;
  height: 82px;
}

.about-team-mark span {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.about-team-body p {
  max-width: 60ch;
}

.about-team-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.about-team-fields li {
  margin-top: 0;
}

.about-company-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.about-meta-item {
  padding: 18px;
  border: 1px solid rgba(10, 63, 112, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.about-meta-item dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-meta-item dd {
  margin: 8px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.about-address {
  margin-bottom: 24px;
  color: var(--text);
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
}

.about-company-links {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.about-company-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(10, 63, 112, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.about-company-link:hover {
  border-color: rgba(11, 95, 159, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(6, 31, 58, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  }

  .about-hero-copy h1 {
    font-size: clamp(2.85rem, 4.7vw, 4.65rem);
  }

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

  .about-service-grid,
  .about-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .about-hero-grid,
  .about-split,
  .about-company-grid,
  .about-support-grid,
  .about-values-grid,
  .about-team-panel {
    grid-template-columns: 1fr;
  }

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

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

  .about-process::before {
    left: 32px;
    right: auto;
    top: 34px;
    bottom: 34px;
    width: 2px;
    height: auto;
  }

  .about-process-step {
    padding: 24px 24px 24px 98px;
  }

  .about-process-number {
    left: 22px;
    top: 22px;
  }

  .about-team-mark {
    min-height: auto;
  }

  .about-company-meta,
  .about-team-fields {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero-visual {
    padding: 26px 0 30px;
  }

  .about-hero-visual::before {
    inset: 12px 0 0 24px;
  }

  .about-hero-badge {
    right: 24px;
  }

  .about-hero-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }
}

@media (max-width: 620px) {
  .about-page-hero {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .about-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.45rem, 10vw, 3.5rem);
    line-height: 0.96;
  }

  .about-chip,
  .about-company-link {
    width: 100%;
  }

  .about-service-grid,
  .about-support-grid,
  .about-values-grid,
  .about-company-meta,
  .about-team-fields,
  .about-hero-credentials {
    grid-template-columns: 1fr;
  }

  .about-hero-card,
  .about-image-panel-note,
  .about-card,
  .about-support-card,
  .about-company-card,
  .about-process-step,
  .about-team-panel,
  .about-mission-band {
    border-radius: 22px;
  }

  .about-image-panel {
    min-height: 420px;
  }

  .about-hero-note {
    padding-left: 14px;
    font-size: 0.96rem;
  }

  .about-hero-visual {
    padding: 20px 0 26px;
  }

  .about-hero-visual::before {
    inset: 10px 0 0 16px;
    border-radius: 24px;
  }

  .about-hero-badge {
    top: 0;
    right: 16px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.74rem;
  }

  .about-hero-card strong {
    font-size: 1.14rem;
  }

  .about-hero-card li {
    font-size: 0.96rem;
  }
}

/* About page refresh */
.about-page-hero {
  padding: clamp(52px, 7vw, 88px) 0 clamp(56px, 8vw, 90px);
  background:
    radial-gradient(circle at 10% 16%, rgba(11, 95, 159, 0.1), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(167, 169, 172, 0.14), transparent 20%),
    linear-gradient(135deg, #f7fafc, #eff4f8 54%, #f8fafc);
}

.about-page-hero::before {
  inset: auto auto -160px -120px;
  width: 280px;
  height: 280px;
  border-color: rgba(11, 95, 159, 0.08);
}

.about-page-hero::after {
  background-image: none;
}

.about-compact-hero,
.about-summary-grid,
.about-company-compact-grid {
  display: grid;
  gap: clamp(26px, 4.5vw, 60px);
  align-items: center;
}

.about-compact-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
}

.about-summary-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  align-items: start;
}

.about-company-compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.about-compact-copy {
  max-width: 720px;
}

.about-compact-copy h1 {
  max-width: 25ch;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-compact-copy .lead {
  max-width: 58ch;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.about-compact-media {
  position: relative;
  padding: 18px 0 0 18px;
}

.about-compact-media::before {
  position: absolute;
  inset: 0 0 auto 64px;
  height: calc(100% - 44px);
  content: "";
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(11, 95, 159, 0.14), rgba(167, 169, 172, 0.1));
}

.about-compact-image,
.about-summary-card,
.about-focus-card,
.about-principles-panel,
.about-company-compact-card {
  border: 1px solid rgba(216, 226, 234, 0.9);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  box-shadow: 0 20px 50px rgba(6, 31, 58, 0.08);
}

.about-compact-image {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 68px rgba(6, 31, 58, 0.16);
}

.about-compact-image img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.about-compact-panel {
  position: absolute;
  left: 0;
  bottom: 24px;
  z-index: 2;
  width: min(100%, 320px);
  padding: 22px 22px 20px;
  border: 1px solid rgba(10, 63, 112, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(6, 31, 58, 0.16);
  backdrop-filter: blur(16px);
}

.about-compact-panel span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-compact-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.35;
}

.about-summary-card,
.about-company-compact-card {
  padding: 28px;
}

.about-summary-card .eyebrow {
  margin-bottom: 14px;
}

.about-summary-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-summary-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-weight: 700;
}

.about-summary-list li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

.about-focus-section {
  padding-top: clamp(42px, 6vw, 70px);
}

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

.about-focus-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.about-focus-card .icon {
  margin-bottom: 6px;
}

.about-focus-card h3,
.about-company-compact-card h3 {
  margin-bottom: 0;
}

.about-focus-card p {
  margin-bottom: 0;
}

.about-principles-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.85fr);
  gap: 26px;
  padding: clamp(28px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 250, 0.98)),
    #ffffff;
}

.about-principles-list {
  margin: 0;
}

.about-company-section {
  padding-top: clamp(42px, 6vw, 70px);
}

.about-company-compact {
  display: grid;
  gap: 28px;
}

.about-company-compact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.about-company-compact-meta div {
  padding: 16px 18px;
  border: 1px solid rgba(10, 63, 112, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.about-company-compact-meta dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-company-compact-meta dd {
  margin: 8px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.about-address {
  margin-bottom: 22px;
  color: var(--text);
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
}

.about-company-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-company-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(10, 63, 112, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.about-company-link:hover {
  border-color: rgba(11, 95, 159, 0.24);
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(6, 31, 58, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .about-compact-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

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

@media (max-width: 920px) {
  .about-compact-hero,
  .about-summary-grid,
  .about-company-compact-grid,
  .about-principles-panel {
    grid-template-columns: 1fr;
  }

  .about-compact-copy h1 {
    max-width: none;
  }

  .about-compact-media {
    padding: 14px 0 0;
  }

  .about-compact-media::before {
    inset: 0 0 auto 18px;
  }

  .about-compact-panel {
    left: 18px;
    right: 18px;
    width: auto;
  }
}

@media (max-width: 620px) {
  .about-page-hero {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .about-compact-copy h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    line-height: 1;
  }

  .about-summary-card,
  .about-focus-card,
  .about-principles-panel,
  .about-company-compact-card,
  .about-compact-image,
  .about-compact-panel {
    border-radius: 22px;
  }

  .about-company-compact-meta,
  .about-company-links {
    grid-template-columns: 1fr;
  }

  .about-company-links {
    display: grid;
  }

  .about-company-link {
    width: 100%;
  }
}

/* Service pages */
.service-page .page-hero {
  padding-bottom: clamp(40px, 6vw, 68px);
}

.service-page .page-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.service-page .page-hero h1 {
  max-width: 25ch;
  font-size: clamp(2.5rem, 3vw, 3rem);
  line-height: 0.98;
}

.service-page .page-hero .lead {
  max-width: 56ch;
  margin-bottom: 0;
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.service-page .content-grid {
  grid-template-columns: minmax(0, 1fr);
}

.service-page .content-grid > div {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.service-page .side-panel {
  display: none;
}

.service-page .content-block {
  margin-bottom: 22px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(216, 226, 234, 0.92);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 252, 0.98));
  box-shadow: 0 18px 46px rgba(6, 31, 58, 0.08);
}

.service-page .content-block > :last-child {
  margin-bottom: 0;
}

.service-page .content-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.06;
}

.service-page .content-block p + p {
  margin-top: 14px;
}

.service-page .service-spotlight {
  position: relative;
  overflow: hidden;
}

.service-page .service-spotlight::after {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 154, 0.16), rgba(22, 163, 154, 0));
  pointer-events: none;
}

.service-page .service-spotlight .eyebrow {
  margin-bottom: 12px;
}

.service-page .service-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-page .service-stat-card {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(216, 226, 234, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 29, 53, 0.06);
}

.service-page .service-stat-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #081d35 0%, #176b87 100%);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-page .service-stat-card h3,
.service-page .service-use-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-page .service-stat-card p,
.service-page .service-use-card p {
  margin: 0;
  color: var(--muted);
}

.service-page .two-column.content-block {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 18px;
}

.service-page .two-column.content-block .card {
  height: 100%;
  padding: 26px;
  border-radius: 26px;
}

.service-page .service-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.service-page .service-use-card {
  padding: 24px;
  border: 1px solid rgba(216, 226, 234, 0.92);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 252, 0.98));
  box-shadow: 0 16px 34px rgba(8, 29, 53, 0.06);
}

.service-page .service-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  margin: 28px 0 8px;
}

.service-page .service-proof-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(216, 226, 234, 0.92);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 252, 0.98));
  box-shadow: 0 22px 54px rgba(6, 31, 58, 0.08);
}

.service-page .service-proof-card::before {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page .service-proof-card::after {
  position: absolute;
  right: -48px;
  bottom: -72px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 154, 0.14), rgba(22, 163, 154, 0));
  pointer-events: none;
}

.service-page .service-proof-card--outcomes {
  border-color: rgba(8, 29, 53, 0.24);
  background: linear-gradient(135deg, #081d35 0%, #123a61 58%, #176b87 100%);
}

.service-page .service-proof-card--outcomes::before {
  content: "What this supports";
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
}

.service-page .service-proof-card--faq::before {
  content: "Need to know";
  color: var(--navy-light);
  background: rgba(23, 107, 135, 0.08);
}

.service-page .service-proof-card h2 {
  margin: 18px 0 18px;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.service-page .service-proof-card--outcomes h2 {
  color: var(--white);
}

.service-page .service-proof-card .tick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.service-page .service-proof-card .tick-list li {
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(216, 226, 234, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
}

.service-page .service-proof-card .tick-list li::before {
  left: 20px;
  top: 18px;
  width: 12px;
  height: 8px;
}

.service-page .service-proof-card--faq .faq-list {
  gap: 14px;
}

.service-page .service-proof-card--faq .faq-item {
  overflow: hidden;
  border-color: rgba(216, 226, 234, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(8, 29, 53, 0.05);
}

.service-page .service-proof-card--faq .faq-question {
  min-height: 70px;
  padding: 0 20px;
  border-radius: 20px;
  background: transparent;
  font-size: 1rem;
  font-weight: 800;
}

.service-page .service-proof-card--faq .faq-question::after {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(23, 107, 135, 0.09);
  color: var(--navy-light);
  font-size: 1.25rem;
  line-height: 1;
}

.service-page .service-proof-card--faq .faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.service-page .service-proof-card--faq .faq-answer.is-open {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  margin-top: -2px;
  padding-top: 12px;
}

.service-page .process-timeline {
  border-radius: 26px;
}

.service-page .faq-item {
  border-radius: 20px;
}

.service-page .faq-question {
  min-height: 62px;
  border-radius: 20px;
}

.service-page .note {
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8e7, #fffdf6);
}

.service-page .cta-band {
  width: min(100%, 1180px);
  margin-inline: auto;
}

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

  .service-page .service-stat-grid,
  .service-page .service-use-grid,
  .service-page .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-page .content-grid > div,
  .service-page .cta-band {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .service-page .content-block,
  .service-page .two-column.content-block .card,
  .service-page .service-proof-card,
  .service-page .process-timeline,
  .service-page .faq-item,
  .service-page .faq-question {
    border-radius: 22px;
  }

  .service-page .service-proof-card h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .service-page .service-proof-card .tick-list {
    grid-template-columns: 1fr;
  }

  .service-page .service-proof-card .tick-list li,
  .service-page .service-proof-card--faq .faq-item,
  .service-page .service-proof-card--faq .faq-question {
    border-radius: 18px;
  }

  .service-page .page-hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 9.5vw, 3.35rem);
  }
}
