:root {
  --ink: #071629;
  --paper: #f5f9ff;
  --white: #ffffff;
  --muted: #52657d;
  --line: #d8e8fb;
  --teal: #0e84ff;
  --teal-dark: #0755b8;
  --coral: #0e84ff;
  --gold: #38c8ff;
  --charcoal: #03142f;
  --blue: #0e63d8;
  --blue-deep: #05245d;
  --blue-ink: #03142f;
  --sky: #38c8ff;
  --ice: #eaf5ff;
  --glow: 0 18px 50px rgba(14, 132, 255, 0.28);
  --shadow: 0 24px 70px rgba(5, 36, 93, 0.14);
  --shine: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.48) 45%, transparent 70%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(56, 200, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 24%, rgba(14, 132, 255, 0.11), transparent 30rem),
    var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a,
button,
.service-card,
.stat-card,
.insight-card,
.logo-wall span,
blockquote {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus,
select:focus {
  outline: 3px solid rgba(56, 200, 255, 0.48);
  outline-offset: 4px;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 72px;
  padding: 0.95rem 4.2vw;
  color: var(--white);
  background: linear-gradient(105deg, #021633 0%, #063c91 55%, #05245d 100%);
  border-bottom: 1px solid rgba(56, 200, 255, 0.32);
  box-shadow: 0 10px 34px rgba(3, 20, 47, 0.24);
}

.site-header.scrolled {
  color: var(--white);
  background: linear-gradient(105deg, #021633 0%, #063c91 55%, #05245d 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 0 14px rgba(56, 200, 255, 0.42));
}

.header-logo {
  display: block;
  width: clamp(132px, 12vw, 164px);
  height: auto;
  object-fit: contain;
}

.brand-logo {
  display: block;
  width: clamp(170px, 18vw, 238px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2rem);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.7rem 0;
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--gold);
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(56, 200, 255, 0.72);
}

.site-nav a.active {
  color: var(--gold);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--white));
  box-shadow: 0 0 12px rgba(56, 200, 255, 0.8);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.55rem;
  padding: 0 1rem;
  color: var(--white);
  border: 1px solid rgba(136, 217, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .nav-cta {
  color: var(--white);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--blue-ink);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(56, 200, 255, 0.28);
}

.nav-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -120%;
  width: 85%;
  background: var(--shine);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.button:hover::after,
.button:focus-visible::after {
  left: 140%;
}

.nav-cta span,
.button {
  position: relative;
  z-index: 1;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(136, 217, 255, 0.9);
  border-radius: 3px;
  color: inherit;
  background: transparent;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(56, 200, 255, 0.16);
  box-shadow: 0 10px 28px rgba(56, 200, 255, 0.22);
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.2rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 32, 0.96) 0%, rgba(4, 39, 94, 0.78) 42%, rgba(4, 39, 94, 0.18) 74%),
    linear-gradient(0deg, rgba(2, 12, 32, 0.78), rgba(2, 12, 32, 0.04) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  padding: 9rem 0 4.5rem 5vw;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sky);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 1.25rem;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.7rem;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 680px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-line {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.05rem 1.25rem 0;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(14, 132, 255, 0.22);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(56, 200, 255, 0.34);
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.button:active,
.nav-cta:active,
.menu-toggle:active,
.site-nav a:active,
.site-footer a:active,
.insight-card a:active {
  transform: translateY(0) scale(0.98);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #0e63d8, #38c8ff);
  border-color: rgba(255, 255, 255, 0.12);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(136, 217, 255, 0.72);
  background: rgba(14, 99, 216, 0.2);
  backdrop-filter: blur(8px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--blue-ink);
  background: var(--white);
  border-color: var(--white);
}

.section-pad {
  padding: 6rem 5vw;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.impact {
  background:
    linear-gradient(180deg, var(--white), #eef7ff);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 11rem;
  padding: 1.5rem;
  color: var(--white);
  background: linear-gradient(145deg, #05245d, #0e63d8);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.stat-card:nth-child(2) {
  background: linear-gradient(145deg, #0755b8, #38c8ff);
}

.stat-card:nth-child(3) {
  background: linear-gradient(145deg, #03142f, #0e63d8);
}

.stat-card:nth-child(4) {
  background: linear-gradient(145deg, #08316f, #19a7ff);
}

.stat-card::before {
  display: none;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
  filter: saturate(1.08);
}

.stat-card strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.stat-card span {
  display: block;
  max-width: 13rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.partners {
  background:
    radial-gradient(circle at 14% 12%, rgba(56, 200, 255, 0.15), transparent 24rem),
    var(--paper);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, 100%);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.logo-wall span {
  display: grid;
  place-items: center;
  min-height: 6.1rem;
  padding: 1rem;
  text-align: center;
  color: #26302d;
  background: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.logo-wall span:hover {
  z-index: 1;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  transform: scale(1.035);
  box-shadow: 0 16px 34px rgba(14, 132, 255, 0.26);
}

.about {
  background:
    linear-gradient(90deg, var(--white), #f0f8ff);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 4rem;
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-copy {
  padding-left: 2rem;
  border-left: 3px solid var(--blue);
}

.about-copy p {
  color: #39423f;
  font-size: 1.05rem;
}

.about-copy strong {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--blue);
  font-size: 1.15rem;
}

.leadership-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0.6rem;
}

.leader-card {
  overflow: hidden;
  color: var(--blue-ink);
  background: linear-gradient(135deg, var(--white), var(--ice));
  border: 1px solid rgba(14, 132, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(14, 132, 255, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 200, 255, 0.62);
  box-shadow: var(--glow);
}

.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.leader-card div {
  padding: 0.9rem;
}

.leader-card strong {
  display: block;
  margin: 0;
  color: var(--blue);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.leader-card span {
  display: block;
  margin-top: 0.15rem;
  color: var(--blue-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.services {
  background:
    linear-gradient(180deg, #eef7ff 0%, var(--white) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.service-card::after,
.insight-card::after,
blockquote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 200, 255, 0.16), transparent 45%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 132, 255, 0.34);
  box-shadow: var(--glow);
}

.service-card:hover::after,
.insight-card:hover::after,
blockquote:hover::after {
  opacity: 1;
}

.service-index {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 6px;
  font-weight: 800;
}

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

.insights {
  background:
    radial-gradient(circle at 90% 12%, rgba(14, 132, 255, 0.12), transparent 24rem),
    var(--white);
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.insight-card {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 132, 255, 0.34);
  box-shadow: var(--glow);
}

.insight-card time {
  display: block;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.insight-card p {
  color: var(--muted);
}

.insight-card a {
  position: relative;
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--blue);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.insight-card a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.insight-card a:hover,
.insight-card a:focus-visible {
  color: var(--teal-dark);
  transform: translateX(5px);
}

.insight-card a:hover::after,
.insight-card a:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.testimonials {
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 200, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, #03142f, #05245d);
  color: var(--white);
}

.testimonials .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(980px, 100%);
  margin: 0 auto;
}

blockquote {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  margin: 0;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(136, 217, 255, 0.22);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

blockquote:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 200, 255, 0.54);
  box-shadow: 0 20px 48px rgba(56, 200, 255, 0.16);
}

blockquote p {
  font-size: 1.15rem;
}

cite {
  display: block;
  margin-top: 1.25rem;
  color: var(--sky);
  font-style: normal;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 36, 93, 0.96), rgba(3, 20, 47, 0.94)),
    url("./assets/synergiq-hero-city.png") center / cover;
}

.contact-copy {
  width: min(510px, 100%);
}

.contact-copy h2 {
  font-size: 3.1rem;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-details a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--white);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.contact-details a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--white));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--sky);
  transform: translateX(4px);
  text-shadow: 0 0 18px rgba(56, 200, 255, 0.55);
}

.contact-details a:hover::after,
.contact-details a:focus-visible::after {
  transform: scaleX(1);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(720px, 100%);
  padding: 1.2rem;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(136, 217, 255, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-form label,
.contact-form .full {
  grid-column: span 1;
}

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

.contact-form span {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form textarea {
  min-height: 7rem;
  padding-top: 0.85rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(56, 200, 255, 0.22);
  transform: translateY(-1px);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.6rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 5vw 2rem;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, #021633, #05245d);
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  position: relative;
  width: fit-content;
  display: block;
  margin-bottom: 0.55rem;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--sky);
  transform: translateX(4px);
}

.footer-brand {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand .brand-logo {
  width: min(238px, 100%);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 2rem;
  margin: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1020px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

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

  .about-panel,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-left: 1.25rem;
  }

  .contact-form {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 0.85rem 1rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 4.5rem 1rem auto 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    color: var(--white);
    background: #020a1d;
    border: 1px solid rgba(199, 156, 69, 0.28);
    border-radius: 3px;
    box-shadow: var(--shadow);
    transform: translateY(-0.75rem);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

  .site-nav a {
    display: block;
    padding: 0.85rem;
  }

  .site-nav a.active::after {
    left: 0.85rem;
    right: auto;
    width: 2rem;
  }

  .nav-cta {
    margin-top: 0.35rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    width: 100%;
    padding: 7.5rem 1.1rem 3rem;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-pad {
    padding: 4.25rem 1rem;
  }

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

  .stat-grid,
  .service-grid,
  .insight-list,
  .leadership-list,
  .quote-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form .full {
    grid-column: 1;
  }

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

  .logo-wall span {
    min-height: 5.2rem;
    font-size: 0.95rem;
  }

  .stat-card,
  .service-card,
  .insight-card,
  blockquote {
    min-height: auto;
  }

  .contact-copy h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.55rem;
  }

  .brand-logo {
    width: 156px;
    max-height: 48px;
  }

  .header-logo {
    width: 150px;
  }
}
