@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Barlow:wght@400;500;600;700&display=swap");
:root {
  --steel: #172b3a;
  --steel-deep: #101f2b;
  --ink: #1d2a3b;
  --muted: #607087;
  --bg: #f6f8fa;
  --surface: #edf1f5;
  --card: #fff;
  --line: #d7dee7;
  --amber: #2b9bc2;
  --amber-dark: #073c52;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    16px/1.55 Barlow,
    sans-serif;
}
h1,
h2,
h3,
strong,
.brand {
  font-family: Archivo, sans-serif;
}
h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}
h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
h3 {
  font-size: 1.2rem;
}
p {
  margin: 0 0 1rem;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.topbar {
  background: var(--steel);
  color: #dfe7f1;
  font-size: 0.78rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 8px 0;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  white-space: nowrap;
}
.topbar-item b {
  color: var(--amber);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.topbar a,
.footer a {
  color: inherit;
  text-decoration: none;
}
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f6f8faee;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--ink);
  text-decoration: none;
}
.brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer-brand img {
  width: 62px;
  height: 62px;
}
.brand strong {
  display: block;
  font-size: 1.1rem;
}
.brand small {
  display: block;
  color: var(--muted);
  font:
    700 0.62rem Barlow,
    sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  gap: 4px;
}
.desktop-nav a,
.mobile-nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}
.desktop-nav a:hover,
.desktop-nav .active,
.mobile-nav .active {
  color: var(--ink);
  border-bottom: 2px solid var(--amber);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--amber);
  border: 1px solid var(--amber);
  color: var(--amber-dark);
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}
.button:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}
.button.outline {
  background: transparent;
  border-color: #92a0b1;
  color: #fff;
}
.button.dark-text {
  color: var(--ink);
}
.button-small {
  padding: 8px 13px;
  font-size: 0.9rem;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  color: white;
}
.hero > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--steel) 0%, #17263dd9 50%, #17263d66);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 96px 0 105px;
}
.hero h1 {
  max-width: 720px;
  margin-top: 22px;
}
.hero h1 em {
  color: var(--amber);
  font-style: normal;
}
.lead {
  max-width: 650px;
  color: #d7e0eb;
  font-size: 1.2rem;
}
.eyebrow {
  color: var(--amber);
  font:
    700 0.74rem Archivo,
    sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.amber {
  color: var(--amber);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #dbe3ed;
  font-weight: 600;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
  padding-top: 16px;
}
.stat {
  padding: 24px;
  border: 1px solid #ffffff26;
  background: #ffffff0d;
}
.stat b,
.stat-band b {
  display: block;
  color: var(--amber);
  font:
    700 2.3rem Archivo,
    sans-serif;
}
.stat span,
.stat-band span {
  display: block;
  color: #cbd5e2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split h2 {
  margin-top: 14px;
}
.muted {
  color: var(--muted);
}
.image-stack {
  position: relative;
}
.image-stack img,
.wide-image {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--line);
}
.badge {
  position: absolute;
  left: 24px;
  bottom: -20px;
  padding: 14px 20px;
  background: var(--amber);
  color: var(--amber-dark);
}
.badge b {
  display: block;
  font:
    700 2rem Archivo,
    sans-serif;
}
.badge span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.stat-band {
  padding: 36px 0;
  background: var(--steel);
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.blueprint {
  background-color: var(--steel);
  background-image:
    linear-gradient(#ffffff0c 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0c 1px, transparent 1px);
  background-size: 64px 64px;
}
.stat-band span {
  color: #cbd5e2;
}
.section-heading {
  max-width: 700px;
  margin-bottom: 45px;
}
.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p,
.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px;
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
}
.service-card:hover {
  background: var(--surface);
}
.service-card .icon {
  flex-shrink: 0;
  margin-bottom: 22px;
}
.service-card h3 {
  margin-top: 0;
}
.service-card p {
  flex: 1;
  color: var(--muted);
}
.service-card strong {
  font-size: 0.9rem;
}
.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--steel);
  color: #fff;
  font:
    700 1.3rem Archivo,
    sans-serif;
}
.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.icon-small {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}
.band {
  background: var(--surface);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.project-card {
  background: var(--card);
  border: 1px solid var(--line);
}
.project-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.project-card > div {
  padding: 20px;
}
.project-card small {
  color: var(--amber-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.project-card p {
  color: var(--muted);
}
.page-hero {
  padding: 78px 0;
  color: white;
}
.page-hero h1 {
  max-width: 820px;
  margin-top: 18px;
}
.page-hero p {
  max-width: 730px;
  color: #cbd5e2;
}
.service-list {
  display: grid;
  gap: 80px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-row:nth-child(even) .service-photo {
  order: 2;
}
.service-photo {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.service-row h2 {
  margin-top: 0;
}
.service-row > div:last-child > .icon,
.value-grid .panel > .icon {
  margin-bottom: 18px;
}
.service-row > div:last-child > .icon {
  flex-shrink: 0;
}
.value-grid .panel h3 {
  margin-top: 0;
}
.feature-list,
.ruled-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
  font-weight: 600;
}
.feature-list li {
  font-size: 0.92rem;
}
.feature-list .check {
  display: inline-block;
  min-width: 1.35rem;
  margin-right: 8px;
  color: var(--brand-red);
  font-weight: 800;
}
.feature-list li:first-letter {
  color: var(--amber);
}
.panel {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
}
.panel h3 {
  color: var(--amber-dark);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ruled-list {
  display: block;
}
.ruled-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.ruled-list li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 12px 2px 0;
  background: var(--amber);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
}
.detail-title {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.detail-title p {
  margin-top: 8px;
}
.amber-bg {
  background: var(--amber);
  color: var(--amber-dark);
}
.back {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.detail-layout h2 {
  font-size: 1.8rem;
  margin-top: 38px;
}
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.feature-cards li {
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--card);
  font-weight: 600;
}
.full {
  width: 100%;
  margin: 12px 0;
}
.phone-link {
  display: block;
  text-align: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.quiet {
  margin-top: 24px;
  background: var(--surface);
}
.other-link {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.other-link span {
  color: var(--amber);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}
.filters a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
.filters .selected {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--amber-dark);
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--card);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font:
    700 0.75rem Archivo,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
td {
  color: var(--muted);
}
td strong {
  color: var(--ink);
}
.cta {
  padding: 48px 0;
  background: var(--surface);
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.contact-details {
  margin-top: 35px;
}
.contact-details p {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.contact-details strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-details a {
  display: block;
  color: var(--ink);
  font-weight: 400;
  text-decoration: none;
}
.contact-address {
  display: block;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: 0.9rem;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  padding: 11px;
  font: inherit;
  color: var(--ink);
}
textarea {
  resize: vertical;
}
.contact-form small {
  color: var(--muted);
}
.messages {
  position: fixed;
  right: 24px;
  top: 85px;
  z-index: 30;
  max-width: 380px;
}
.message {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  background: var(--steel);
  color: white;
  border-left: 4px solid var(--amber);
}
.message-close {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #cbd5e2;
  font: 1.4rem/1 Barlow, sans-serif;
  cursor: pointer;
}
.message-close:hover {
  color: #fff;
}
.not-found {
  text-align: center;
  padding: 120px 20px;
}
.not-found h1 {
  color: var(--steel);
}
.footer {
  border-top: 4px solid var(--brand-red);
  color: #dce5ef;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 45px;
  padding-top: 65px;
  padding-bottom: 55px;
}
.footer-grid > div {
  min-width: 0;
}
.footer-grid > div:first-child {
  padding-right: 18px;
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-brand strong {
  color: #fff;
  font-size: 1.15rem;
}
.footer p {
  color: #adbacb;
  font-size: 0.9rem;
  max-width: 320px;
}
.footer h3 {
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid #ffffff1a;
}
.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: #b7c3d2;
}
.footer li {
  margin: 8px 0;
}
.footer li a {
  display: inline-block;
  padding: 2px 0;
}
.footer a:hover {
  color: var(--amber);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid #ffffff1a;
  color: #8593a6;
  font-size: 0.75rem;
}
@media (max-width: 800px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }
  .topbar {
    display: none;
  }
  .desktop-nav,
  .quote-top {
    display: none;
  }
  .menu-toggle {
    display: block;
    border: 1px solid var(--line);
    background: transparent;
    padding: 8px 11px;
    font-size: 1.1rem;
  }
  .mobile-nav {
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 2px;
    padding: 0 16px;
    background: var(--bg);
    transition: max-height 0.2s;
  }
  .mobile-nav.open {
    max-height: 280px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--line);
  }
  .hero-grid,
  .split,
  .service-row,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 70px 0 80px;
  }
  .stats-grid {
    padding-top: 0;
  }
  .service-grid,
  .project-grid,
  .reason-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-row:nth-child(even) .service-photo {
    order: 0;
  }
  .service-photo {
    min-height: 250px;
  }
  .stat-band-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .detail-title {
    gap: 14px;
  }
  .contact-layout {
    gap: 35px;
  }
}
@media (max-width: 520px) {
  .topbar-email {
    display: none;
  }
  h1 {
    font-size: 2.6rem;
  }
  .actions,
  .actions .button {
    width: 100%;
  }
  .trust,
  .service-grid,
  .project-grid,
  .value-grid,
  .feature-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .page-hero {
    padding: 58px 0;
  }
  .stat-band-grid {
    gap: 18px;
  }
  .stat-band b {
    font-size: 1.8rem;
  }
  .stat-band span {
    font-size: 0.62rem;
  }
  .hero .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero .stat {
    padding: 16px 12px;
  }
}
.dark-section {
  color: white;
}
.dark-section .section-heading p {
  color: #cbd5e2;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reason,
.outcome-grid .panel,
.testimonial-grid blockquote {
  min-width: 0;
  overflow-wrap: anywhere;
}
.reason {
  padding: 24px;
  border-top: 2px solid var(--amber);
  background: #ffffff0d;
}
.reason h3 {
  margin-top: 18px;
}
.reason p {
  color: #b8c5d5;
  font-size: 0.92rem;
}
.outcome-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
  border-left: 2px solid var(--amber);
  background: var(--card);
}
.testimonial-grid footer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .reason-grid,
  .outcome-grid,
  .testimonial-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }
}
.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 2px #17263d0d;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.project-card img {
  transition: transform 0.35s ease;
}
.project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.project-card > div:not(.project-card-body) {
  padding: 20px;
}
.project-card h3 {
  margin-bottom: 0.55rem;
}
.project-description {
  flex: 1;
  font-size: 0.95rem;
}
.project-meta {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 16px 28px #17263d24;
}
.project-card:hover img {
  transform: scale(1.05);
}
.footer {
  border-top: 0;
  background: var(--steel-deep);
  color: #dce5ef;
}
.footer-shell {
  padding-top: 42px;
}
.footer-intro {
  background: var(--steel);
  border-bottom: 1px solid #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 32px;
}
.footer-identity {
  max-width: 650px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
}
.footer-brand img {
  width: 58px;
  height: 58px;
}
.footer-brand strong,
.footer-brand span {
  display: block;
}
.footer-brand strong {
  color: #fff;
  font-size: 1.35rem;
}
.footer-brand span {
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-identity p {
  max-width: 560px;
  margin: 0;
  color: #b8c5d5;
  font-size: 0.98rem;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding: 14px 18px;
  border: 1px solid var(--amber);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.footer-cta span {
  color: var(--amber);
  font-size: 1.25rem;
}
.footer-cta:hover {
  background: var(--amber);
  color: var(--amber-dark);
}
.footer-cta:hover span {
  color: var(--amber-dark);
}
.footer-grid {
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 64px;
  padding-top: 50px;
  padding-bottom: 54px;
}
.footer-grid > div:first-child {
  padding-right: 0;
}
.footer-column h3,
.footer-contact h3 {
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-column ul {
  display: grid;
  gap: 8px;
}
.footer-column li {
  margin: 0;
}
.footer-column a,
.footer-contact a {
  color: #b8c5d5;
  text-decoration: none;
}
.footer-column a:hover,
.footer-contact a:hover {
  color: #fff;
}
.footer-contact {
  padding: 22px 26px;
  border-left: 2px solid var(--brand-red);
  background: #ffffff08;
}
.footer-contact p {
  margin-bottom: 16px;
  color: #b8c5d5;
}
.footer-contact a,
.footer-contact small {
  display: block;
  margin-top: 8px;
}
.footer-contact a {
  color: #fff;
  font-weight: 600;
}
.footer-contact small {
  color: #8593a6;
  font-size: 0.75rem;
}
.footer-bottom {
  margin-top: 8px;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (max-width: 800px) {
  .footer-intro {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-cta {
    width: 100%;
    justify-content: space-between;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    grid-column: auto;
  }
}
@media (max-width: 800px) {
  .reason-grid,
  .outcome-grid,
  .testimonial-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
