/* =========================================================
   MOTUS TECHNOLOGIES — Design System
   ========================================================= */

:root {
  /* Brand palette (from logo) */
  --navy: #10112b;
  --indigo: #2f3289;
  --blue: #3e6eb5;
  --blue-mid: #4483c4;
  --blue-light: #5ab0e3;
  --blue-pale: #eaf4fb;

  --black: #0a0a0a;
  --ink: #111114;
  --white: #ffffff;

  --gray-50: #f6f7f9;
  --gray-100: #eef0f3;
  --gray-200: #e2e5ea;
  --gray-400: #9a9fa8;
  --gray-500: #6b7280;
  --gray-700: #3a3d44;
  --gray-900: #17181c;

  --gradient-brand: linear-gradient(115deg, var(--blue-light) 0%, var(--blue) 45%, var(--indigo) 100%);
  --gradient-dark: linear-gradient(160deg, #14152f 0%, #0a0a0c 100%);

  --font-body: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 10px rgba(10, 10, 15, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 10, 20, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 10, 20, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--blue-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  background-size: 160% 160%;
  background-position: 0% 50%;
  overflow: hidden;
  filter: drop-shadow(0 10px 18px rgba(10, 10, 20, 0.28));
}
.btn-primary:hover { background-position: 100% 50%; filter: drop-shadow(0 16px 28px rgba(10, 10, 20, 0.34)); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--indigo); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--ink); background: var(--gray-50); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(62, 110, 181, 0.35), transparent 60%);
  pointer-events: none;
}
.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.brand img { height: 92px; width: auto; }
.brand-word {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.brand-word span { color: var(--blue-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gradient-brand);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--gradient-dark);
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(90, 176, 227, 0.25), transparent 45%),
    radial-gradient(circle at 100% 70%, rgba(47, 50, 137, 0.55), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 26px;
}
.hero-lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 18px;
}
.hero-lead strong { color: var(--white); font-weight: 700; }
.hero-ctas { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo-based hero graphic */
.logo-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-graphic img {
  position: absolute;
  width: 56%;
  max-width: 340px;
}
.logo-ghost {
  opacity: 0.16;
  filter: blur(1px) saturate(1.2);
  animation: floatSlow 10s ease-in-out infinite;
}
.logo-ghost.g1 { transform: rotate(-16deg) translate(-46px, -18px) scale(1.35); animation-delay: -2s; }
.logo-ghost.g2 { opacity: 0.11; transform: rotate(14deg) translate(58px, 34px) scale(1.6); animation-delay: -5s; }
.logo-main {
  filter: drop-shadow(0 25px 45px rgba(5, 8, 20, 0.55));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes floatSlow {
  0%, 100% { transform: rotate(var(--r, 0deg)) translate(var(--tx, 0), var(--ty, 0)) scale(var(--s, 1)); }
  50% { transform: rotate(var(--r, 0deg)) translate(var(--tx, 0), calc(var(--ty, 0px) - 14px)) scale(var(--s, 1)); }
}
.logo-ghost.g1 { --r: -16deg; --tx: -46px; --ty: -18px; --s: 1.35; }
.logo-ghost.g2 { --r: 14deg; --tx: 58px; --ty: 34px; --s: 1.6; }

.hero.small { padding: 70px 0 90px; }
.hero.small .hero-grid { grid-template-columns: 1fr; }
.hero.small h1 { max-width: 780px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-header.left { margin: 0 0 56px; text-align: left; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
}
.section-sub {
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--gray-500);
}

.bg-dark { background: var(--black); color: var(--white); }
.bg-dark .section-sub { color: rgba(255,255,255,0.65); }
.bg-tint { background: var(--gray-50); }
.bg-gradient { background: var(--gradient-dark); color: var(--white); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(62, 110, 181, 0.35), transparent 60%);
}
.cta-banner-inner { position: relative; }
.cta-banner h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: -10px auto 26px;
}

/* ---------- How We Work (steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--indigo));
  opacity: 0.25;
}
.step { position: relative; text-align: left; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--gray-500); font-size: 0.98rem; }

/* ---------- Service cards / carousel ---------- */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}
.carousel-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  flex: 1;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.service-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-media {
  height: 130px;
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-media .media-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.service-card:hover .media-icon { transform: scale(1.08); background: rgba(255,255,255,0.24); }
.service-card-media .media-icon svg { width: 30px; height: 30px; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card-body p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 16px; }
.service-card-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link svg { transition: transform 0.3s var(--ease); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

.carousel-btn {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .2s var(--ease);
}
.carousel-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); transform: scale(1.05); }
.carousel-btn:hover svg { stroke: var(--white); }

/* ---------- Services grid (overview page) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.services-grid .service-card { flex: unset; width: auto; }

/* ---------- Service detail page ---------- */
.service-detail { padding: 90px 0; }
.service-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 70px;
  align-items: start;
}
.service-body p { color: var(--gray-700); margin-bottom: 20px; font-size: 1.06rem; }
.service-body .lede { font-size: 1.2rem; color: var(--ink); font-weight: 500; margin-bottom: 28px; }
.includes-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 34px;
  margin: 34px 0;
}
.includes-box h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; color: var(--indigo); }
.includes-box ul li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
  color: var(--gray-700);
}
.includes-box ul li:last-child { border-bottom: none; }
.includes-box ul li svg { flex-shrink: 0; margin-top: 3px; }
.closing-line {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 28px 0 34px;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
}

.service-sidebar { position: sticky; top: 130px; }
.sidebar-card {
  background: var(--gradient-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  margin-bottom: 24px;
}
.sidebar-card h4 { font-size: 1.15rem; margin-bottom: 12px; }
.sidebar-card p { color: rgba(255,255,255,0.68); font-size: 0.95rem; margin-bottom: 24px; }

.other-services h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 16px; }
.other-services ul li a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.other-services ul li a:hover { color: var(--blue); padding-left: 6px; }
.other-services ul li:last-child a { border-bottom: none; }

/* ---------- Why Us ---------- */
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card h3 { font-size: 1.28rem; margin-bottom: 16px; }
.why-card p { color: var(--gray-500); margin-bottom: 14px; }
.why-card ul { margin: 18px 0 0; }
.why-card ul li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray-700);
  font-size: 0.98rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-block {
  padding: 46px 20px;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.02rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-block:last-child { border-right: none; }
.stat-block .num { display: block; font-size: 2.1rem; margin-bottom: 8px; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 18px; }
.contact-info p { color: var(--gray-500); margin-bottom: 28px; }
.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 8px;
}
.contact-person .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-person h4 { font-size: 1.05rem; margin-bottom: 2px; }
.contact-person p { color: var(--gray-500); font-size: 0.92rem; margin: 0; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-detail .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-detail p { color: var(--gray-500); font-size: 0.95rem; margin: 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--gray-50);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.85rem; color: var(--gray-400); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success svg { margin: 0 auto 18px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 84px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 300px; color: rgba(255,255,255,0.55); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.95rem; transition: color .25s var(--ease); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.footer-socials a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 260px; order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .why-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav { height: 90px; }
  .brand img { height: 68px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-outline-dark, .nav-cta > a.btn-primary { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { color: var(--white); font-size: 1.4rem; font-weight: 700; }
  .mobile-menu .btn { margin-top: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .nav { height: 76px; }
  .brand img { height: 54px; }
}
