:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5f6368;
  --line: #d8e7ef;
  --paper: #f3f8fb;
  --white: #ffffff;
  --charcoal: #101827;
  --graphite: #172238;
  --gold: #25a9d8;
  --blue: #24317f;
  --cyan: #36c6d8;
  --sky: #e6f6fb;
  --navy-soft: #1d2a4f;
  --shadow: 0 24px 64px rgba(18, 37, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 76px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(18, 37, 74, 0.08);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(18, 37, 74, 0.08);
  backdrop-filter: blur(14px);
}

.site-header-solid {
  position: sticky;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 182px;
  min-width: 182px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.95vw, 15px);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 76px) 54px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 24, 52, 0.92), rgba(20, 57, 101, 0.7) 48%, rgba(37, 169, 216, 0.25)),
    linear-gradient(0deg, rgba(11, 24, 52, 0.58), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100vw - clamp(36px, 10vw, 152px)));
  max-width: 100%;
  min-width: 0;
  padding-bottom: 0;
}

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

.hero .eyebrow,
.cta-section .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(3.35rem, 8vw, 7.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions,
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-actions-after-slider {
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  color: var(--blue);
  border-color: #b9d8e8;
  background: var(--white);
}

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

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(960px, 100%);
  margin-top: 28px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(12, 29, 59, 0.72);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.metric {
  display: block;
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 900;
}

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

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 12px clamp(20px, 5vw, 76px);
  background: var(--paper);
}

.trust-band p {
  margin: 0;
  padding: 22px 12px;
  border: 1px solid rgba(190, 212, 225, 0.86);
  border-radius: 10px;
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  text-align: center;
}

.service-slider {
  padding: 38px clamp(20px, 5vw, 76px) 34px;
  background:
    linear-gradient(90deg, rgba(36, 49, 127, 0.08), rgba(37, 169, 216, 0.08)),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-slider {
  width: 100%;
  max-width: 1180px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(238, 249, 253, 0.9)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(8, 20, 44, 0.26);
  backdrop-filter: blur(18px);
}

.hero-slider .eyebrow {
  color: var(--blue);
}

.hero-slider .slider-heading h2 {
  color: var(--ink);
}

.hero-slider .service-track {
  scrollbar-color: var(--gold) rgba(36, 49, 127, 0.12);
}

.hero-slider .slider-heading {
  margin-bottom: 18px;
}

.hero-slider .slider-heading h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.hero-slider .service-slide {
  min-height: 172px;
}

@media (min-width: 901px) {
  .hero {
    align-items: center;
    padding-top: 112px;
    padding-bottom: 46px;
  }

  .hero-content {
    width: min(1080px, 100%);
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.7rem, 5vw, 5.65rem);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 720px;
    font-size: clamp(1.08rem, 1.45vw, 1.25rem);
    line-height: 1.55;
  }

  .hero-slider {
    margin-top: 32px;
  }

  .hero-slider .service-track {
    grid-auto-columns: minmax(250px, 25%);
  }
}

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

.slider-heading h2 {
  max-width: 680px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #b9d8e8;
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

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

.service-track {
  display: grid;
  grid-auto-columns: minmax(250px, 31%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  padding: 4px 0 12px;
  scrollbar-color: var(--gold) #d8e7ef;
}

.service-slide {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  scroll-snap-align: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(18, 37, 74, 0.08);
}

.service-slide:hover {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at top right, rgba(54, 198, 216, 0.28), transparent 38%),
    linear-gradient(135deg, var(--blue), var(--charcoal));
}

.service-slide span {
  color: var(--gold);
  font-weight: 900;
}

.service-slide strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.service-slide p {
  margin: 0;
  color: var(--muted);
}

.service-slide:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.quick-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

.quick-help div {
  display: grid;
  gap: 4px;
}

.quick-help strong {
  font-size: 1.18rem;
}

.quick-help span {
  color: rgba(255, 255, 255, 0.82);
}

.quick-help .button {
  color: var(--blue);
  background: var(--white);
}

.page-quick-help {
  margin: 0;
}

.section,
.cta-section {
  padding: 82px clamp(20px, 5vw, 76px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 7vw, 112px);
  align-items: start;
}

.split-section > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.split-section .section-action {
  grid-column: 2;
  margin-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(280px, 0.66fr);
  gap: clamp(20px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.section-action {
  margin-top: 28px;
}

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

.service-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(18, 37, 74, 0.06);
}

.service-card {
  min-height: 260px;
  padding: 30px;
}

.service-card .icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--gold));
  font-weight: 900;
}

.service-card p,
.price-card li,
.cta-section p {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 1.12fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 12%, rgba(54, 198, 216, 0.22), transparent 32%),
    linear-gradient(135deg, var(--charcoal), var(--navy-soft));
  color: var(--white);
}

.process .eyebrow {
  color: var(--cyan);
}

.process-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.steps li {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-left: 5px solid var(--gold);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  color: rgba(255, 255, 255, 0.72);
}

.pricing {
  background: var(--white);
}

.price-card {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.price-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(54, 198, 216, 0.25), transparent 38%),
    linear-gradient(135deg, var(--charcoal), var(--blue));
  transform: translateY(-12px);
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  margin: 0;
  color: var(--blue);
  font-size: 1.52rem;
  font-weight: 900;
}

.featured .price {
  color: var(--cyan);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.76fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(54, 198, 216, 0.22), transparent 30%),
    linear-gradient(135deg, var(--blue), var(--charcoal));
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.contact-form option {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  color: var(--ink);
}

.page-hero {
  padding: 92px clamp(20px, 5vw, 76px) 66px;
  background:
    radial-gradient(circle at 88% 16%, rgba(54, 198, 216, 0.16), transparent 28%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.55rem, 5.4vw, 5.2rem);
  line-height: 1.03;
}

.page-hero p:not(.eyebrow) {
  max-width: 790px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.dark-page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(54, 198, 216, 0.22), transparent 32%),
    linear-gradient(135deg, var(--charcoal), var(--blue));
}

.dark-page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.dark-page-hero .eyebrow {
  color: var(--cyan);
}

.insight-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  padding: 88px clamp(20px, 5vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.insight-band h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

.insight-list {
  display: grid;
  gap: 12px;
  align-self: start;
  background: transparent;
}

.insight-list p {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(190, 212, 225, 0.86);
  border-radius: 10px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
}

.insight-list .button {
  margin: 22px;
}

.cta-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: start;
}

.compact-cta {
  grid-template-columns: minmax(280px, 1fr) auto;
}

.capability-section {
  display: grid;
  gap: 18px;
  padding-top: 46px;
  background: var(--paper);
}

.capability {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(18, 37, 74, 0.06);
}

.capability > span,
.timeline-section span {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
}

.capability h2,
.timeline-section h2,
.model-detail h2 {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
}

.capability p,
.timeline-section p,
.model-detail p,
.comparison-table span,
.contact-panel p,
.evidence-grid p {
  color: var(--muted);
}

.plain-note {
  display: inline-flex;
  margin: 16px 0 4px;
  padding: 10px 12px;
  border-left: 4px solid var(--gold);
  color: var(--blue) !important;
  background: var(--sky);
  font-weight: 800;
}

.capability ul,
.model-detail ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.timeline-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 46px;
  background: var(--paper);
}

.timeline-section article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.timeline-section h2 {
  margin-top: 28px;
}

.evidence-section,
.comparison-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--paper);
}

.evidence-grid,
.comparison-table {
  display: grid;
  gap: 14px;
  background: transparent;
}

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

.evidence-grid div,
.comparison-table div {
  padding: 24px;
  border: 1px solid rgba(190, 212, 225, 0.86);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(18, 37, 74, 0.05);
}

.evidence-grid strong,
.comparison-table strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.model-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 46px;
  background: var(--paper);
}

.model-detail article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.model-detail article.featured {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(54, 198, 216, 0.22), transparent 38%),
    linear-gradient(135deg, var(--charcoal), var(--blue));
}

.model-detail article.featured p,
.model-detail article.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.model-detail article.featured .eyebrow {
  color: var(--cyan);
}

.comparison-table div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.comparison-table span {
  text-align: right;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 76px) 82px;
  background: var(--paper);
}

.contact-panel,
.contact-form-light {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(190, 212, 225, 0.86);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(18, 37, 74, 0.06);
}

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

.contact-lines a {
  color: var(--ink);
  font-weight: 900;
}

.contact-benefits {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-benefits span {
  color: var(--muted);
}

.contact-form-light {
  color: var(--ink);
}

.contact-form-light input,
.contact-form-light select,
.contact-form-light textarea {
  color: var(--ink);
  border-color: var(--line);
  background: #f8fcfe;
}

.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder {
  color: #777;
}

.profile-section,
.experts-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--paper);
}

.profile-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.profile-copy p {
  margin: 0;
}

.value-grid-section,
.article-grid,
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 46px;
  background: var(--paper);
}

.value-grid-section article,
.article-grid article,
.resources-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(190, 212, 225, 0.86);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(18, 37, 74, 0.055);
}

.value-grid-section span,
.resources-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 900;
}

.value-grid-section h2,
.article-grid h2,
.resources-grid h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.value-grid-section p,
.article-grid p,
.resources-grid p {
  color: var(--muted);
}

.expert-grid {
  display: grid;
  gap: 14px;
  background: transparent;
}

.expert-grid article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(190, 212, 225, 0.86);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 37, 74, 0.05);
}

.expert-grid strong {
  font-size: 1.1rem;
}

.expert-grid span {
  color: var(--muted);
}

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

.article-grid article {
  min-height: 330px;
}

.article-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
  box-shadow: inset 0 -3px 0 var(--gold);
}

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

.proof-section,
.industry-preview,
.capability-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--paper);
}

.proof-grid,
.map-grid,
.industry-strip,
.industry-grid {
  display: grid;
  gap: 14px;
  background: transparent;
}

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

.proof-grid article,
.map-grid article,
.industry-strip a,
.industry-grid article {
  padding: 24px;
  border: 1px solid rgba(190, 212, 225, 0.86);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 37, 74, 0.05);
}

.proof-grid strong,
.map-grid strong,
.industry-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
}

.proof-grid span,
.map-grid span,
.industry-grid p {
  color: var(--muted);
}

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

.industry-strip a {
  font-weight: 900;
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 46px;
  background: var(--paper);
}

.industry-grid article {
  min-height: 280px;
}

.industry-grid h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.post {
  background: var(--white);
}

.post-header {
  padding: 84px clamp(20px, 8vw, 140px) 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(37, 49, 127, 0.08), rgba(37, 169, 216, 0.12)),
    var(--paper);
}

.post-header h1 {
  max-width: 980px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.post-header p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.post-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin-top: 36px;
  background: transparent;
}

.post-summary div {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(190, 212, 225, 0.86);
  border-radius: 10px;
  background: var(--white);
}

.post-summary strong {
  color: var(--blue);
}

.post-summary span {
  color: var(--muted);
}

.post-body {
  max-width: 820px;
  padding: 58px clamp(20px, 8vw, 140px);
}

.post-body p {
  margin: 0 0 24px;
  color: #30343a;
  font-size: 1.08rem;
}

.post-body h2 {
  margin: 42px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.post-callout {
  margin-top: 42px;
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: var(--paper);
}

.post-callout p {
  margin: 8px 0 0;
}

.post-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(20px, 8vw, 140px) 80px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .hero-panel,
  .trust-band,
  .service-grid,
  .pricing-grid,
  .split-section,
  .process,
  .cta-section,
  .section-heading,
  .insight-band,
  .timeline-section,
  .evidence-section,
  .model-detail,
  .comparison-section,
  .contact-page,
  .profile-section,
  .experts-section,
  .value-grid-section,
  .article-grid,
  .resources-grid,
  .proof-section,
  .industry-preview,
  .capability-map,
  .proof-grid,
  .industry-strip,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .slider-heading {
    align-items: start;
    display: grid;
    gap: 12px;
  }

  .service-track {
    grid-auto-columns: minmax(230px, 78%);
  }

  .hero-slider {
    width: 100%;
    margin-top: 26px;
    padding: 18px;
  }

  .hero-slider .slider-heading h2 {
    font-size: 1.45rem;
  }

  .hero-slider .service-slide {
    min-height: 160px;
    padding: 18px;
  }

  .split-section .section-action {
    grid-column: auto;
  }

  .hero-panel div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

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

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

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

  .comparison-table div {
    display: grid;
  }

  .comparison-table span {
    text-align: left;
  }

  .quick-help,
  .post-summary {
    grid-template-columns: 1fr;
  }

  .quick-help {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 780px;
    padding: 112px 18px 28px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

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

  .section,
  .cta-section,
  .page-hero {
    padding: 62px 18px;
  }

  .page-hero {
    padding-top: 76px;
  }

  .contact-page {
    padding: 0 18px 62px;
  }

  .site-footer {
    display: grid;
  }

  .post-header {
    padding: 76px 18px 42px;
  }

  .post-body {
    padding: 44px 18px;
  }

  .post-footer {
    padding: 0 18px 62px;
  }
}
