/*
  262 Technologies website
  ------------------------
  This stylesheet uses only local assets and system fonts for speed, privacy,
  and reliable HTTPS deployment on standard shared hosting.

  EDITING TIP: Start with the variables below to adjust the color palette,
  content width, corner radius, or spacing across the entire site.
*/

:root {
  --navy-950: #071522;
  --navy-900: #0b1f33;
  --navy-800: #12324f;
  --navy-700: #194565;
  --blue-600: #1976a8;
  --blue-500: #2497c9;
  --cyan-300: #80d9e8;
  --teal-500: #18a68a;
  --slate-700: #34495b;
  --slate-600: #526575;
  --slate-500: #6f7f8c;
  --slate-300: #b9c5ce;
  --slate-200: #dce4e9;
  --slate-100: #edf2f5;
  --white: #ffffff;
  --off-white: #f7f9fa;
  --warm-white: #fbfaf7;
  --ink: #13212d;
  --success: #34c39f;
  --shadow-sm: 0 8px 30px rgba(7, 21, 34, 0.08);
  --shadow-lg: 0 24px 70px rgba(4, 16, 28, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-height: 76px;
}

/* Base and accessibility */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Keep anchor targets visible below the sticky header without leaving a gap. */
  scroll-padding-top: var(--header-height);
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

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

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

.section {
  padding: 112px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 21, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

/* Corporate logo supplied by 262 Technologies. The light image background is
   intentionally retained so the complete logo remains legible on dark areas. */
.brand-logo {
  display: block;
  width: 198px;
  max-width: 198px;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.site-header .brand {
  flex: 0 0 auto;
  max-height: 66px;
  overflow: hidden;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-300), #c3f2f5);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.brand-name {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.brand-name strong {
  font-weight: 650;
}

.primary-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan-300);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current] {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  padding: 9px 18px;
  color: var(--navy-950);
  background: var(--cyan-300);
  border-radius: 999px;
}

.primary-nav .nav-cta:hover {
  color: var(--navy-950);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 151, 201, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 52%, #10324c 100%);
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -320px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(128, 217, 232, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(128, 217, 232, 0.025), 0 0 0 180px rgba(128, 217, 232, 0.02);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  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: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 80px;
  align-items: center;
  min-height: 644px;
  padding-top: 62px;
  padding-bottom: 62px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow,
.eyebrow-light {
  color: var(--cyan-300);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(45px, 5.4vw, 72px);
  font-weight: 670;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.hero h1 span {
  color: #aee8ef;
  font-weight: 360;
}

.hero-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.65;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: var(--cyan-300);
  border-color: var(--cyan-300);
}

.button-primary:hover {
  background: #c7f2f5;
  border-color: #c7f2f5;
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-full {
  width: 100%;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 0;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding-left: 18px;
}

.hero-assurances li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--success);
  border-radius: 50%;
  transform: translateY(-50%);
}

.experience-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.experience-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 4px;
  content: "";
  background: linear-gradient(to left, var(--cyan-300), transparent);
}

.experience-number {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  line-height: 1;
}

.experience-number strong {
  color: var(--cyan-300);
  font-size: 72px;
  font-weight: 680;
  letter-spacing: -0.06em;
}

.experience-number span {
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.experience-card > p {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.76);
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-list span {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.83);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12px;
}

.experience-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(52, 195, 159, 0.12);
}

/* Credibility strip */
.credibility {
  color: var(--white);
  background: var(--navy-800);
}

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

.credibility-grid > div {
  min-height: 126px;
  padding: 28px 28px 28px 0;
}

.credibility-grid > div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.credibility-grid strong,
.credibility-grid span {
  display: block;
}

.credibility-grid strong {
  margin-bottom: 7px;
  color: var(--cyan-300);
  font-size: 14px;
}

.credibility-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

/* Shared section headings */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading h2,
.about-copy h2,
.clients-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--slate-600);
}

.compact-heading {
  grid-template-columns: minmax(0, 800px);
  margin-bottom: 44px;
}

/* Services */
.services-section {
  background: var(--off-white);
}

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #a8ccd9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.service-icon {
  display: inline-grid;
  min-width: 45px;
  height: 38px;
  padding: 0 9px;
  place-items: center;
  color: var(--navy-800);
  background: #e1f4f7;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.65;
}

/* Ideal clients */
.clients-section {
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: 100px;
  align-items: start;
}

.clients-intro {
  position: sticky;
  top: 120px;
}

.clients-intro p:not(.eyebrow) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.68);
}

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

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

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

.client-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.client-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.client-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.client-list strong {
  color: var(--white);
  font-size: 15px;
}

.client-list span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

/* About */
.about-section {
  background: var(--warm-white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 48px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(128, 217, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 217, 232, 0.06) 1px, transparent 1px),
    var(--navy-900);
  background-size: 48px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-visual::after {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(128, 217, 232, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(128, 217, 232, 0.025);
}

.architecture-lines {
  position: absolute;
  top: 36px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.architecture-lines i {
  flex: 1;
  height: 1px;
  margin: 0 12px;
  background: rgba(128, 217, 232, 0.3);
}

.about-seal {
  position: relative;
  z-index: 1;
  display: flex;
  width: 255px;
  height: 255px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  text-align: center;
  border: 1px solid rgba(128, 217, 232, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(128, 217, 232, 0.035), inset 0 0 45px rgba(128, 217, 232, 0.05);
}

.about-seal strong {
  margin: 5px 0;
  color: var(--cyan-300);
  font-size: 70px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.about-seal span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--slate-600);
  font-size: 16px;
}

.about-copy > p:nth-of-type(2) {
  margin-top: 28px;
  color: var(--slate-700);
  font-size: 18px;
}

.about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-principles span {
  padding: 8px 14px;
  color: var(--navy-800);
  background: #e5f3f4;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Why 262 */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--slate-200);
  border-left: 1px solid var(--slate-200);
}

.why-grid article {
  min-height: 240px;
  padding: 32px;
  border-right: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.why-grid article > span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
}

.why-grid h3 {
  margin: 30px 0 10px;
  font-size: 18px;
}

.why-grid p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

/* Contact */
.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 80%, rgba(36, 151, 201, 0.18), transparent 28%),
    var(--navy-950);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(490px, 1.2fr);
  gap: 90px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 42px;
  font-style: normal;
}

.contact-details > * {
  display: block;
  padding: 20px 0;
  color: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  text-decoration: none;
}

.contact-details > *:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

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

.contact-details span {
  margin-bottom: 4px;
  color: var(--cyan-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 16px;
}

.contact-details small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}

.contact-form-card {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.form-note {
  padding: 11px 13px;
  margin: 12px 0 28px;
  color: var(--slate-600);
  background: var(--slate-100);
  border-left: 3px solid var(--blue-500);
  font-size: 12px;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 17px;
}

/* Hidden spam trap. Human visitors and assistive technologies ignore it. */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 47px;
  padding: 0 13px;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 151, 201, 0.15);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #a12626;
  box-shadow: 0 0 0 3px rgba(161, 38, 38, 0.12);
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--slate-600);
  font-size: 12px;
  text-align: center;
}

.form-status-success {
  color: #11634f;
  font-weight: 700;
}

.form-status-error {
  color: #a12626;
  font-weight: 700;
}

.contact-form-card button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-result-page {
  min-height: 100vh;
  padding: 10vh 20px;
  background: var(--navy-950);
}

.form-result-card {
  width: min(100%, 680px);
  padding: 42px;
  margin: 0 auto;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-result-card h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 50px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.form-result-card p {
  color: var(--slate-600);
}

.form-result-card .button {
  margin-top: 12px;
}

.form-fallback {
  margin: 4px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  text-align: center;
}

.form-fallback a {
  color: var(--blue-600);
}

/* Footer */
.site-footer {
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #050e16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 50px;
  align-items: center;
}

.brand-footer {
  margin-bottom: 13px;
}

.brand-footer .brand-logo {
  width: 240px;
  max-width: 240px;
  max-height: none;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  text-align: right;
}

/* Multi-page headers and Home-page closing sections */
.page-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 28%, rgba(36, 151, 201, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(128, 217, 232, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(128, 217, 232, 0.025), 0 0 0 150px rgba(128, 217, 232, 0.018);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.page-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  min-height: 430px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.page-hero-layout > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.home-intro-section {
  background: var(--warm-white);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 90px;
  align-items: center;
}

.home-intro-grid h2,
.approach-grid h2,
.blog-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.home-intro-copy > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 18px;
}

/* Professional certifications */
.credentials-section {
  padding: 78px 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.credentials-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  align-items: center;
}

.credentials-copy h2 {
  margin: 0;
  font-size: clamp(31px, 3.4vw, 44px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.credentials-copy > p:last-child {
  margin: 18px 0 0;
  color: var(--slate-600);
}

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

.credential-card {
  min-height: 218px;
  padding: 25px 22px;
  background: var(--off-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.credential-mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  border: 3px solid #dff4f7;
  border-radius: 22px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.16);
}

.credential-mark-wide {
  font-size: 13px;
}

.credential-card strong,
.credential-card span:last-child {
  display: block;
}

.credential-card strong {
  color: var(--navy-900);
  font-size: 16px;
}

.credential-card span:last-child {
  margin-top: 6px;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.5;
}

/* Trust, proof, and policy sections */
.trust-section {
  background: var(--off-white);
}

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

.trust-card,
.proof-grid article,
.experience-list-card,
.simple-content-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(7, 21, 34, 0.03);
}

.trust-card {
  min-height: 210px;
  padding: 28px;
}

.trust-card h3,
.outcome-list h3,
.proof-grid h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.3;
}

.trust-card p,
.outcome-list p,
.proof-grid p,
.section-lead {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.65;
}

.outcomes-section {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 14%, rgba(128, 217, 232, 0.16), transparent 30%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 82px;
  align-items: start;
}

.outcomes-intro {
  position: sticky;
  top: 120px;
}

.outcomes-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.outcomes-intro p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.outcome-list {
  display: grid;
  gap: 16px;
}

.outcome-list article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.outcome-list span {
  display: inline-block;
  padding: 5px 9px;
  margin-bottom: 18px;
  color: var(--navy-950);
  background: var(--cyan-300);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-list h3 {
  color: var(--white);
}

.outcome-list p {
  color: rgba(255, 255, 255, 0.72);
}

.consultation-section,
.proof-section,
.simple-content-section {
  background: var(--warm-white);
}

.consultation-grid,
.experience-detail-layout,
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr);
  gap: 82px;
  align-items: start;
}

.consultation-grid h2,
.experience-detail-layout h2,
.proof-layout h2,
.simple-content-card h2 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.consultation-copy > p {
  margin: 0 0 22px;
  color: var(--slate-600);
  font-size: 17px;
}

.check-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: var(--slate-700);
  border-top: 1px solid var(--slate-200);
  font-size: 14px;
  line-height: 1.55;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--slate-200);
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(24, 166, 138, 0.12);
}

.experience-list-card {
  padding: 32px;
}

.experience-list-card .check-list {
  margin-bottom: 0;
}

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

.proof-grid article {
  min-height: 185px;
  padding: 26px;
}

.simple-content-card {
  max-width: 900px;
  padding: 42px;
}

.simple-content-card h2 {
  margin-top: 34px;
}

.simple-content-card h2:first-child,
.simple-content-card .policy-updated + h2 {
  margin-top: 0;
}

.simple-content-card p {
  color: var(--slate-600);
}

.simple-content-card a:not(.button) {
  color: var(--blue-600);
  font-weight: 700;
}

.policy-updated {
  margin-top: 0;
}

.button-group-dark {
  align-items: center;
  margin-top: 28px;
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button-dark:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.text-link-dark {
  color: var(--blue-600);
}

.cta-band {
  padding: 62px 0;
  color: var(--white);
  background: linear-gradient(110deg, var(--navy-800), var(--navy-900));
}

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

.cta-band .eyebrow {
  margin-bottom: 9px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 630;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

/* About page engagement approach */
.approach-section {
  background: var(--off-white);
  border-top: 1px solid var(--slate-200);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(440px, 1.25fr);
  gap: 100px;
}

.approach-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-top: 1px solid var(--slate-200);
}

.approach-steps li:last-child {
  border-bottom: 1px solid var(--slate-200);
}

.approach-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-800);
  background: #e1f4f7;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.approach-steps strong {
  font-size: 17px;
}

.approach-steps p {
  margin: 5px 0 0;
  color: var(--slate-600);
  font-size: 14px;
}

/* Contact page: preserve the dark form area beneath its shorter page hero. */
.contact-page-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Static blog listing and article views */
.blog-section {
  background: var(--off-white);
}

.blog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.blog-heading > p {
  margin: 0 0 5px;
  color: var(--slate-600);
}

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

.blog-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(7, 21, 34, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-card:hover {
  border-color: #a8ccd9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
}

.blog-category {
  padding: 5px 9px;
  color: var(--navy-800);
  background: #e1f4f7;
  border-radius: 999px;
  font-weight: 750;
}

.blog-card h3 {
  margin: 25px 0 13px;
  font-size: clamp(22px, 2.4vw, 29px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.blog-card-title {
  text-decoration: none;
}

.blog-card-title:hover {
  color: var(--blue-600);
}

.blog-card-excerpt {
  margin: 0 0 28px;
  color: var(--slate-600);
  font-size: 15px;
}

.blog-read-link {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.blog-read-link:hover {
  text-decoration: underline;
}

.blog-loading,
.blog-message {
  grid-column: 1 / -1;
  padding: 26px;
  margin: 0;
  color: var(--slate-600);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.blog-post-section {
  min-height: 620px;
  background: var(--warm-white);
}

.blog-post-container {
  max-width: 860px;
}

.blog-back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.blog-back-link:hover {
  text-decoration: underline;
}

.blog-post-header {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--slate-200);
}

.blog-post-header h1 {
  margin: 25px 0 22px;
  font-size: clamp(40px, 5.3vw, 62px);
  font-weight: 660;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.blog-post-lead {
  max-width: 760px;
  margin: 0;
  color: var(--slate-600);
  font-size: 19px;
}

.blog-post-body {
  padding-top: 38px;
  color: var(--slate-700);
  font-size: 17px;
}

.blog-post-body h2 {
  margin: 50px 0 16px;
  color: var(--ink);
  font-size: 29px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.blog-post-body p {
  margin: 0 0 22px;
}

.blog-post-body ul {
  padding-left: 24px;
  margin: 8px 0 28px;
}

.blog-post-body li {
  padding-left: 6px;
  margin-bottom: 9px;
}

.blog-post-body li::marker {
  color: var(--teal-500);
}

.blog-post-body blockquote {
  padding: 20px 24px;
  margin: 32px 0;
  color: var(--navy-800);
  background: #e8f4f5;
  border-left: 4px solid var(--blue-500);
  font-size: 18px;
  font-weight: 600;
}

.blog-error h1 {
  margin-top: 0;
}

.blog-error .button {
  margin-top: 10px;
}

[hidden] {
  display: none !important;
}

/* Escalation-focused homepage additions */
.escalation-hero .hero-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  min-height: 720px;
}

.escalation-hero h1 {
  font-size: clamp(43px, 4.9vw, 67px);
}

.hero-supporting {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.7;
}

.card-kicker {
  margin: 0 0 20px !important;
  color: var(--cyan-300) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.call-signals-section {
  color: var(--white);
  background: linear-gradient(125deg, var(--navy-950), var(--navy-800));
}

.call-signals-layout,
.senior-value-layout,
.assessment-layout,
.msp-layout,
.automation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 90px;
  align-items: start;
}

.call-signals-intro h2,
.senior-value-layout h2,
.assessment-copy h2,
.msp-layout h2,
.automation-layout h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.call-signals-intro > p:not(.eyebrow) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.signal-list li {
  position: relative;
  min-height: 118px;
  padding: 24px 22px 22px 50px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-size: 14px;
}

.signal-list li::before {
  position: absolute;
  top: 24px;
  left: 22px;
  content: "\2713";
  color: var(--success);
  font-weight: 800;
}

.senior-value-section {
  background: var(--warm-white);
}

.senior-value-card,
.msp-support-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.senior-value-card > p,
.msp-layout > div > p {
  margin: 0 0 24px;
  color: var(--slate-600);
  font-size: 17px;
}

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

.outcome-services-grid .service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.service-result {
  display: block;
  padding-top: 18px;
  margin-top: auto;
  color: var(--navy-700);
  border-top: 1px solid var(--slate-200);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.assessment-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(36, 151, 201, 0.18), transparent 32%),
    var(--navy-900);
}

.assessment-copy > p:not(.eyebrow) {
  margin: 25px 0;
  color: rgba(255, 255, 255, 0.7);
}

.assessment-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.assessment-deliverables strong {
  width: 100%;
  margin-bottom: 4px;
  color: var(--cyan-300);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.assessment-deliverables span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 12px;
}

.assessment-scope-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

.assessment-scope-card h3,
.msp-support-card h3 {
  margin: 0 0 24px;
  font-size: 21px;
}

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

.scope-grid li {
  position: relative;
  padding: 13px 0 13px 20px;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.scope-grid li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--success);
  border-radius: 50%;
}

.msp-section {
  background: var(--warm-white);
}

.msp-layout > div:first-child .button {
  margin-top: 10px;
}

.engagements-section {
  background: var(--off-white);
}

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

.engagement-grid article {
  min-height: 275px;
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.engagement-grid article > span {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.engagement-grid h3 {
  margin: 18px 0 11px;
  font-size: 19px;
  line-height: 1.35;
}

.engagement-grid p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

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

.automation-copy {
  padding-left: 34px;
  border-left: 4px solid var(--cyan-300);
}

.automation-copy p {
  margin: 0 0 18px;
  color: var(--slate-600);
}

.automation-copy p:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .nav-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    visibility: hidden;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px 6px;
    font-size: 16px;
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .escalation-hero .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .experience-card {
    max-width: 650px;
  }

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

  .credibility-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .credibility-grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .clients-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .clients-intro,
  .contact-copy {
    position: static;
  }

  .about-visual {
    width: min(100%, 620px);
  }

  .contact-form-card {
    max-width: 720px;
  }

  .page-hero-layout,
  .home-intro-grid,
  .approach-grid,
  .blog-heading,
  .credentials-layout,
  .outcomes-layout,
  .consultation-grid,
  .experience-detail-layout,
  .proof-layout,
  .call-signals-layout,
  .senior-value-layout,
  .assessment-layout,
  .msp-layout,
  .automation-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .outcomes-intro {
    position: static;
  }

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

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

  .page-hero-layout {
    align-content: center;
  }

  .cta-band-inner {
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-name {
    font-size: 17px;
  }

  .site-header .brand-logo {
    width: 156px;
    max-width: 156px;
    max-height: 52px;
  }

  .brand-footer .brand-logo {
    width: 210px;
    max-width: 210px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 54px);
  }

  .escalation-hero h1 {
    font-size: clamp(37px, 11.5vw, 49px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-layout {
    gap: 42px;
    padding-top: 66px;
    padding-bottom: 70px;
  }

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

  .hero-assurances {
    display: grid;
    gap: 8px;
  }

  .experience-card {
    padding: 28px 24px;
  }

  .experience-number strong {
    font-size: 60px;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .credibility-grid > div,
  .credibility-grid > div + div {
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .credibility-grid > div:first-child {
    border-top: 0;
  }

  .section-heading h2,
  .about-copy h2,
  .clients-intro h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .signal-list,
  .scope-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .signal-list li {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .outcome-services-grid .service-card {
    min-height: auto;
  }

  .senior-value-card,
  .assessment-scope-card,
  .msp-support-card,
  .engagement-grid article {
    min-height: auto;
    padding: 26px 22px;
  }

  .automation-copy {
    padding-left: 22px;
  }

  .clients-layout,
  .about-layout,
  .contact-layout {
    gap: 48px;
  }

  .client-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .about-visual {
    min-height: 390px;
    padding: 30px;
  }

  .architecture-lines {
    right: 20px;
    left: 20px;
  }

  .about-seal {
    width: 220px;
    height: 220px;
  }

  .about-seal strong {
    font-size: 60px;
  }

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

  .contact-form-card {
    padding: 28px 20px;
    border-radius: var(--radius-md);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .copyright {
    text-align: left;
  }

  .page-hero,
  .page-hero-layout {
    min-height: 390px;
  }

  .page-hero-layout {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .page-hero h1 {
    font-size: 39px;
  }

  .page-hero-layout > p {
    font-size: 16px;
  }

  .home-intro-grid,
  .approach-grid,
  .blog-heading,
  .consultation-grid,
  .experience-detail-layout,
  .proof-layout {
    gap: 25px;
  }

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

  .trust-card,
  .proof-grid article {
    min-height: auto;
  }

  .outcome-list article,
  .experience-list-card,
  .simple-content-card {
    padding: 26px 22px;
  }

  .credentials-section {
    padding: 66px 0;
  }

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

  .credential-card {
    min-height: auto;
  }

  .cta-band-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-band .button {
    width: 100%;
  }

  .approach-steps li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

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

  .blog-card {
    min-height: auto;
    padding: 27px 23px;
  }

  .blog-post-header h1 {
    font-size: 38px;
  }

  .blog-post-lead,
  .blog-post-body {
    font-size: 16px;
  }

  .blog-post-body h2 {
    font-size: 25px;
  }
}

/* Honor user motion preferences. */
@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;
  }
}

/* Print a clean, readable business overview. */
@media print {
  .site-header,
  .hero-grid,
  .button-group,
  .contact-form-card,
  .site-footer {
    display: none !important;
  }

  .hero,
  .clients-section,
  .contact-section {
    color: var(--ink);
    background: var(--white);
  }

  .section,
  .hero-layout {
    min-height: auto;
    padding: 30px 0;
  }

  .hero-layout,
  .clients-layout,
  .about-layout,
  .contact-layout {
    display: block;
  }

  .experience-card,
  .about-visual {
    display: none;
  }
}
