:root {
  --brand-900: #063342;
  --brand-800: #06485a;
  --brand-700: #00586f;
  --brand-600: #067489;
  --brand-500: #079392;
  --brand-400: #24aaa7;
  --brand-100: #dff5f3;
  --brand-050: #f0fbfa;
  --ink-950: #071e29;
  --ink-900: #0b2834;
  --ink-800: #163b48;
  --ink-700: #2a4d58;
  --ink-600: #47636d;
  --ink-500: #617984;
  --line: #dce8ea;
  --surface: #ffffff;
  --surface-soft: #f5f9fa;
  --surface-cool: #ecf5f6;
  --success: #14846d;
  --warning: #b56f16;
  --shadow-sm: 0 10px 30px rgba(8, 47, 61, 0.08);
  --shadow-md: 0 24px 70px rgba(8, 47, 61, 0.14);
  --shadow-lg: 0 35px 100px rgba(8, 47, 61, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 78px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #ffffff;
  background: var(--brand-500);
}

:focus-visible {
  outline: 3px solid rgba(7, 147, 146, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--ink-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

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

.section {
  position: relative;
  padding: 104px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-cool {
  background: var(--surface-cool);
}

.section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 12%, rgba(36, 170, 167, 0.22), transparent 28%),
    radial-gradient(circle at 87% 76%, rgba(0, 88, 111, 0.5), transparent 33%),
    var(--ink-950);
}

.section-clip {
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--brand-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 2px;
}

.section-dark .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow {
  color: #7ce1db;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink-950);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
}

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

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.page-hero h1,
.hero h1 {
  color: #ffffff;
}

.lead {
  max-width: 760px;
  color: var(--ink-600);
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
  line-height: 1.65;
}

.section-dark .lead,
.page-hero .lead,
.hero .lead {
  color: rgba(255, 255, 255, 0.76);
}

.small {
  font-size: 0.91rem;
}

.muted {
  color: var(--ink-500);
}

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

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

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

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

.section-heading > div:first-child {
  max-width: 780px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.topbar {
  position: relative;
  z-index: 60;
  color: rgba(255, 255, 255, 0.9);
  background: var(--ink-950);
  font-size: 0.84rem;
}

.topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-message {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-dot {
  width: 7px;
  height: 7px;
  background: #72ddd6;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(114, 221, 214, 0.12);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 232, 234, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.logo-link img {
  width: 190px;
  max-height: 59px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 11px 13px;
  color: var(--ink-700);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button).active {
  color: var(--brand-700);
  background: var(--brand-050);
}

.main-nav > a:not(.button).active::after {
  position: absolute;
  right: 15px;
  bottom: 5px;
  left: 15px;
  height: 2px;
  content: "";
  background: var(--brand-500);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink-900);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  color: #ffffff;
  background: var(--brand-700);
  border: 1px solid var(--brand-700);
  border-radius: 12px;
  font-weight: 760;
  line-height: 1.1;
  box-shadow: 0 10px 25px rgba(0, 88, 111, 0.16);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  background: var(--brand-800);
  border-color: var(--brand-800);
  box-shadow: 0 14px 32px rgba(0, 88, 111, 0.24);
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink-950);
  background: #7ce1db;
  border-color: #7ce1db;
  box-shadow: 0 14px 34px rgba(124, 225, 219, 0.2);
}

.button-primary:hover {
  color: var(--ink-950);
  background: #9cebe6;
  border-color: #9cebe6;
}

.button-light {
  color: var(--brand-700);
  background: #ffffff;
  border-color: #ffffff;
}

.button-light:hover {
  color: var(--brand-800);
  background: var(--brand-050);
  border-color: var(--brand-050);
}

.button-outline {
  color: var(--brand-700);
  background: transparent;
  border-color: rgba(0, 88, 111, 0.25);
  box-shadow: none;
}

.button-outline:hover {
  color: #ffffff;
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.button-outline-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.button-outline-light:hover {
  color: var(--ink-950);
  background: #ffffff;
  border-color: #ffffff;
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 18%, rgba(36, 170, 167, 0.32), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(0, 88, 111, 0.52), transparent 36%),
    linear-gradient(135deg, #071e29 0%, #073747 54%, #0d5966 100%);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 85%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 85%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 700px;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 68px;
  padding: 92px 0 96px;
}

.hero-copy h1 {
  max-width: 770px;
  font-size: clamp(3rem, 6.2vw, 5.45rem);
}

.hero-copy .accent {
  color: #83e4de;
}

.hero-copy .lead {
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.91rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  color: var(--ink-950);
  background: #7ce1db;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.dashboard-frame {
  position: absolute;
  top: 48px;
  right: 0;
  width: min(100%, 610px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-frame::before {
  display: block;
  width: 56px;
  height: 7px;
  margin: 1px auto 12px;
  content: "";
  background: #d5e1e3;
  border-radius: 999px;
}

.dashboard-frame img {
  width: 100%;
  border-radius: 16px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 17px 18px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--brand-700);
  font-size: 1.05rem;
}

.floating-card span {
  display: block;
  color: var(--ink-600);
  font-size: 0.82rem;
  line-height: 1.35;
}

.floating-card-a {
  top: 18px;
  left: -22px;
  width: 210px;
}

.floating-card-b {
  right: -22px;
  bottom: 35px;
  width: 200px;
}

.floating-card-c {
  bottom: 0;
  left: 20px;
  width: 230px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.trust-panel {
  display: grid;
  min-height: 88px;
  align-items: center;
  padding: 20px 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  grid-template-columns: auto 1fr;
  gap: 28px;
}

.trust-label {
  color: var(--ink-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-row {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.logo-row img {
  width: 100%;
  max-width: 140px;
  max-height: 44px;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.logo-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  border-color: rgba(7, 147, 146, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.icon-box {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--brand-700);
  background: var(--brand-100);
  border-radius: 14px;
  font-size: 1.18rem;
  font-weight: 850;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.value-card {
  min-height: 100%;
}

.value-card h3 {
  font-size: 1.28rem;
}

.value-card p {
  color: var(--ink-600);
}

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
}

.service-card::after {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  content: "";
  background: var(--brand-050);
  border-radius: 50%;
  transition: transform 300ms ease;
}

.service-card:hover::after {
  transform: scale(1.15);
}

.service-card p {
  color: var(--ink-600);
}

.service-card .text-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.card-kicker {
  margin-bottom: 12px;
  color: var(--brand-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.split-reverse .split-copy {
  order: 2;
}

.split-reverse .split-media {
  order: 1;
}

.split-copy .lead {
  font-size: 1.15rem;
}

.split-copy > p:not(.eyebrow):not(.lead) {
  color: var(--ink-600);
}

.split-media {
  position: relative;
}

.media-frame {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.media-frame img {
  width: 100%;
  border-radius: 20px;
}

.media-frame-dark {
  background: var(--ink-950);
  border-color: rgba(255, 255, 255, 0.12);
}

.media-note {
  position: absolute;
  right: -24px;
  bottom: -25px;
  width: min(280px, 60%);
  padding: 18px 20px;
  color: #ffffff;
  background: var(--brand-700);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.media-note strong,
.media-note span {
  display: block;
}

.media-note strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.media-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.check-list,
.clean-list,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: var(--ink-700);
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  content: "✓";
  place-items: center;
  color: #ffffff;
  background: var(--brand-500);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--ink-700);
}

.feature-list li::before {
  content: "→";
  color: var(--brand-500);
  font-weight: 850;
}

.metrics {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 1.22rem;
}

.metric span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  line-height: 1.4;
}

.industry-card {
  min-height: 350px;
  padding: 0;
}

.industry-visual {
  min-height: 150px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
}

.industry-visual svg {
  width: 100%;
  height: 150px;
  color: rgba(255, 255, 255, 0.92);
}

.industry-card-body {
  padding: 27px;
}

.industry-card-body p {
  color: var(--ink-600);
}

.platform-band {
  padding: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(124, 225, 219, 0.25), transparent 27%),
    linear-gradient(135deg, var(--ink-950), var(--brand-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.platform-band-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
}

.platform-band h2,
.platform-band h3 {
  color: #ffffff;
}

.platform-band p {
  color: rgba(255, 255, 255, 0.72);
}

.platform-stack {
  display: grid;
  gap: 10px;
}

.stack-row {
  display: grid;
  min-height: 56px;
  align-items: center;
  padding: 13px 17px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  grid-template-columns: 118px 1fr;
  gap: 15px;
}

.stack-row strong {
  color: #86e5df;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stack-row span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 650;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 60px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 20%, rgba(124, 225, 219, 0.3), transparent 26%),
    linear-gradient(135deg, var(--brand-800), var(--ink-950));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  content: "";
  border: 70px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(36, 170, 167, 0.28), transparent 28%),
    linear-gradient(135deg, var(--ink-950), var(--brand-800));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 430px;
  align-items: center;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 60px;
  padding: 82px 0;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

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

.page-hero-visual {
  position: relative;
}

.page-hero-visual img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 650;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.anchor-nav-wrap {
  position: sticky;
  top: var(--header-height);
  z-index: 35;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}

.anchor-nav {
  display: flex;
  overflow-x: auto;
  gap: 7px;
  padding: 13px 0;
  scrollbar-width: none;
}

.anchor-nav::-webkit-scrollbar {
  display: none;
}

.anchor-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--ink-600);
  background: var(--surface-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.anchor-nav a:hover {
  color: var(--brand-700);
  background: var(--brand-050);
  border-color: var(--brand-100);
}

.quote-panel {
  position: relative;
  padding: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-500));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote-panel::before {
  position: absolute;
  top: 12px;
  left: 28px;
  content: "“";
  color: rgba(255, 255, 255, 0.18);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.quote-panel blockquote {
  position: relative;
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2.05rem);
  font-weight: 670;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.quote-panel cite {
  position: relative;
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.9rem;
  font-style: normal;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.mission-card {
  min-height: 100%;
  padding: 42px;
  border-radius: var(--radius-lg);
}

.mission-card-primary {
  color: #ffffff;
  background: var(--ink-950);
}

.mission-card-primary h2,
.mission-card-primary h3 {
  color: #ffffff;
}

.mission-card-primary p {
  color: rgba(255, 255, 255, 0.72);
}

.mission-card-soft {
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.leadership-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
}

.leader-card {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  overflow: hidden;
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(rgba(7, 30, 41, 0.84), rgba(7, 30, 41, 0.96)),
    url("../images/about/australia.webp") center / cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.leader-initials {
  display: grid;
  width: 98px;
  height: 98px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--ink-950);
  background: #7ce1db;
  border: 7px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  font-size: 2rem;
  font-weight: 900;
}

.leader-card h3 {
  color: #ffffff;
  font-size: 1.7rem;
}

.leader-card p {
  color: rgba(255, 255, 255, 0.72);
}

.leader-card img {
  width: 92px;
  margin-top: 22px;
}

.credential-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credential-list li {
  padding: 17px 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  color: var(--ink-700);
  font-weight: 660;
}

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

.office-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.office-card h3 {
  font-size: 1.5rem;
}

.office-country {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 10px;
  color: var(--brand-700);
  background: var(--brand-100);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-card address {
  color: var(--ink-600);
  font-style: normal;
}

.office-card a {
  color: var(--brand-700);
  font-weight: 720;
}

.office-card::after {
  position: absolute;
  right: -65px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  content: "";
  background: var(--brand-050);
  border-radius: 50%;
}

.platform-intro {
  display: grid;
  align-items: start;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
}

.positioning-note {
  padding: 28px;
  color: var(--ink-900);
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-left: 5px solid var(--brand-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.positioning-note strong {
  color: var(--brand-700);
}

.capability-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.capability-chip {
  padding: 8px 12px;
  color: var(--ink-700);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 680;
}

.solution-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.solution-section:first-of-type {
  border-top: 0;
}

.solution-number {
  display: inline-flex;
  margin-bottom: 17px;
  color: var(--brand-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partner-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.partner-item {
  display: grid;
  min-height: 100px;
  padding: 16px;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.partner-item img {
  width: 100%;
  max-width: 130px;
  max-height: 52px;
  object-fit: contain;
}

.service-detail {
  padding: 94px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
}

.service-detail:nth-child(even) .service-detail-copy {
  order: 2;
}

.service-detail:nth-child(even) .service-detail-media {
  order: 1;
}

.service-detail-copy > p:not(.eyebrow) {
  color: var(--ink-600);
}

.service-detail-media .media-frame {
  margin-bottom: 24px;
}

.outcomes-grid {
  display: grid;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.outcome {
  padding: 13px 14px;
  color: var(--ink-700);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 650;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.process-step {
  position: relative;
  padding: 26px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-step::after {
  position: absolute;
  top: 46px;
  right: -16px;
  z-index: 2;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--brand-100);
}

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

.process-index {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 19px;
  place-items: center;
  color: #ffffff;
  background: var(--brand-700);
  border-radius: 12px;
  font-weight: 850;
}

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

.process-step p {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 0.88rem;
  line-height: 1.55;
}

.plan-intro {
  max-width: 820px;
  margin-bottom: 45px;
}

.plan-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.plan-card.featured {
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0, rgba(124, 225, 219, 0.25), transparent 25%),
    linear-gradient(145deg, var(--brand-800), var(--ink-950));
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.plan-card.featured h3,
.plan-card.featured .plan-price {
  color: #ffffff;
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 9px;
  color: var(--ink-950);
  background: #7ce1db;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 7px;
  color: var(--brand-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan-card.featured .plan-name {
  color: #83e4de;
}

.plan-card h3 {
  font-size: 1.65rem;
}

.plan-price {
  margin: 14px 0 24px;
  color: var(--ink-950);
  font-size: 1.35rem;
  font-weight: 800;
}

.plan-price span {
  display: block;
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 0.8rem;
  font-weight: 550;
}

.plan-card.featured .plan-price span {
  color: rgba(255, 255, 255, 0.62);
}

.plan-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-600);
  font-size: 0.93rem;
}

.plan-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--brand-500);
  font-weight: 900;
}

.plan-card.featured .plan-list li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-card .button {
  margin-top: auto;
}

.plan-note {
  margin-top: 26px;
  padding: 20px 22px;
  color: var(--ink-600);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.89rem;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
}

.contact-summary {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-method {
  display: grid;
  align-items: center;
  padding: 15px 17px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 13px;
  grid-template-columns: 42px 1fr;
  gap: 13px;
}

.contact-method-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand-700);
  background: var(--brand-100);
  border-radius: 12px;
  font-weight: 900;
}

.contact-method span,
.contact-method strong {
  display: block;
}

.contact-method span {
  color: var(--ink-500);
  font-size: 0.78rem;
}

.contact-method strong {
  color: var(--ink-900);
  font-size: 0.95rem;
}

.contact-form-wrap {
  padding: 38px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--ink-800);
  font-size: 0.86rem;
  font-weight: 720;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink-900);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input,
.form-field select {
  min-height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(7, 147, 146, 0.1);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.form-note {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.8rem;
  line-height: 1.45;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  color: var(--success);
  background: #eefaf6;
  border: 1px solid #cdeee2;
  border-radius: 10px;
  font-size: 0.88rem;
}

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

.faq-grid {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 12px;
}

details.faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--ink-900);
  font-weight: 740;
  cursor: pointer;
  list-style: none;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  color: var(--brand-700);
  font-size: 1.35rem;
  font-weight: 500;
}

details.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--ink-600);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #061a23;
}

.footer-main {
  display: grid;
  padding: 72px 0 52px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 48px;
}

.footer-brand img {
  width: 190px;
  padding: 7px;
  background: #ffffff;
  border-radius: 13px;
}

.footer-brand p {
  max-width: 370px;
  margin-top: 20px;
}

.footer-heading {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-links a:hover {
  color: #ffffff;
}

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

.footer-contact a {
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.79rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.trademark-note {
  color: rgba(255, 255, 255, 0.48);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 80ms; }
[data-delay="2"] { transition-delay: 150ms; }
[data-delay="3"] { transition-delay: 220ms; }
[data-delay="4"] { transition-delay: 290ms; }

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

@media (max-width: 1080px) {
  .main-nav > a:not(.button) {
    padding-inline: 9px;
    font-size: 0.89rem;
  }

  .header-inner {
    gap: 15px;
  }

  .logo-link img {
    width: 168px;
  }

  .hero-inner,
  .page-hero-inner {
    gap: 42px;
  }

  .hero-visual {
    min-height: 440px;
  }

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

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

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

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 84px 0;
  }

  .topbar-links {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: calc(36px + var(--header-height));
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition: opacity var(--transition), transform var(--transition);
  }

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

  .main-nav > a:not(.button) {
    padding: 13px 14px;
    font-size: 1rem;
  }

  .main-nav > a:not(.button).active::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 5px;
  }

  .hero-inner,
  .page-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 80px 0 110px;
  }

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

  .hero-visual {
    min-height: 490px;
  }

  .dashboard-frame {
    right: 4%;
    left: 4%;
    width: auto;
  }

  .page-hero-inner {
    padding: 70px 0 78px;
  }

  .page-hero-visual {
    max-width: 680px;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-label {
    text-align: center;
  }

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

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

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

  .split,
  .platform-band-grid,
  .mission-grid,
  .leadership-grid,
  .platform-intro,
  .service-detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .split-reverse .split-copy,
  .service-detail:nth-child(even) .service-detail-copy {
    order: 1;
  }

  .split-reverse .split-media,
  .service-detail:nth-child(even) .service-detail-media {
    order: 2;
  }

  .leader-card,
  .contact-summary {
    position: relative;
    top: auto;
  }

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

  .plan-card.featured {
    transform: none;
  }

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

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

  .section,
  .section-sm {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading .button,
  .section-heading .text-link {
    margin-top: 16px;
  }

  .topbar-message {
    font-size: 0.77rem;
    text-align: center;
  }

  .logo-link img {
    width: 150px;
  }

  .hero-inner {
    padding-top: 66px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .button-row .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-visual {
    min-height: 385px;
  }

  .dashboard-frame {
    top: 40px;
    right: 0;
    left: 0;
    transform: none;
  }

  .floating-card {
    padding: 13px 14px;
  }

  .floating-card-a {
    top: 0;
    left: 5px;
    width: 174px;
  }

  .floating-card-b {
    right: 0;
    bottom: 5px;
    width: 165px;
  }

  .floating-card-c {
    display: none;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .trust-panel {
    padding: 22px 18px;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .plan-grid,
  .office-grid,
  .credential-list,
  .outcomes-grid,
  .form-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .mission-card,
  .contact-form-wrap {
    padding: 25px;
  }

  .platform-band,
  .quote-panel {
    padding: 28px;
  }

  .media-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -18px auto 0;
  }

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

  .stack-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-panel {
    padding: 38px 27px;
    border-radius: var(--radius-lg);
  }

  .page-hero-inner {
    padding: 58px 0 65px;
  }

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

  .anchor-nav-wrap {
    top: var(--header-height);
  }

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

  .service-detail {
    padding: 68px 0;
  }

  .form-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 58px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* ===== Optimal UI pass: balanced typography, spacing and media ===== */
:root {
  --container: 1240px;
  --header-height: 74px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
}

body {
  font-size: 15.5px;
  line-height: 1.62;
  font-weight: 400;
}

.section { padding: 84px 0; }
.section-sm { padding: 60px 0; }

h1, h2, h3, h4 {
  font-weight: 680;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.55rem, 4.8vw, 4.65rem); }
h2 { font-size: clamp(1.9rem, 3.25vw, 3.15rem); }
h3 { font-size: clamp(1.18rem, 1.55vw, 1.48rem); }
h4 { font-size: 1rem; }

.lead {
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.6;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.section-heading {
  gap: 28px;
  margin-bottom: 38px;
}

.section-heading > div:first-child { max-width: 720px; }
.section-heading h2 { margin-bottom: 12px; }

.main-nav > a:not(.button) { font-weight: 600; }
.button { min-height: 46px; font-weight: 650; }
.text-link { font-weight: 650; }

.hero { min-height: 620px; }
.hero-inner {
  min-height: 620px;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, .98fr);
  gap: clamp(38px, 5vw, 68px);
  padding: 70px 0 82px;
}

.hero-copy h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 4.65rem);
}

.hero-copy .lead { max-width: 620px; margin-bottom: 26px; }
.hero-proof { margin-top: 24px; font-size: .86rem; }
.hero-proof span::before { width: 18px; height: 18px; font-weight: 700; }

.hero-visual { min-height: 430px; }
.dashboard-frame {
  top: 34px;
  width: min(100%, 570px);
  padding: 11px;
  border-radius: 22px;
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}
.dashboard-frame::before { height: 5px; margin-bottom: 9px; }
.dashboard-frame img { border-radius: 13px; }

.floating-card {
  padding: 13px 15px;
  border-radius: 14px;
}
.floating-card strong { font-size: .94rem; font-weight: 700; }
.floating-card span { font-size: .76rem; }
.floating-card-a { top: 8px; left: -10px; width: 192px; }
.floating-card-b { right: -8px; bottom: 30px; width: 188px; }
.floating-card-c { bottom: 4px; left: 28px; width: 210px; }

.trust-strip { margin-top: -34px; }
.trust-panel { min-height: 78px; padding: 16px 25px; }
.logo-row img { max-height: 36px; }

.grid-2, .grid-3, .grid-4 { gap: 20px; }
.card { padding: 25px; border-radius: 17px; }
.card:hover { transform: translateY(-3px); }
.icon-box { width: 44px; height: 44px; margin-bottom: 18px; }
.service-card p { font-size: .94rem; }

.split { gap: clamp(40px, 6vw, 72px); }
.media-frame { border-radius: 20px; }
.media-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}
.media-note { padding: 16px 18px; }

.industry-card { min-height: 310px; }
.industry-visual, .industry-visual svg { min-height: 130px; height: 130px; }
.industry-card-body { padding: 23px; }

.platform-band { padding: 32px; }
.cta-panel { padding: 48px; }
.cta-panel p { font-size: 1rem; }

.page-hero-inner {
  min-height: 370px;
  gap: 48px;
  padding: 62px 0;
}
.page-hero h1 { font-size: clamp(2.45rem, 4.4vw, 4.15rem); }
.page-hero-visual img {
  max-height: 285px;
  padding: 4px;
  object-fit: contain;
  border-width: 7px;
  border-radius: 20px;
}

.service-detail { padding: 78px 0; }
.service-detail-media .media-frame img { max-height: 450px; object-fit: contain; }

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .dashboard-frame { width: min(100%, 520px); }
}

@media (max-width: 920px) {
  .section { padding: 72px 0; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 64px 0 88px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 440px; max-width: 720px; width: 100%; margin-inline: auto; }
  .dashboard-frame { top: 26px; }
  .page-hero-inner { padding: 54px 0 62px; }
}

@media (max-width: 680px) {
  body { font-size: 15px; line-height: 1.58; }
  .section, .section-sm { padding: 56px 0; }
  h1 { font-size: clamp(2.25rem, 10vw, 3.35rem); }
  h2 { font-size: clamp(1.75rem, 7.8vw, 2.55rem); }
  .hero-inner { padding: 54px 0 70px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 10.5vw, 3.45rem); }
  .hero-copy .lead { font-size: 1rem; }
  .hero-visual { min-height: 330px; }
  .dashboard-frame { top: 30px; padding: 8px; border-radius: 17px; }
  .floating-card { padding: 10px 11px; }
  .floating-card strong { font-size: .84rem; }
  .floating-card span { font-size: .68rem; }
  .floating-card-a { width: 155px; }
  .floating-card-b { width: 148px; }
  .card, .mission-card, .contact-form-wrap { padding: 22px; }
  .platform-band { padding: 24px; }
  .cta-panel { padding: 32px 23px; }
  .page-hero h1 { font-size: clamp(2.2rem, 10vw, 3.25rem); }
  .page-hero-visual img { max-height: 240px; }
}


/* ===== Home page refinement pass: hero fit + industry card redesign ===== */
.page-home .topbar {
  font-size: 0.8rem;
}

.page-home .topbar-inner {
  min-height: 34px;
}

.page-home .site-header {
  height: 72px;
}

.page-home .logo-link img {
  width: 176px;
  max-height: 54px;
}

.page-home .main-nav > a:not(.button) {
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 650;
}

.page-home .main-nav .button-small {
  min-height: 40px;
  padding: 10px 17px;
}

.page-home .hero {
  min-height: clamp(520px, calc(100vh - 118px), 610px);
}

.page-home .hero-inner {
  min-height: clamp(520px, calc(100vh - 118px), 610px);
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(32px, 4vw, 56px);
  padding: 54px 0 60px;
}

.page-home .hero-copy {
  max-width: 620px;
}

.page-home .hero-copy h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.55vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.page-home .hero-copy .lead {
  max-width: 580px;
  margin-bottom: 24px;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.page-home .hero .button-row {
  gap: 12px;
}

.page-home .hero .button {
  min-height: 44px;
  padding-inline: 18px;
}

.page-home .hero-proof {
  gap: 10px 16px;
  margin-top: 20px;
  font-size: 0.84rem;
}

.page-home .hero-visual {
  min-height: 370px;
}

.page-home .dashboard-frame {
  top: 24px;
  right: 0;
  width: min(100%, 540px);
  padding: 10px;
  border-radius: 24px;
  transform: perspective(1100px) rotateY(-2.5deg) rotateX(1deg);
}

.page-home .dashboard-frame::before {
  width: 48px;
  height: 5px;
  margin-bottom: 8px;
}

.page-home .dashboard-frame img {
  border-radius: 12px;
}

.page-home .floating-card {
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(8, 47, 61, 0.14);
}

.page-home .floating-card strong {
  margin-bottom: 4px;
  font-size: 0.94rem;
}

.page-home .floating-card span {
  font-size: 0.77rem;
  line-height: 1.42;
}

.page-home .floating-card-a {
  top: 8px;
  left: -8px;
  width: 184px;
}

.page-home .floating-card-b {
  right: -6px;
  bottom: 24px;
  width: 176px;
}

.page-home .floating-card-c {
  bottom: -2px;
  left: 18px;
  width: 196px;
}

.page-home .trust-strip {
  margin-top: -24px;
}

.page-home .trust-panel {
  padding: 14px 22px;
  border-radius: 20px;
}

.page-home .section-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(36, 170, 167, 0.22), transparent 24%),
    radial-gradient(circle at 86% 76%, rgba(0, 88, 111, 0.4), transparent 28%),
    var(--ink-950);
}

.page-home .industry-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 26px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(220, 232, 234, 0.9);
  border-radius: 22px;
}

.page-home .industry-card:hover {
  transform: translateY(-4px);
}

.page-home .industry-visual {
  display: inline-flex;
  width: 72px;
  height: 72px;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(6, 72, 90, 1), rgba(7, 147, 146, 0.95));
  box-shadow: 0 18px 34px rgba(7, 147, 146, 0.16);
}

.page-home .industry-visual svg {
  width: 34px;
  height: 34px;
  min-height: auto;
}

.page-home .industry-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
}

.page-home .industry-card-body h3 {
  margin-bottom: 10px;
  color: var(--ink-950);
  font-size: 1.28rem;
}

.page-home .industry-card-body p {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 0.96rem;
  line-height: 1.7;
}

.page-home .metrics {
  gap: 16px;
  margin-top: 34px;
}

.page-home .metric {
  padding: 20px 22px;
  border-radius: 18px;
}

.page-home .metric strong {
  font-size: 1.14rem;
}

@media (max-width: 1180px) {
  .page-home .hero-inner {
    grid-template-columns: 1fr 0.95fr;
  }

  .page-home .hero-copy h1 {
    font-size: clamp(2.4rem, 4.3vw, 3.9rem);
  }

  .page-home .dashboard-frame {
    width: min(100%, 500px);
  }
}

@media (max-width: 920px) {
  .page-home .hero {
    min-height: auto;
  }

  .page-home .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 54px 0 72px;
  }

  .page-home .hero-copy {
    max-width: 100%;
  }

  .page-home .hero-copy h1,
  .page-home .hero-copy .lead {
    max-width: 100%;
  }

  .page-home .hero-visual {
    min-height: 420px;
  }

  .page-home .dashboard-frame {
    right: 3%;
    left: 3%;
    width: auto;
  }

  .page-home .floating-card-a {
    left: 0;
  }

  .page-home .floating-card-b {
    right: 0;
  }

  .page-home .floating-card-c {
    left: 12px;
  }
}

@media (max-width: 680px) {
  .page-home .topbar {
    font-size: 0.75rem;
  }

  .page-home .hero-inner {
    padding: 44px 0 62px;
  }

  .page-home .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .page-home .hero-copy .lead {
    font-size: 0.96rem;
  }

  .page-home .hero-visual {
    min-height: 350px;
  }

  .page-home .dashboard-frame {
    top: 26px;
  }

  .page-home .floating-card {
    padding: 10px 12px;
  }

  .page-home .floating-card-a,
  .page-home .floating-card-b {
    width: 156px;
  }

  .page-home .floating-card-c {
    display: none;
  }

  .page-home .industry-card {
    min-height: auto;
    padding: 24px;
  }

  .page-home .industry-visual {
    width: 64px;
    height: 64px;
    min-height: 64px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .page-home .industry-visual svg {
    width: 30px;
    height: 30px;
  }
}

/* ===== Global typography refinement: all pages ===== */
:root {
  --header-height: 72px;
}

body {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-weight: 560;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.35rem, 4.15vw, 4.05rem);
}

h2 {
  font-size: clamp(1.75rem, 2.85vw, 2.8rem);
}

h3 {
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
}

h4 {
  font-size: 0.98rem;
}

.lead {
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.58;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.main-nav > a:not(.button) {
  font-weight: 560;
}

.button,
.text-link {
  font-weight: 560;
}

.button-small {
  font-weight: 560;
}

.card-kicker,
.plan-name,
.plan-badge,
.footer-heading,
.trust-label,
.solution-number {
  font-weight: 620;
}

.value-card h3,
.industry-card-body h3,
.service-card h3,
.office-card h3,
.plan-card h3,
.leader-card h3 {
  font-weight: 560;
}

.card p,
.split-copy p,
.service-detail-copy p,
.industry-card-body p,
.platform-band p,
.cta-panel p,
.footer-brand p,
.footer-links,
.footer-contact,
.faq-answer,
.plan-list li,
.contact-method strong,
.form-field label {
  font-weight: 400;
}

.section {
  padding: 78px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.page-hero-inner {
  min-height: 340px;
  gap: 44px;
  padding: 56px 0;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 3.85vw, 3.65rem);
  font-weight: 560;
  line-height: 1.06;
}

.page-hero .lead {
  max-width: 670px;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.page-hero-visual img {
  max-height: 260px;
}

.quote-panel blockquote {
  font-size: clamp(1.18rem, 2.15vw, 1.72rem);
  font-weight: 540;
}

.platform-band h2,
.cta-panel h2 {
  font-weight: 560;
}

.stack-row strong,
.credential-list li,
.outcome,
.process-step h3,
.contact-method strong,
details.faq-item summary {
  font-weight: 560;
}

.process-index,
.contact-method-icon {
  font-weight: 620;
}

.plan-price,
.metric strong,
.office-card a,
.footer-contact a {
  font-weight: 600;
}

@media (max-width: 920px) {
  .section {
    padding: 72px 0;
  }

  .page-hero-inner {
    padding: 52px 0 60px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 14.5px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.55rem);
  }

  .section,
  .section-sm {
    padding: 62px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 10.5vw, 3.15rem);
  }

  .page-hero-inner {
    padding: 48px 0 56px;
  }
}


/* ===== Page refinement pass: contact section + services scale ===== */
.page-plans-contact .contact-layout {
  grid-template-columns: 0.84fr 1.16fr;
  gap: 44px;
}

.page-plans-contact .contact-summary {
  padding: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.page-plans-contact .contact-summary .lead {
  margin-bottom: 22px;
}

.page-plans-contact .contact-highlight {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding: 16px 18px;
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: 18px;
}

.page-plans-contact .contact-highlight strong {
  color: var(--brand-700);
  font-size: 0.9rem;
}

.page-plans-contact .contact-highlight span {
  color: var(--ink-600);
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-plans-contact .contact-methods {
  gap: 14px;
}

.page-plans-contact .contact-method {
  min-height: 98px;
  padding: 18px 18px;
  border-radius: 18px;
  box-shadow: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.page-plans-contact .contact-method:hover {
  background: #ffffff;
  border-color: rgba(7, 147, 146, 0.24);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.page-plans-contact .contact-method-icon {
  width: 54px;
  height: 54px;
  color: var(--brand-700);
  background: linear-gradient(135deg, #dff5f3, #eef9f8);
  border-radius: 16px;
}

.page-plans-contact .contact-method-icon svg {
  width: 24px;
  height: 24px;
}

.page-plans-contact .contact-method span span {
  margin-bottom: 6px;
  color: var(--ink-500);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-plans-contact .contact-method strong {
  font-size: 1.04rem;
  font-weight: 640;
}

.page-plans-contact .contact-form-wrap {
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(8, 47, 61, 0.08);
}

.page-services .services-overview-section {
  padding-top: 72px;
  padding-bottom: 26px;
}

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

.page-services .service-overview-card {
  display: block;
  min-height: 100%;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.page-services .service-overview-card:hover {
  border-color: rgba(7, 147, 146, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.page-services .service-overview-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 30px;
  margin-bottom: 14px;
  padding: 0 12px;
  color: var(--brand-700);
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-services .service-overview-card h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
}

.page-services .service-overview-card p {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 0.94rem;
  line-height: 1.6;
}

.page-services .anchor-nav {
  gap: 10px;
  padding: 14px 0;
}

.page-services .anchor-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
}

.page-services .process-step {
  border-radius: 18px;
}

.page-services .section-soft > .service-detail {
  position: relative;
  overflow: hidden;
}

.page-services .section-soft > .service-detail::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  content: "";
  background: radial-gradient(circle, rgba(124, 225, 219, 0.24) 0%, rgba(124, 225, 219, 0) 70%);
  pointer-events: none;
}

.page-services .section-soft > .service-detail:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(240, 251, 250, 0.82), rgba(255, 255, 255, 0.96));
}

.page-services .service-detail {
  padding: 84px 0;
}

.page-services .service-detail-grid {
  align-items: center;
  gap: 56px;
}

.page-services .service-detail-copy h2 {
  max-width: 620px;
}

.page-services .service-detail-copy .lead {
  max-width: 590px;
}

.page-services .service-detail-copy .button {
  margin-top: 6px;
}

.page-services .service-detail-media .media-frame {
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f9fcfc);
}

.page-services .outcomes-grid {
  gap: 12px;
}

.page-services .outcome {
  padding: 14px 15px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(220, 232, 234, 0.95);
  border-top: 3px solid var(--brand-400);
  font-size: 0.87rem;
  font-weight: 620;
}

.page-services .section-soft > .service-detail:nth-of-type(2) .outcome {
  border-top-color: #36b7c7;
}

.page-services .section-soft > .service-detail:nth-of-type(3) .outcome {
  border-top-color: #0b7b74;
}

.page-services .section-soft > .service-detail:nth-of-type(4) .outcome {
  border-top-color: #63b4eb;
}

.page-services .section-soft > .service-detail:nth-of-type(5) .outcome {
  border-top-color: #5d8ef5;
}

.page-services .section-soft > .service-detail:nth-of-type(6) .outcome {
  border-top-color: #0d9e9a;
}

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

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

@media (max-width: 680px) {
  .page-plans-contact .contact-summary,
  .page-plans-contact .contact-form-wrap {
    padding: 26px;
    border-radius: 22px;
  }

  .page-plans-contact .contact-method {
    min-height: auto;
    padding: 16px;
  }

  .page-plans-contact .contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .page-services .services-overview-section {
    padding-top: 62px;
  }

  .page-services .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .page-services .service-overview-card {
    padding: 22px;
  }
}


/* ===== Contact redesign v2 ===== */
.page-plans-contact .contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}

.page-plans-contact .contact-layout-v2 {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: stretch;
}

.page-plans-contact .contact-summary-v2 {
  position: relative;
  top: auto;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-plans-contact .contact-summary-v2 h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.page-plans-contact .contact-summary-v2 .lead {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: 1.04rem;
}

.page-plans-contact .contact-points {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.page-plans-contact .contact-point {
  display: grid;
  align-items: start;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 0;
}

.page-plans-contact .contact-point-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand-700);
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: 12px;
}

.page-plans-contact .contact-point-icon svg {
  width: 21px;
  height: 21px;
}

.page-plans-contact .contact-point strong,
.page-plans-contact .contact-point span {
  display: block;
}

.page-plans-contact .contact-point strong {
  margin-bottom: 3px;
  color: var(--ink-900);
  font-size: 0.98rem;
  font-weight: 680;
}

.page-plans-contact .contact-point span {
  color: var(--ink-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-plans-contact .contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.page-plans-contact .contact-quick {
  display: grid;
  align-items: center;
  min-height: 82px;
  padding: 15px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(8,47,61,.05);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.page-plans-contact .contact-quick:hover {
  border-color: rgba(7,147,146,.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.page-plans-contact .contact-quick-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--brand-700);
  background: var(--brand-050);
  border-radius: 10px;
}

.page-plans-contact .contact-quick-icon svg {
  width: 20px;
  height: 20px;
}

.page-plans-contact .contact-quick small,
.page-plans-contact .contact-quick strong {
  display: block;
}

.page-plans-contact .contact-quick small {
  margin-bottom: 3px;
  color: var(--ink-500);
  font-size: 0.72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.page-plans-contact .contact-quick strong {
  color: var(--ink-900);
  font-size: 0.93rem;
  font-weight: 650;
}

.page-plans-contact .office-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 8px 12px;
  padding: 14px 16px;
  color: var(--ink-600);
  background: transparent;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.page-plans-contact .office-line span {
  color: var(--brand-700);
  font-weight: 680;
}

.page-plans-contact .office-line strong {
  color: var(--ink-700);
  font-weight: 560;
}

.page-plans-contact .contact-form-v2 {
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(8,47,61,.1);
}

.page-plans-contact .contact-form-head {
  padding: 26px 30px 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 10%, rgba(124,225,219,.25), transparent 28%),
    linear-gradient(135deg, var(--brand-800), var(--ink-950));
}

.page-plans-contact .contact-form-head h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.5rem;
}

.page-plans-contact .contact-form-head p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  font-size: 0.9rem;
}

.page-plans-contact .contact-form-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: var(--ink-950);
  background: #7ce1db;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.page-plans-contact .contact-form-v2 form {
  padding: 28px 30px 30px;
}

.page-plans-contact .contact-form-v2 .form-field input,
.page-plans-contact .contact-form-v2 .form-field select,
.page-plans-contact .contact-form-v2 .form-field textarea {
  background: #f7fafb;
}

.page-plans-contact .contact-form-v2 .form-field input,
.page-plans-contact .contact-form-v2 .form-field select {
  min-height: 48px;
}

.page-plans-contact .contact-form-v2 .form-field textarea {
  min-height: 132px;
}

.page-plans-contact .form-actions-v2 {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-plans-contact .form-actions-v2 .button {
  min-width: 190px;
}

@media (max-width: 920px) {
  .page-plans-contact .contact-layout-v2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .page-plans-contact .contact-quick-grid {
    grid-template-columns: 1fr;
  }

  .page-plans-contact .office-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-plans-contact .contact-form-head,
  .page-plans-contact .contact-form-v2 form {
    padding-right: 22px;
    padding-left: 22px;
  }
}


/* ===== Plans & Contact full page redesign ===== */
.page-plans-contact .plan-page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(44, 184, 178, 0.14), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(7, 147, 146, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fcfc 0%, #eef7f7 100%);
}

.page-plans-contact .plan-page-hero-inner {
  min-height: 420px;
}

.page-plans-contact .plan-hero-actions {
  margin: 24px 0 18px;
}

.page-plans-contact .plan-hero-proof {
  margin-top: 10px;
}

.page-plans-contact .plan-hero-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(160deg, #073645, #0a5365);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(8, 47, 61, 0.18);
}

.page-plans-contact .plan-hero-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.page-plans-contact .plan-hero-metric strong {
  font-size: 1.35rem;
  font-weight: 650;
}

.page-plans-contact .plan-hero-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-align: right;
}

.page-plans-contact .plan-hero-note {
  padding: 20px 22px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.page-plans-contact .plan-hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
}

.page-plans-contact .plan-hero-note p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.page-plans-contact .plan-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-plans-contact .support-plan-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.page-plans-contact .support-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 147, 146, 0.22);
  box-shadow: var(--shadow-md);
}

.page-plans-contact .support-plan-card.featured {
  color: #ffffff;
  background: linear-gradient(160deg, #072b38, #0b5062);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.page-plans-contact .support-plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--ink-950);
  background: #7ce1db;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-plans-contact .support-plan-topline {
  margin-bottom: 12px;
  color: var(--brand-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-plans-contact .support-plan-card.featured .support-plan-topline,
.page-plans-contact .support-plan-card.featured .support-plan-lead,
.page-plans-contact .support-plan-card.featured .support-plan-footer span,
.page-plans-contact .support-plan-card.featured .support-plan-list li {
  color: rgba(255,255,255,0.82);
}

.page-plans-contact .support-plan-card h3 {
  margin-bottom: 10px;
  font-size: 1.72rem;
}

.page-plans-contact .support-plan-card.featured h3,
.page-plans-contact .support-plan-card.featured .support-plan-footer .text-link {
  color: #ffffff;
}

.page-plans-contact .support-plan-lead {
  margin-bottom: 16px;
  color: var(--ink-600);
  font-size: 0.98rem;
  line-height: 1.65;
}

.page-plans-contact .support-plan-chip {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 11px;
  color: var(--ink-700);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
}

.page-plans-contact .support-plan-card.featured .support-plan-chip {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
}

.page-plans-contact .support-plan-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.page-plans-contact .support-plan-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-600);
  font-size: 0.92rem;
}

.page-plans-contact .support-plan-list li::before {
  position: absolute;
  left: 0;
  top: 0.08rem;
  content: '✓';
  color: var(--brand-500);
  font-weight: 800;
}

.page-plans-contact .support-plan-card.featured .support-plan-list li::before {
  color: #7ce1db;
}

.page-plans-contact .support-plan-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(220,232,234,0.9);
}

.page-plans-contact .support-plan-card.featured .support-plan-footer {
  border-top-color: rgba(255,255,255,0.12);
}

.page-plans-contact .support-plan-footer span {
  color: var(--ink-500);
  font-size: 0.84rem;
}

.page-plans-contact .plan-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.page-plans-contact .plan-note-card {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.page-plans-contact .plan-note-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
}

.page-plans-contact .plan-note-card p {
  margin: 0;
  color: var(--ink-600);
}

.page-plans-contact .plan-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.page-plans-contact .plan-capability-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.page-plans-contact .plan-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  margin-bottom: 16px;
  padding: 0 10px;
  color: var(--brand-700);
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.page-plans-contact .plan-capability-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.page-plans-contact .plan-capability-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.94rem;
}

.page-plans-contact .assessment-journey-section {
  background:
    linear-gradient(180deg, rgba(243, 250, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.page-plans-contact .assessment-strip {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.page-plans-contact .assessment-strip p {
  margin-bottom: 0;
}

.page-plans-contact .assessment-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-plans-contact .assessment-step {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.page-plans-contact .assessment-step-index {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  color: #ffffff;
  background: var(--brand-700);
  border-radius: 14px;
  font-weight: 800;
}

.page-plans-contact .assessment-step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.page-plans-contact .assessment-step p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.94rem;
}

.page-plans-contact .plan-contact-redesign {
  padding-top: 84px;
  padding-bottom: 84px;
}

.page-plans-contact .plan-contact-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 28px;
  align-items: start;
}

.page-plans-contact .plan-contact-info {
  display: grid;
  gap: 20px;
  padding: 34px;
  background: linear-gradient(180deg, #072f3d 0%, #0c4f62 100%);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(8, 47, 61, 0.16);
}

.page-plans-contact .plan-contact-info h2,
.page-plans-contact .plan-contact-info .eyebrow,
.page-plans-contact .plan-contact-info h3 {
  color: #ffffff;
}

.page-plans-contact .plan-contact-info .lead,
.page-plans-contact .plan-contact-info p,
.page-plans-contact .plan-office-panel span,
.page-plans-contact .plan-contact-detail-label {
  color: rgba(255,255,255,0.75);
}

.page-plans-contact .plan-contact-info-card {
  padding: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}

.page-plans-contact .plan-contact-info-card h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.page-plans-contact .plan-contact-mini-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-plans-contact .plan-contact-mini-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.page-plans-contact .plan-contact-mini-list li::before {
  position: absolute;
  left: 0;
  top: 0.06rem;
  content: '•';
  color: #7ce1db;
  font-size: 1.2rem;
  line-height: 1;
}

.page-plans-contact .plan-contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.page-plans-contact .plan-contact-detail {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

.page-plans-contact .plan-contact-detail strong {
  color: #ffffff;
  font-size: 1.06rem;
  font-weight: 620;
}

.page-plans-contact .plan-office-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-plans-contact .plan-office-panel > div {
  padding: 18px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
}

.page-plans-contact .plan-office-panel span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-plans-contact .plan-office-panel strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 620;
}

.page-plans-contact .plan-contact-form-card {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(8, 47, 61, 0.08);
}

.page-plans-contact .plan-contact-form-head {
  margin-bottom: 22px;
}

.page-plans-contact .plan-contact-form-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: var(--brand-700);
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-plans-contact .plan-contact-form-head h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.page-plans-contact .plan-contact-form-head p {
  margin: 0;
  color: var(--ink-600);
}

.page-plans-contact .plan-form-actions {
  margin-top: 22px;
}

.page-plans-contact .plan-locations-section .office-card {
  min-height: 250px;
}

@media (max-width: 1080px) {
  .page-plans-contact .plan-showcase-grid,
  .page-plans-contact .plan-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-plans-contact .plan-contact-grid,
  .page-plans-contact .assessment-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .page-plans-contact .plan-page-hero-inner {
    min-height: auto;
  }

  .page-plans-contact .assessment-steps-grid,
  .page-plans-contact .plan-note-grid {
    grid-template-columns: 1fr;
  }

  .page-plans-contact .plan-contact-detail-grid,
  .page-plans-contact .plan-office-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-plans-contact .plan-hero-panel,
  .page-plans-contact .support-plan-card,
  .page-plans-contact .plan-capability-card,
  .page-plans-contact .assessment-step,
  .page-plans-contact .plan-contact-info,
  .page-plans-contact .plan-contact-form-card {
    padding: 24px;
    border-radius: 22px;
  }

  .page-plans-contact .plan-showcase-grid,
  .page-plans-contact .plan-capability-grid,
  .page-plans-contact .assessment-steps-grid {
    grid-template-columns: 1fr;
  }

  .page-plans-contact .support-plan-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== Plans & Contact hero contrast correction ===== */
.page-plans-contact .plan-page-hero {
  color: var(--ink-900);
}

.page-plans-contact .plan-page-hero h1,
.page-plans-contact .plan-page-hero h2,
.page-plans-contact .plan-page-hero h3 {
  color: var(--ink-950);
}

.page-plans-contact .plan-page-hero .lead {
  color: var(--ink-600);
}

.page-plans-contact .plan-page-hero .breadcrumbs {
  color: var(--ink-500);
}

.page-plans-contact .plan-page-hero .breadcrumbs a:hover {
  color: var(--brand-700);
}

.page-plans-contact .plan-page-hero .eyebrow {
  color: var(--brand-500);
}

.page-plans-contact .plan-page-hero .plan-hero-proof {
  color: var(--ink-600);
}

.page-plans-contact .plan-page-hero .plan-hero-proof span::before {
  color: var(--ink-950);
  background: #7ce1db;
}

.page-plans-contact .plan-page-hero .button-outline {
  color: var(--brand-700);
  background: rgba(255,255,255,0.58);
  border-color: rgba(0,88,111,0.28);
}

.page-plans-contact .plan-page-hero .button-outline:hover {
  color: #ffffff;
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.page-plans-contact .plan-page-hero::before {
  opacity: 0.3;
}

/* Client-supplied leadership imagery */
.leader-card .leader-photo {
  width: 112px;
  height: 112px;
  margin: 0 0 22px;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.leader-certifications {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.leader-card .leader-certifications img {
  width: auto;
  height: 68px;
  max-width: 172px;
  margin: 0;
  padding: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
}

