:root {
  --navy: #1d314c;
  --navy-2: #0f2037;
  --navy-3: #314968;
  --red: #ed3448;
  --red-dark: #c91f34;
  --silver: #f2f2f0;
  --silver-2: #e5e7e9;
  --white: #ffffff;
  --ink: #182638;
  --muted: #5d6875;
  --line: #d9dde1;
  --soft: #f7f7f6;
  --max: 1200px;
  --shadow: 0 22px 60px rgba(20, 37, 58, 0.12);
  --shadow-soft: 0 12px 38px rgba(20, 37, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 15%, rgba(237, 52, 72, 0.065), transparent 25rem),
    radial-gradient(circle at 10% 65%, rgba(29, 49, 76, 0.055), transparent 28rem);
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(237, 52, 72, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 1rem;
}

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

.top-line {
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0 42%, var(--red) 42% 58%, var(--navy) 58%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(217, 221, 225, 0.9);
  box-shadow: 0 8px 30px rgba(20, 37, 58, 0.045);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1320px, calc(100% - 34px));
  min-height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 235px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand img {
  width: 230px;
  height: 64px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.nav-links a {
  position: relative;
  padding: 10px 8px;
  color: #34465d;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  margin-left: 8px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 7px;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: var(--white);
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 3px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.section-pad {
  padding: 96px 0;
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.98) 0 52%, rgba(242, 242, 240, 0.82) 52%),
    var(--silver);
}

.compact-hero {
  min-height: 650px;
}

.hero::before,
.page-hero::before {
  content: "SC";
  position: absolute;
  left: -24px;
  bottom: -100px;
  color: rgba(29, 49, 76, 0.032);
  font-size: clamp(220px, 34vw, 520px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.1em;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  top: -240px;
  right: 11%;
  border: 55px solid rgba(237, 52, 72, 0.07);
  border-radius: 50%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -230px;
  width: 560px;
  height: 560px;
  border: 70px solid rgba(29, 49, 76, 0.06);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  max-width: 790px;
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(46px, 6.2vw, 82px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.page-hero h1 {
  font-size: clamp(42px, 5.2vw, 67px);
}

.hero p,
.page-hero p {
  max-width: 700px;
  margin: 0 0 28px;
  color: #4e5e70;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(237, 52, 72, 0.22);
}

.btn.primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 34px rgba(237, 52, 72, 0.28);
}

.btn.ghost {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.62);
}

.btn.ghost:hover {
  color: var(--white);
  background: var(--navy);
}

.btn.small {
  min-height: 40px;
  align-self: flex-start;
  margin-top: auto;
  padding: 9px 14px;
  color: var(--navy);
  border-color: var(--line);
  background: var(--silver);
}

.btn.small:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.quick-stats {
  max-width: 600px;
  margin-top: 38px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
}

.quick-stats div {
  min-width: 0;
}

.quick-stats strong {
  display: block;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.15;
}

.quick-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card {
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -18px 36px auto -18px;
  height: 6px;
  z-index: -1;
  background: var(--red);
}

.hero-card > img {
  width: 100%;
  min-height: 440px;
  max-height: 560px;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
}

.page-hero .hero-card > img {
  min-height: 360px;
}

.floating-card {
  position: absolute;
  left: -38px;
  bottom: 30px;
  max-width: 285px;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(29, 49, 76, 0.96);
  border-left: 5px solid var(--red);
  box-shadow: 0 20px 42px rgba(15, 32, 55, 0.28);
}

.floating-card span {
  color: #ff9aa6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 7px;
  font-size: 19px;
  line-height: 1.25;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.section-title h2,
.section-heading h2,
.feature-copy h2,
.contact-grid h2,
.cta-inner h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.rich-text {
  padding-left: 28px;
  border-left: 3px solid var(--red);
}

.rich-text p {
  margin: 0 0 18px;
  color: #4f5d6c;
  font-size: 17px;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 4px;
  color: var(--red-dark);
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.band {
  padding: 96px 0;
  background:
    linear-gradient(120deg, rgba(29, 49, 76, 0.025), transparent 55%),
    var(--silver);
  border-block: 1px solid var(--silver-2);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.cap-card,
.mini-card,
.step {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.cap-card::after,
.mini-card::after,
.step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 190ms ease;
}

.cap-card:hover,
.mini-card:hover,
.step:hover {
  transform: translateY(-5px);
  border-color: #c6cdd4;
  box-shadow: var(--shadow);
}

.cap-card:hover::after,
.mini-card:hover::after,
.step:hover::after {
  transform: scaleX(1);
}

.cap-card img,
.mini-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  padding: 10px;
  object-fit: contain;
  background: var(--navy);
  border-radius: 6px;
}

.cap-card h3,
.mini-card h3,
.step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.cap-card p,
.mini-card p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cap-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red-dark);
  font-weight: 800;
}

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

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

.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 400ms ease, filter 300ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.service-card.tall {
  grid-row: span 2;
}

.service-card.tall img {
  height: 498px;
}

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.service-body h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 650;
  line-height: 1.16;
}

.service-body p,
.service-body li {
  color: var(--muted);
}

.service-body ul {
  margin: 0;
  padding-left: 20px;
}

.pills,
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pills span,
.check-grid span {
  padding: 7px 10px;
  color: var(--navy);
  background: var(--silver);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0, rgba(237, 52, 72, 0.2), transparent 32rem),
    linear-gradient(128deg, var(--navy-2), var(--navy));
}

.dark-section::after {
  content: "SC";
  position: absolute;
  right: -20px;
  bottom: -100px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 350px;
  font-weight: 700;
  line-height: 1;
}

.dark-section .section-heading,
.dark-section .feature-split {
  position: relative;
  z-index: 1;
}

.dark-section .section-heading h2,
.dark-section .feature-copy h2 {
  color: var(--white);
}

.dark-section .eyebrow {
  color: #ff7181;
}

.dark-section .section-heading p,
.dark-section .cap-card p,
.dark-section .feature-copy p {
  color: #d3dbe4;
}

.dark-cards .cap-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.dark-cards .cap-card h3 {
  color: var(--white);
}

.dark-cards .cap-card img {
  background: var(--red);
}

.feature-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.feature-split.reverse .feature-media {
  order: 2;
}

.feature-media {
  position: relative;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid var(--red);
}

.feature-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.list-columns ul {
  margin: 0;
  padding-left: 19px;
}

.list-columns li {
  margin: 7px 0;
}

.light-list li {
  color: #dbe3ec;
}

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

.info-grid div,
.contact-list div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.info-grid strong,
.contact-list strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
}

.info-grid span,
.contact-list span,
.contact-list a {
  color: var(--muted);
}

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

.step span {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-left: 4px solid var(--red);
  font-weight: 800;
}

.product-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-group {
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow-soft);
}

.product-group:nth-child(2n) {
  border-top-color: var(--red);
}

.product-group h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
}

.product-group ul {
  margin: 0;
  padding-left: 18px;
}

.product-group li {
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), var(--silver));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: start;
}

.map-card {
  margin: 28px 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.map-card img {
  width: 155px;
  height: 120px;
  object-fit: cover;
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card strong {
  color: var(--navy);
  font-size: 18px;
}

.map-card span {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-card {
  position: sticky;
  top: 112px;
  padding: 32px;
  background: var(--white);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.contact-logo {
  width: min(100%, 290px);
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.contact-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 27px;
}

.contact-card p {
  margin-top: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid #cfd5db;
  border-radius: 5px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.cta-strip {
  padding: 74px 0;
  background: var(--silver);
  border-top: 1px solid var(--silver-2);
}

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

.cta-inner h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.6vw, 48px);
}

.site-footer {
  padding: 70px 0 20px;
  color: #d7dfe7;
  background:
    radial-gradient(circle at 90% 0, rgba(237, 52, 72, 0.18), transparent 20rem),
    var(--navy-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 60px;
}

.footer-logo {
  width: min(100%, 255px);
  height: auto;
  margin-bottom: 14px;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 16px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: #ff8c99;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9fb0c2;
  font-size: 13px;
}

.footer-bottom span {
  margin: 0;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

@media (max-width: 1180px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 17px;
    right: 17px;
    max-height: 0;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 10px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: max-height 250ms ease, opacity 180ms ease, visibility 180ms ease, padding 250ms ease;
  }

  .nav-links.open {
    max-height: calc(100vh - 95px);
    padding-block: 18px;
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
  }

  .nav-links a {
    padding: 12px;
    border-bottom: 1px solid var(--silver-2);
    font-size: 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

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

@media (max-width: 900px) {
  .section-pad,
  .band {
    padding: 76px 0;
  }

  .hero,
  .page-hero,
  .compact-hero {
    min-height: auto;
  }

  .hero-grid,
  .two-col,
  .feature-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-card {
    max-width: 680px;
  }

  .hero-card > img,
  .page-hero .hero-card > img {
    min-height: 330px;
  }

  .floating-card {
    left: 18px;
  }

  .two-col {
    gap: 32px;
  }

  .rich-text {
    padding-left: 20px;
  }

  .feature-split.reverse .feature-media {
    order: 0;
  }

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

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

  .contact-card {
    position: static;
  }

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

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

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

  .navbar {
    width: calc(100% - 26px);
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 180px;
    height: 51px;
  }

  .nav-links {
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr;
  }

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

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 13.5vw, 58px);
  }

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

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quick-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quick-stats div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .hero-card > img,
  .page-hero .hero-card > img {
    min-height: 270px;
  }

  .floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: -1px 0 0;
  }

  .capability-grid,
  .service-grid,
  .service-grid.cards-3,
  .step-grid,
  .product-matrix,
  .info-grid,
  .list-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card.tall {
    grid-row: auto;
  }

  .service-card.tall img,
  .service-card img {
    height: 230px;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-card img {
    width: 100%;
    height: 190px;
  }

  .contact-card {
    padding: 24px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

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