:root {
  --brand-primary: #052e5e;
  --brand-primary-deep: #031f43;
  --brand-accent: #0aa7a4;
  --brand-accent-dark: #078688;
  --ink: #0a1f38;
  --ink-soft: #233b55;
  --muted: #5d7087;
  --line: #dce6ed;
  --line-strong: #c8d8e2;
  --surface: #f3f8fb;
  --surface-blue: #eaf4f8;
  --white: #fff;
  --success: #157a5b;
  --danger: #ad3543;
  --container: 1180px;
  --content: 780px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 28px rgba(3, 34, 68, 0.08);
  --shadow: 0 24px 70px rgba(3, 34, 68, 0.13);
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

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

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

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a {
  color: var(--brand-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-accent-dark);
}

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.15rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); }

::selection {
  background: rgba(10, 167, 164, 0.22);
  color: var(--brand-primary-deep);
}

:focus-visible {
  outline: 3px solid rgba(10, 167, 164, 0.6);
  outline-offset: 3px;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto !important;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

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

.content-container {
  width: min(100%, var(--content));
}

.section {
  position: relative;
  padding-block: clamp(72px, 8vw, 116px);
}

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

.dark-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 10%, rgba(10, 167, 164, 0.22), transparent 34%),
    linear-gradient(135deg, var(--brand-primary-deep), #062f5f 70%, #08445f);
  color: rgba(255, 255, 255, 0.74);
}

/* Partner-brand social proof. Logo cells remain calm and neutral so brands
   with different visual systems can share one consistent row. */
.kd-partner-brands {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0, rgba(10, 167, 164, 0.08), transparent 38%),
    var(--white);
}

.kd-partner-brands .kd-section-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.kd-partner-brands .kd-section-heading .kd-eyebrow {
  justify-content: center;
}

.kd-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.kd-brand-item {
  display: flex;
  min-width: 0;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(3, 34, 68, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kd-brand-item:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 167, 164, 0.48);
  box-shadow: var(--shadow-sm);
}

.kd-brand-logo {
  width: 100%;
  margin: 0;
}

.kd-brand-logo img {
  width: 100%;
  max-width: 132px;
  height: 48px;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease;
}

.kd-brand-item:hover .kd-brand-logo img {
  filter: grayscale(0);
  opacity: 1;
}

.kd-editor-only {
  display: none !important;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  background: var(--brand-primary);
  box-shadow: 0 8px 24px rgba(5, 46, 94, 0.16);
  color: var(--white);
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--brand-accent-dark);
  background: var(--brand-accent-dark);
  box-shadow: 0 13px 30px rgba(5, 46, 94, 0.18);
  color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 9px;
  font-size: 14px;
}

.button-ghost,
.button-outline {
  border-color: var(--line-strong);
  background: var(--white);
  box-shadow: none;
  color: var(--brand-primary);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--brand-accent);
  background: rgba(10, 167, 164, 0.07);
  color: var(--brand-primary);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  box-shadow: none;
  color: var(--brand-primary-deep);
}

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

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

.text-link span {
  color: var(--brand-accent-dark);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--brand-accent);
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow-light {
  color: #6fe0da;
}

.eyebrow-light > span {
  background: #6fe0da;
}

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

.section-heading > p,
.narrow-heading > p,
.heading-split > p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading > h2 {
  max-width: 760px;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 48px;
}

.heading-split p {
  margin-bottom: 8px;
}

.narrow-heading {
  max-width: 830px;
  margin-bottom: 48px;
  text-align: center;
}

.narrow-heading h2 {
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(200, 216, 226, 0.76);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header { top: 32px; }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 30px;
}

.site-branding,
.brand-fallback,
.custom-logo-link {
  display: flex;
  align-items: center;
}

.brand-fallback {
  gap: 10px;
  color: var(--brand-primary-deep);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-fallback img,
.custom-logo {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  object-fit: contain;
}

.custom-logo-link + .brand-name {
  margin-left: 10px;
  color: var(--brand-primary-deep);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.primary-navigation {
  justify-self: end;
}

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

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--brand-accent-dark);
}

.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  min-width: 220px;
  padding: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 160ms ease;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu .sub-menu a {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 7px;
}

.nav-menu .sub-menu a:hover { background: var(--surface); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.nav-toggle span:not(.screen-reader-text) {
  width: 19px;
  height: 2px;
  background: var(--brand-primary);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

/* Homepage hero */
.hero {
  overflow: hidden;
  padding-top: clamp(84px, 9vw, 130px);
  background:
    linear-gradient(180deg, rgba(243, 248, 251, 0.92), rgba(255, 255, 255, 0) 78%),
    linear-gradient(90deg, rgba(5, 46, 94, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(5, 46, 94, 0.035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(10, 167, 164, 0.13), transparent 68%);
}

.hero-glow-two {
  bottom: -260px;
  left: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(5, 46, 94, 0.1), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(54px, 7vw, 92px);
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5vw, 4.45rem);
  letter-spacing: -0.048em;
}

.hero-copy h1 span,
.inner-hero h1 span {
  background: linear-gradient(105deg, var(--brand-accent-dark), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 620;
  list-style: none;
}

.hero-points span {
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border-radius: 50%;
  background: rgba(10, 167, 164, 0.12);
  color: var(--brand-accent-dark);
  font-size: 11px;
}

.authority-panel {
  position: relative;
  padding: 25px;
  border: 1px solid rgba(200, 216, 226, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.authority-panel::before {
  position: absolute;
  z-index: -1;
  inset: -12px 24px 18px -14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(5, 46, 94, 0.09), rgba(10, 167, 164, 0.12));
  content: "";
  transform: rotate(-2deg);
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-topline strong {
  margin-left: auto;
  color: var(--brand-primary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 5px rgba(10, 167, 164, 0.1);
}

.authority-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px 20px;
}

.authority-score small,
.authority-score strong {
  display: block;
}

.authority-score small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.authority-score strong {
  color: var(--brand-primary);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.score-ring {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--brand-accent) 0 82%, var(--surface-blue) 82%);
}

.score-ring::before {
  grid-area: 1 / 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.score-ring span {
  z-index: 1;
  grid-area: 1 / 1;
  color: var(--brand-primary);
  font-size: 25px;
  font-weight: 900;
}

.quality-list {
  display: grid;
  gap: 8px;
}

.quality-list > div {
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 12px;
  background: var(--surface);
}

.quality-list > div > span {
  color: var(--brand-accent-dark);
  font-size: 11px;
  font-weight: 800;
}

.quality-list p,
.quality-list strong,
.quality-list small {
  display: block;
  margin: 0;
}

.quality-list strong { font-size: 13px; }
.quality-list small { color: var(--muted); font-size: 10px; }

.quality-list i {
  position: relative;
  width: 25px;
  height: 6px;
  border-radius: 6px;
  background: rgba(10, 167, 164, 0.17);
}

.quality-list i::after {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-accent);
  content: "";
}

.quality-list > div:nth-child(2) i::after { width: 65%; }
.quality-list > div:nth-child(3) i::after { width: 84%; }
.quality-list > div:nth-child(4) i::after { width: 70%; }

.panel-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.audience-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.audience-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 44px);
  color: var(--ink-soft);
}

.audience-inner > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-inner strong { font-size: 13px; }
.audience-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-accent); }

/* Cards and services */
.feature-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 167, 164, 0.45);
  box-shadow: var(--shadow-sm);
}

.feature-card::after {
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(10, 167, 164, 0.055);
  border-radius: 50%;
  content: "";
}

.feature-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
  border-radius: 10px;
  background: var(--surface-blue);
  color: var(--brand-accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 { margin-bottom: 10px; }
.feature-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; }

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.service-card {
  position: relative;
  padding: clamp(30px, 4.2vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card-primary::after {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 54px solid rgba(10, 167, 164, 0.06);
  border-radius: 50%;
  content: "";
}

.service-card-secondary {
  background: linear-gradient(150deg, var(--brand-primary-deep), var(--brand-primary));
  color: rgba(255, 255, 255, 0.74);
}

.service-card-secondary h3 { color: var(--white); }
.service-card-secondary .service-label { color: #75e0db; }
.service-card-secondary .service-label span { border-color: rgba(255,255,255,.2); color: #75e0db; }
.service-card-secondary .check-list li { border-color: rgba(255, 255, 255, 0.13); }
.service-card-secondary .check-list li::before { color: #75e0db; }
.service-card-secondary .text-link { color: var(--white); }
.service-card-secondary .text-link span { color: #75e0db; }

.service-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
  color: var(--brand-accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-label span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--brand-primary);
}

.service-card h3 { margin-bottom: 16px; font-size: clamp(1.65rem, 2.7vw, 2.35rem); }
.service-card > p { max-width: 650px; margin-bottom: 28px; color: inherit; }

.check-list {
  display: grid;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 620;
}

.check-list li::before {
  position: absolute;
  left: 1px;
  color: var(--brand-accent-dark);
  content: "✓";
  font-weight: 850;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.industry-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  min-height: 86px;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 167, 164, 0.45);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.industry-mark {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--brand-primary), #07506e);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.industry-card strong,
.industry-card small { display: block; }
.industry-card strong { margin-bottom: 2px; font-size: 15px; }
.industry-card small { color: var(--muted); font-size: 11px; }
.industry-card i { color: var(--brand-accent-dark); font-size: 18px; font-style: normal; }

.centered-action { margin-top: 34px; text-align: center; }

/* Standards and process */
.standards-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.standards-copy h2 { color: var(--white); }
.standards-copy p:not(.eyebrow) { margin-bottom: 28px; }

.standards-list {
  display: grid;
  gap: 2px;
}

.standards-list > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.standards-list > div > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111, 224, 218, 0.3);
  border-radius: 50%;
  color: #6fe0da;
  font-size: 11px;
  font-weight: 800;
}

.standards-list p { margin: 0; }
.standards-list strong { display: block; margin-bottom: 3px; color: var(--white); font-size: 16px; }

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

.process-step {
  position: relative;
  min-height: 200px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 33px;
  right: -20px;
  width: 27px;
  height: 1px;
  background: var(--brand-accent);
  content: "";
}

.process-step > span {
  display: block;
  margin-bottom: 46px;
  color: var(--brand-accent-dark);
  font-size: 11px;
  font-weight: 850;
}

.process-step h3 { margin-bottom: 9px; font-size: 17px; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; }

/* AI band */
.ai-band-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(65px, 9vw, 120px);
}

.ai-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(5, 46, 94, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 46, 94, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
  box-shadow: var(--shadow-sm);
}

.ai-visual::before,
.ai-visual::after {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px dashed rgba(10, 167, 164, 0.3);
  border-radius: 50%;
  content: "";
}

.ai-visual::after { width: 340px; height: 340px; border-color: rgba(5, 46, 94, 0.16); }

.ai-core {
  z-index: 2;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 9px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-primary), var(--brand-accent-dark));
  box-shadow: 0 16px 40px rgba(5, 46, 94, 0.25);
  color: var(--white);
  font-size: 27px;
  font-weight: 900;
}

.ai-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-width: 66px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 760;
}

.node-one { top: 60px; left: 76px; }
.node-two { top: 84px; right: 51px; }
.node-three { right: 56px; bottom: 76px; }
.node-four { bottom: 60px; left: 58px; }

.ai-copy h2 { max-width: 640px; }
.ai-copy > p:not(.eyebrow):not(.small-note) { color: var(--muted); font-size: 17px; }
.compact-list { max-width: 600px; }
.small-note { padding-left: 15px; border-left: 3px solid var(--brand-accent); color: var(--muted); font-size: 12px; }

/* Posts */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 167, 164, 0.38);
  box-shadow: var(--shadow-sm);
}

.post-card-visual {
  display: grid;
  min-height: 205px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 167, 164, 0.24), transparent 50%),
    linear-gradient(140deg, var(--brand-primary-deep), #07526c);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.post-card-visual img { width: 100%; height: 205px; object-fit: cover; transition: transform 260ms ease; }
.post-card:hover .post-card-visual img { transform: scale(1.035); }
.post-card-visual > span { font-size: 58px; font-weight: 900; letter-spacing: -0.08em; }
.post-card-body { padding: 24px; }
.post-card-meta { margin-bottom: 12px; color: var(--brand-accent-dark); font-size: 10px; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase; }
.post-card h3 { margin-bottom: 12px; font-size: 19px; line-height: 1.35; }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card p { color: var(--muted); font-size: 13px; }
.post-card .text-link { font-size: 13px; }

/* FAQ and CTA */
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 8vw, 105px);
}

.faq-heading { align-self: start; position: sticky; top: 120px; }
.faq-heading > p:not(.eyebrow) { color: var(--muted); }

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--brand-accent-dark);
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; padding: 0 50px 22px 0; margin: 0; color: var(--muted); font-size: 14px; }

.final-cta {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 0%, rgba(10, 167, 164, 0.45), transparent 32%),
    var(--brand-primary-deep);
  color: rgba(255, 255, 255, 0.72);
}

.final-cta::before {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  content: "";
}

.final-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 { max-width: 780px; margin-bottom: 14px; color: var(--white); }
.final-cta p:not(.eyebrow) { max-width: 760px; margin: 0; }
.final-cta .button { flex: none; }

/* Inner service pages */
.inner-hero,
.contact-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 10%, rgba(10, 167, 164, 0.12), transparent 30%),
    linear-gradient(180deg, var(--surface), var(--white));
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.6fr;
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.inner-hero h1 {
  margin-bottom: 25px;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a { color: var(--brand-primary); text-decoration: none; }

.inner-hero-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.inner-hero-card > p { color: var(--muted); font-size: 12px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.inner-hero-card ol { padding: 0; margin: 0; list-style: none; }
.inner-hero-card li { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 680; }
.inner-hero-card li:last-child { border-bottom: 0; }
.inner-hero-card li span { color: var(--brand-accent-dark); font-size: 11px; font-weight: 850; }

.split-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(45px, 8vw, 100px);
}

.prose-lead p { color: var(--ink-soft); font-size: 18px; }
.prose-lead p:last-child { margin-bottom: 0; }

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

.deliverable-grid article {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.deliverable-grid article > span { display: block; margin-bottom: 52px; color: var(--brand-accent-dark); font-size: 11px; font-weight: 850; }
.deliverable-grid h3 { font-size: 19px; }
.deliverable-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.negative-list > div > span { border-color: rgba(255, 130, 145, .3); color: #ff91a0; font-size: 22px; font-weight: 400; }
.six-steps { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.six-steps .process-step { min-height: 185px; padding-inline: 18px; }

/* AI page */
.ai-map {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(5,46,94,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,46,94,.045) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
  box-shadow: var(--shadow);
}

.ai-map::before,
.ai-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 290px;
  border: 1px dashed rgba(10,167,164,.28);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.ai-map::after { width: 205px; height: 205px; border-style: solid; border-color: rgba(5,46,94,.1); }

.ai-map-core,
.ai-map-item {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  text-align: center;
}

.ai-map-core {
  top: 50%;
  left: 50%;
  width: 134px;
  height: 134px;
  background: linear-gradient(145deg, var(--brand-primary), var(--brand-accent-dark));
  box-shadow: 0 18px 48px rgba(5,46,94,.26);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.ai-map strong,
.ai-map small { display: block; }
.ai-map-core small { color: rgba(255,255,255,.66); }
.ai-map-item { width: 92px; height: 92px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.ai-map-item strong { color: var(--brand-primary); font-size: 12px; }
.ai-map-item small { color: var(--muted); font-size: 8px; }
.map-site { top: 40px; left: 50%; transform: translateX(-50%); }
.map-citation { top: 50%; right: 23px; transform: translateY(-50%); }
.map-topic { bottom: 35px; left: 50%; transform: translateX(-50%); }
.map-proof { top: 50%; left: 23px; transform: translateY(-50%); }

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

.phase-grid article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.phase-grid article > span { display: block; margin-bottom: 38px; color: var(--brand-accent-dark); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.phase-grid article > p { color: var(--muted); }
.phase-grid ul { padding-left: 20px; margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.phase-grid li { margin-bottom: 5px; }

.signal-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.signal-grid h2 { color: var(--white); }
.signal-table { overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.signal-table > div { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 15px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.signal-table > div:last-child { border-bottom: 0; }
.signal-table strong { color: var(--white); }
.signal-head { background: rgba(10,167,164,.14); color: #6fe0da; font-size: 10px !important; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.expectation-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 38px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(10,167,164,.32);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(10,167,164,.075), rgba(5,46,94,.035));
}

.expectation-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(10,167,164,.4);
  border-radius: 50%;
  color: var(--brand-accent-dark);
  font-size: 34px;
  font-weight: 850;
}

.expectation-card p:last-child { margin: 0; color: var(--muted); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.05fr;
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.contact-copy { padding-top: 28px; }
.contact-copy h1 { font-size: clamp(2.6rem, 5vw, 4.1rem); }
.contact-expectations { display: grid; gap: 10px; margin-top: 42px; }
.contact-expectations > div { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-expectations span { color: var(--brand-accent-dark); font-size: 11px; font-weight: 850; }
.contact-expectations p { margin: 0; color: var(--muted); font-size: 13px; }
.contact-expectations strong { display: block; color: var(--ink); font-size: 15px; }

.inquiry-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-card > h2 { margin-bottom: 7px; font-size: 28px; }
.inquiry-card > p { margin-bottom: 28px; color: var(--muted); font-size: 13px; }
.inquiry-form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-row > label:only-child { grid-column: 1 / -1; }
.inquiry-form label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.inquiry-form label > span { color: var(--danger); }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.search-field {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input,
.inquiry-form select { height: 48px; padding: 0 13px; }
.inquiry-form textarea { min-height: 130px; padding: 12px 13px; resize: vertical; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.search-field:focus { border-color: var(--brand-accent); box-shadow: 0 0 0 4px rgba(10,167,164,.1); }
.form-submit { width: 100%; cursor: pointer; }
.form-privacy { margin: 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-honeypot { position: absolute; left: -9999px; }
.selected-industry { padding: 11px 13px; border-radius: 9px; background: var(--surface-blue); color: var(--muted); font-size: 12px; }
.selected-industry strong { color: var(--brand-primary); }
.form-notice { padding: 12px 14px; margin-bottom: 18px; border-radius: 9px; font-size: 13px; }
.form-notice.success { background: #e8f7f1; color: var(--success); }
.form-notice.error { background: #fff0f2; color: var(--danger); }

/* Default pages, archives and article */
.compact-hero {
  padding-block: clamp(62px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--white));
}

.compact-hero h1 { margin-bottom: 13px; font-size: clamp(2.35rem, 4vw, 3.7rem); }
.compact-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: 17px; }

.entry-content {
  color: var(--ink-soft);
  font-size: 17px;
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin-top: 2.1em; font-size: clamp(1.75rem, 3vw, 2.35rem); }
.entry-content h3 { margin-top: 1.8em; }
.entry-content p,
.entry-content li { line-height: 1.85; }
.entry-content a { color: var(--brand-accent-dark); }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote { padding: 20px 26px; margin: 32px 0; border-left: 4px solid var(--brand-accent); background: var(--surface); color: var(--ink); }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.entry-content th,
.entry-content td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.entry-content th { background: var(--surface); }
.entry-content pre { overflow: auto; padding: 20px; border-radius: 12px; background: var(--brand-primary-deep); color: #e7f5f4; }

.listing-toolbar { display: flex; justify-content: flex-end; margin-bottom: 30px; }
.search-form { display: flex; width: min(100%, 460px); gap: 8px; }
.search-form label { flex: 1; }
.search-field { height: 42px; padding: 0 13px; }
.archive-grid { margin-bottom: 45px; }
.empty-state { grid-column: 1 / -1; padding: 60px 30px; border: 1px dashed var(--line-strong); border-radius: var(--radius); text-align: center; }
.pagination-wrap .nav-links { display: flex; justify-content: center; gap: 6px; }
.pagination-wrap .page-numbers { display: grid; min-width: 40px; height: 40px; place-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; }
.pagination-wrap .current { border-color: var(--brand-primary); background: var(--brand-primary); color: var(--white); }

.article-header { padding-bottom: 52px; background: linear-gradient(180deg, var(--surface), var(--white)); }
.article-header-inner { max-width: 920px; }
.article-category { display: inline-flex; padding: 6px 10px; margin-bottom: 18px; border-radius: 20px; background: rgba(10,167,164,.1); color: var(--brand-accent-dark); font-size: 11px; font-weight: 750; text-decoration: none; }
.article-header h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); }
.article-deck { max-width: 800px; color: var(--muted); font-size: 19px; }
.article-meta { display: flex; gap: 8px; color: var(--muted); font-size: 12px; }
.article-featured { max-width: 1100px; margin-top: -12px; }
.article-featured img { width: 100%; max-height: 610px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-sm); }
.article-layout { display: grid; grid-template-columns: 150px minmax(0, var(--content)); justify-content: center; gap: 48px; }
.article-rail { align-self: start; position: sticky; top: 120px; padding-top: 10px; border-top: 2px solid var(--brand-accent); }
.article-rail span { color: var(--brand-primary); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.article-rail p { color: var(--muted); font-size: 11px; }
.article-footer { max-width: 980px; padding-bottom: clamp(70px,8vw,110px); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.tag-list > span { margin-right: 8px; color: var(--muted); font-size: 12px; font-weight: 750; }
.tag-list a { padding: 5px 9px; border-radius: 16px; background: var(--surface); font-size: 11px; text-decoration: none; }
.post-navigation { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px; padding-top: 28px; }
.post-navigation > div:last-child { text-align: right; }
.post-navigation small { display: block; margin-bottom: 5px; color: var(--muted); }
.post-navigation a { color: var(--ink); font-weight: 700; text-decoration: none; }

.error-inner { max-width: 720px; text-align: center; }
.error-code { display: block; color: var(--brand-accent); font-size: clamp(5rem,15vw,11rem); font-weight: 900; line-height: .9; letter-spacing: -.08em; }
.error-inner p { color: var(--muted); }
.error-inner .hero-actions { justify-content: center; }

/* Footer */
.site-footer {
  padding-top: 68px;
  background: #02172f;
  color: rgba(255,255,255,.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, .72fr);
  gap: 55px;
  padding-bottom: 55px;
}

.footer-branding .brand-fallback,
.footer-branding .custom-logo-link + .brand-name { color: var(--white); }
.footer-branding .brand-fallback img,
.footer-branding .custom-logo { background: var(--white); }
.footer-brand > p { max-width: 330px; margin-top: 18px; font-size: 13px; }
.footer-column h2 { margin-bottom: 18px; color: var(--white); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-column ul { padding: 0; margin: 0; list-style: none; }
.footer-column li { margin-bottom: 9px; }
.footer-column a { color: rgba(255,255,255,.66); font-size: 13px; text-decoration: none; }
.footer-column a:hover { color: #6fe0da; }
.footer-contact { display: flex; align-items: flex-start; flex-direction: column; gap: 9px; }
.footer-social-bar { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 32px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-social-heading { display: grid; flex: 0 0 auto; gap: 3px; }
.footer-social-heading span { color: #6fe0da; font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.footer-social-heading strong { color: var(--white); font-size: 14px; }
.footer-social-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.footer-social-link { display: inline-flex; min-height: 34px; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; background: rgba(255,255,255,.045); color: rgba(255,255,255,.78); font-size: 11px; text-decoration: none; transition: border-color 160ms ease, color 160ms ease, background 160ms ease; }
.footer-social-link > span { display: grid; min-width: 20px; height: 20px; place-items: center; border-radius: 6px; background: rgba(111,224,218,.11); color: #6fe0da; font-size: 8px; font-weight: 850; }
a.footer-social-link:hover, a.footer-social-link:focus-visible { border-color: rgba(111,224,218,.5); background: rgba(111,224,218,.08); color: var(--white); }
.footer-social-link.is-unconfigured { opacity: .58; }
.footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: 11px; }
.footer-legal,
.footer-menu { display: flex; align-items: center; gap: 18px; padding: 0; margin: 0; list-style: none; }
.footer-legal a { color: rgba(255,255,255,.55); font-size: 11px; text-decoration: none; }

/* WordPress alignment */
.alignwide { width: min(1100px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.wp-caption-text { color: var(--muted); font-size: 12px; }
.sticky { border-color: var(--brand-accent); }
.bypostauthor { display: block; }

@media (max-width: 1100px) {
  .header-cta { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .four-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-step::after { display: none; }
  .six-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, .8fr); gap: 30px; }
}

@media (max-width: 900px) {
  .admin-bar .site-header { top: 46px; }
  .header-inner { grid-template-columns: 1fr auto; min-height: 68px; }
  .nav-toggle { display: flex; justify-self: end; }
  .primary-navigation {
    position: fixed;
    z-index: 999;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 22px 20px 40px;
    overflow-y: auto;
    background: rgba(255,255,255,.98);
  }
  .admin-bar .primary-navigation { top: 114px; }
  .primary-navigation.is-open { display: block; }
  .nav-menu { align-items: stretch; flex-direction: column; gap: 0; }
  .nav-menu > li { border-bottom: 1px solid var(--line); }
  .nav-menu a { width: 100%; min-height: 54px; font-size: 16px; }
  .nav-menu .sub-menu { position: static; display: block; padding: 0 0 10px 15px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .hero-grid,
  .inner-hero-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .authority-panel,
  .inner-hero-card,
  .ai-map { width: min(100%, 620px); }
  .heading-split,
  .split-content,
  .standards-grid,
  .ai-band-grid,
  .faq-grid,
  .signal-grid { grid-template-columns: 1fr; }
  .heading-split { align-items: start; gap: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .faq-heading { position: static; }
  .deliverable-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .article-rail { display: none; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 68px; }
  .hero { padding-top: 72px; }
  .hero-copy h1,
  .inner-hero h1,
  .article-header h1 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .hero-lead,
  .prose-lead p { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-points { align-items: flex-start; flex-direction: column; }
  .authority-panel { padding: 18px; border-radius: 20px; }
  .authority-score strong { font-size: 22px; }
  .audience-inner { min-height: 0; align-items: flex-start; flex-direction: column; gap: 10px; padding-block: 24px; }
  .audience-inner i { display: none; }
  .four-columns,
  .industry-grid,
  .deliverable-grid,
  .phase-grid,
  .post-grid,
  .process-grid,
  .six-steps { grid-template-columns: 1fr; }
  .feature-card { min-height: 215px; }
  .feature-number { margin-bottom: 32px; }
  .service-label { margin-bottom: 40px; }
  .industry-card { grid-template-columns: 50px 1fr auto; padding-inline: 14px; }
  .process-step { min-height: 165px; }
  .process-step > span { margin-bottom: 30px; }
  .ai-visual,
  .ai-map { min-height: 360px; }
  .ai-visual::after { width: 290px; height: 290px; }
  .ai-visual::before { width: 210px; height: 210px; }
  .node-one { top: 45px; left: 35px; }
  .node-two { top: 58px; right: 25px; }
  .node-three { right: 28px; bottom: 55px; }
  .node-four { bottom: 42px; left: 30px; }
  .ai-map::before { width: 245px; height: 245px; }
  .ai-map::after { width: 170px; height: 170px; }
  .ai-map-core { width: 112px; height: 112px; }
  .ai-map-item { width: 76px; height: 76px; }
  .map-site { top: 28px; }
  .map-topic { bottom: 28px; }
  .map-citation { right: 10px; }
  .map-proof { left: 10px; }
  .signal-table { overflow-x: auto; }
  .signal-table > div { min-width: 540px; }
  .expectation-card { grid-template-columns: 1fr; gap: 22px; }
  .expectation-icon { width: 64px; height: 64px; }
  .form-row { grid-template-columns: 1fr; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; gap: 28px; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .footer-legal { flex-wrap: wrap; }
  .post-navigation { grid-template-columns: 1fr; }
  .post-navigation > div:last-child { text-align: left; }
  .search-form { flex-direction: column; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

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

@media print {
  .site-header,
  .site-footer,
  .final-cta,
  .article-rail { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .section { padding-block: 20px; }
  a { color: #000; text-decoration: underline; }
}

/* ================================================================
   EDITABLE LANDING BLOCKS — VERSION 2.0
   These classes are attached to native Gutenberg blocks. Page copy,
   buttons, cards and section order can now be changed in wp-admin.
   ================================================================ */

.kd-editable-landing,
.kd-editor-page,
.kd-block-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.kd-block-content > * {
  margin-block: 0;
}

.kd-block-content .kd-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-block: clamp(72px, 8vw, 116px);
  transform: none;
}

/*
 * Landing pages already render edge-to-edge. WordPress' classic alignfull
 * helper recentres blocks with translateX(-50%); keeping that transform on
 * these full-width editor pages shifts every section half a viewport left.
 */
.kd-block-content > .alignfull,
.kd-block-content > .kd-audience-strip {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
  transform: none;
}

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

.kd-block-content .kd-section h1,
.kd-block-content .kd-section h2,
.kd-block-content .kd-section h3,
.kd-block-content .kd-section p,
.kd-block-content .kd-section ul {
  margin-top: 0;
}

.kd-block-content .kd-section h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  line-height: 1.08;
}

.kd-block-content .kd-section h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.kd-block-content .kd-section h3 {
  margin-bottom: 12px;
}

.kd-accent {
  color: var(--brand-accent-dark);
}

.kd-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px !important;
  color: var(--brand-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

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

.kd-hero,
.kd-inner-hero,
.kd-contact-hero {
  overflow: hidden;
  padding-top: clamp(84px, 9vw, 132px) !important;
  background:
    radial-gradient(circle at 80% 18%, rgba(10, 167, 164, 0.15), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(5, 46, 94, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdff, #f3f8fb);
}

.kd-hero::before,
.kd-inner-hero::before {
  position: absolute;
  top: 8%;
  right: 3%;
  width: min(38vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(10, 167, 164, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.kd-block-content .kd-hero-grid,
.kd-block-content .kd-split,
.kd-block-content .kd-faq-grid,
.kd-block-content .kd-contact-grid {
  display: grid;
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
  margin: 0;
}

.kd-block-content .kd-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
}

.kd-block-content .kd-split,
.kd-block-content .kd-faq-grid,
.kd-block-content .kd-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kd-block-content .wp-block-column {
  min-width: 0;
}

.kd-hero-lead,
.kd-section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.4vw, 1.2rem);
  line-height: 1.85 !important;
}

.kd-actions {
  gap: 12px;
  margin: 30px 0 26px;
}

.kd-block-content .wp-block-button__link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  background: var(--brand-primary);
  box-shadow: 0 9px 25px rgba(5, 46, 94, 0.16);
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.kd-block-content .wp-block-button__link:hover {
  transform: translateY(-2px);
  border-color: var(--brand-accent-dark);
  background: var(--brand-accent-dark);
  color: var(--white);
}

.kd-block-content .is-style-outline .wp-block-button__link {
  border-color: var(--line-strong);
  background: var(--white);
  box-shadow: none;
  color: var(--brand-primary);
}

.kd-block-content .is-style-outline .wp-block-button__link:hover {
  border-color: var(--brand-accent);
  background: rgba(10, 167, 164, 0.07);
}

.kd-inline-checks,
.kd-check-list,
.kd-numbered-list {
  padding: 0;
  list-style: none;
}

.kd-inline-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.kd-inline-checks li::before,
.kd-check-list li::before {
  margin-right: 9px;
  color: var(--brand-accent-dark);
  font-weight: 900;
  content: "✓";
}

.kd-check-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.kd-numbered-list li {
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 680;
}

.kd-numbered-list li:last-child {
  border-bottom: 0;
}

.kd-quality-panel,
.kd-form-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(5, 46, 94, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.kd-quality-panel::before {
  position: absolute;
  top: -1px;
  right: 34px;
  left: 34px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--brand-accent), #53d6c4);
  content: "";
}

.kd-quality-panel > p:not(.kd-panel-label):not(.kd-panel-note) {
  padding: 13px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.55 !important;
}

.kd-quality-panel > p span {
  color: var(--muted);
  font-size: 13px;
}

.kd-panel-label,
.kd-card-number {
  color: var(--brand-accent-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kd-panel-note {
  margin: 20px 0 0 !important;
  color: var(--muted);
  font-size: 13px;
}

.kd-audience-strip {
  padding-block: 22px;
  border-block: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  text-align: center;
}

.kd-audience-strip p {
  margin: 0;
}

.kd-light-section {
  background: var(--white);
}

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

.kd-section-heading {
  max-width: 800px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.kd-section-heading .kd-section-lead {
  margin-bottom: 0;
}

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

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

.kd-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 34, 68, 0.05);
}

.kd-card-featured {
  border-top: 3px solid var(--brand-accent);
}

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

.kd-card-link a {
  color: var(--brand-primary);
  font-weight: 760;
  text-decoration: none;
}

.kd-card-link a:hover {
  color: var(--brand-accent-dark);
}

.kd-service-cards .kd-card {
  padding: clamp(30px, 4vw, 46px);
}

.kd-service-cards .kd-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.kd-process-cards .kd-card {
  padding: 24px;
}

.kd-dark-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(10, 167, 164, 0.23), transparent 35%),
    linear-gradient(135deg, var(--brand-primary-deep), #062f5f 70%, #08445f);
  color: rgba(255, 255, 255, 0.78);
}

.kd-dark-section h1,
.kd-dark-section h2,
.kd-dark-section h3,
.kd-dark-section .kd-eyebrow,
.kd-dark-section p strong {
  color: var(--white) !important;
}

.kd-dark-section .kd-eyebrow {
  color: #64dfd2 !important;
}

.kd-dark-section .wp-block-button__link {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-primary-deep);
}

.kd-dark-list > p {
  padding: 17px 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 1.65 !important;
}

.kd-dark-list > p:last-child {
  border-bottom: 0;
}

.kd-dark-cards .kd-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.kd-dark-cards .kd-card-number {
  color: #64dfd2;
}

.kd-dark-cards .kd-card p {
  color: rgba(255, 255, 255, 0.72);
}

.kd-industries-section .kd-actions,
.kd-insights-section .kd-actions {
  justify-content: center;
  margin-top: 34px;
}

.kd-industry-grid {
  margin-top: 8px;
}

.kd-ai-visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 167, 164, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(10, 167, 164, 0.15) 0 14%, transparent 15% 33%, rgba(5, 46, 94, 0.08) 34% 34.5%, transparent 35% 52%, rgba(10, 167, 164, 0.12) 53% 53.5%, transparent 54%),
    var(--white);
}

.kd-orbit-core {
  display: grid;
  width: 104px;
  aspect-ratio: 1;
  place-items: center;
  margin: 0 !important;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 16px 40px rgba(5, 46, 94, 0.25);
  color: var(--white);
  font-weight: 800;
}

.kd-orbit-labels {
  position: absolute;
  right: 14%;
  bottom: 14%;
  left: 14%;
  margin: 0 !important;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.8 !important;
  text-align: center;
}

.kd-post-grid {
  margin-top: 0;
}

.kd-faq-grid {
  align-items: start !important;
}

.kd-faq-item {
  margin: 0 0 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.kd-faq-item summary {
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 730;
  cursor: pointer;
}

.kd-faq-item[open] summary {
  border-bottom: 1px solid var(--line);
  color: var(--brand-primary);
}

.kd-faq-item > p {
  padding: 20px 24px;
  margin: 0;
  color: var(--muted);
}

.kd-notice-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(10, 167, 164, 0.34);
  border-left: 5px solid var(--brand-accent);
  border-radius: var(--radius);
  background: #f1fbfa;
}

.kd-final-cta {
  text-align: center;
}

.kd-final-cta .kd-container {
  max-width: 880px;
}

.kd-final-cta .kd-eyebrow,
.kd-final-cta .kd-actions {
  justify-content: center;
}

.kd-contact-grid {
  align-items: start !important;
}

.kd-contact-hero .kd-contact-grid > .wp-block-column:first-child > p:not(.kd-eyebrow):not(.kd-hero-lead) {
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.kd-form-card h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem) !important;
}

.kd-inquiry-form-wrap .inquiry-form {
  margin-top: 24px;
}

.form-response-time {
  margin: -2px 0 0;
  color: var(--brand-accent-dark);
  font-size: 13px;
}

.kd-social-section {
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #ffffff 0%, #f4fafb 100%);
  box-shadow: var(--shadow-sm);
}

.kd-inquiry-form-wrap + .kd-social-section {
  margin-top: 24px;
}

.kd-contact-grid > .wp-block-column:first-child > .kd-social-section {
  margin-top: 30px;
}

.kd-social-heading h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.72rem) !important;
}

.kd-social-heading > p:last-child {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.kd-social-card {
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.kd-social-card:hover,
a.kd-social-card:focus-visible {
  border-color: rgba(10, 167, 164, 0.55);
  box-shadow: 0 10px 24px rgba(5, 46, 94, 0.09);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.kd-social-card.is-unconfigured {
  color: var(--muted);
}

.kd-social-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: rgba(10, 167, 164, 0.1);
  color: var(--brand-accent-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.kd-social-name {
  overflow: hidden;
  font-size: 13px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kd-social-arrow {
  color: var(--brand-accent-dark);
  font-size: 14px;
}

.kd-anchor-offset {
  scroll-margin-top: 100px;
}

@media (max-width: 1100px) {
  .kd-grid-4,
  .kd-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .kd-block-content .kd-hero-grid,
  .kd-block-content .kd-split,
  .kd-block-content .kd-faq-grid,
  .kd-block-content .kd-contact-grid {
    grid-template-columns: 1fr;
  }

  .kd-block-content .kd-hero-grid {
    gap: 48px;
  }

  .kd-quality-panel,
  .kd-ai-visual {
    max-width: 680px;
  }

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

  .footer-social-bar {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px;
  }

  .footer-social-links {
    justify-content: flex-start;
  }
}

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

  .kd-block-content .kd-section {
    padding-block: 68px;
  }

  .kd-block-content .kd-section h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .kd-grid-2,
  .kd-grid-3,
  .kd-grid-4,
  .kd-grid-5 {
    grid-template-columns: 1fr;
  }

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

  .kd-brand-item {
    min-height: 92px;
    padding: 18px 14px;
  }

  .kd-social-grid {
    grid-template-columns: 1fr;
  }

  .kd-inline-checks {
    display: grid;
  }

  .kd-quality-panel,
  .kd-form-card {
    padding: 24px;
    border-radius: 20px;
  }

  .kd-ai-visual {
    min-height: 290px;
  }

  .kd-audience-strip {
    text-align: left;
  }
}
