:root{
  --container: 1120px;
  --text: #101018;
  --muted: rgba(16,16,24,.7);
  --white: #fff;
  --accent: #ff2b2b;
  --purple: #2b2a78;
  --cardShadow: 0 18px 50px rgba(18, 16, 35, 0.18);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:#fff;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

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

.sectionTitle{
  margin:0 0 18px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .2px;
  text-align:center;
}
.sectionTitle--light{ color: #fff; text-shadow: 0 8px 40px rgba(0,0,0,.35); }

/* PAGE PRELOADER */
html.preloader-active,
html.preloader-active body{
  overflow: hidden;
}
.page-preloader{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(255,255,255,.95), rgba(245,246,255,.98)),
    linear-gradient(145deg, #eef0fb 0%, #f8f8fc 38%, #fdecec 100%);
  transition: opacity 0.48s ease, visibility 0.48s ease;
}
.page-preloader--hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-preloader__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.page-preloader__logo{
  height: 38px;
  width: auto;
  animation: preloader-logo 1.15s ease-in-out infinite;
}
.page-preloader__spinner{
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(43, 42, 120, 0.14);
  border-top-color: var(--accent);
  border-right-color: #2f4bff;
  animation: preloader-spin 0.78s linear infinite;
}
@keyframes preloader-spin{
  to{ transform: rotate(360deg); }
}
@keyframes preloader-logo{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.88; transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce){
  .page-preloader__logo{ animation: none; }
  .page-preloader__spinner{
    animation-duration: 1.5s;
    border-top-color: var(--accent);
  }
}

/* HERO */

.hero{
  position:relative;
  min-height: 720px;
  padding: 22px 0 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.0) 80%, rgba(255,255,255,.0) 55%, rgba(255,255,255,1) 56%),
    url("./assets/hero/verhniy-banner-i-kak-my-rabotaem/verhniy-banner.png") center bottom / cover no-repeat;
  overflow:hidden;
}

.hero__domain{
  position:absolute;
  left: 14px;
  top: -6px;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: .2px;
  color:#000;
  opacity: 1;
  pointer-events:none;
}
.hero__top{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display:flex;
  justify-content:center;
  justify-items: center;
}
.heroNav{
  width: min(860px, 100%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 26px rgba(18,16,35,.12);
  backdrop-filter: blur(10px);
}
.heroNav__logo{ height: 20px; width:auto; }
.heroNav__links{
  display:flex;
  gap: 18px;
  align-items:center;
}
.heroNav__link{
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;
  opacity:.92;
}
.heroNav__link:hover{ opacity:1; text-decoration: underline; text-underline-offset: 4px; }
.heroNav__phone{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.0);
  font-weight: 800;
  font-size: 13px;
}
.heroNav__phoneIcon{ width: 16px; height: 16px; object-fit: contain; }

.hero__center{
  width: min(var(--container), calc(100% - 32px));
  margin: 120px auto 0;
  text-align:center;
}
.hero__kicker{
  font-weight: 800;
  font-size: 44px;
  color:#fff;
  text-shadow: 0 12px 40px rgba(0,0,0,.28);
  margin-bottom: 10px;
}
.hero__title{
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 900;
  text-shadow: 0 14px 45px rgba(0,0,0,.22);
}
.hero__titleRed{ color: #ff2b2b; }
.hero__titleBlue{ color: #2f4bff; }
.hero__cta{
  display:inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color:#000;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.65);
}

.services{
  width: min(var(--container), calc(100% - 32px));
  margin: 40px auto 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service{
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 22px;
  padding: 20px 18px 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--cardShadow);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
}
.service__icon{
  width: 100%;
  max-width: 232px;
  min-height: 96px;
  margin: 0 auto 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #e9ecf5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__icon img{
  width: 100%;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  object-position: center;
}
.service__title{
  margin: 0;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2px;
  text-align: center;
  text-transform: uppercase;
}
.service__text{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(16,16,24,.82);
  font-weight: 500;
  text-align: center;
}

/* WORK */
.work{
  padding: 34px 0 42px;
  background:#fff;
}
.work .sectionTitle{
  margin: 6px 0 18px;
  font-size: 40px;
  font-weight: 900;
}
.work__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.workItem{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items:center;
  padding: 24px 26px;
  border-radius: 26px;
  border: 1px solid rgba(16,16,24,.06);
  background: #f7f7f7;
  box-shadow:
    0 18px 48px rgba(18,16,35,.12),
    0 2px 0 rgba(0,0,0,.02) inset;
}
.workItem__img{
  width: 120px;
  height: 120px;
  object-fit: contain;
  justify-self: center;
}
.workItem__title{
  margin:0;
  font-size: 18px;
  font-weight: 900;
}
.workItem__desc{
  margin: 6px 0 0;
  color: rgba(16,16,24,.72);
  line-height: 1.45;
  font-size: 12px;
  font-weight: 500;
}

/* PRODUCTS */
.products{
  position:relative;
  padding: 48px 0 64px;
  overflow:hidden;
}
.products__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,24,.82) 0%, rgba(10,10,24,.78) 30%, rgba(10,10,24,.78) 100%),
    url("./assets/products/nasha-produktsiya/fon-gradient-nasha-produktsiya.jpg") center / cover no-repeat;
  filter: saturate(1.05);
  transform: scale(1.02);
}
.products .container{ position:relative; z-index:1; }
.products__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.productCard{
  position:relative;
  border-radius: 14px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  min-height: 160px;
}
.productCard__img{
  width:100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.productCard__label{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 10px 10px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
  color:#fff;
  text-align:center;
  background: linear-gradient(90deg, rgba(255,32,32,.95), rgba(255,32,32,.80));
  text-transform: uppercase;
}

/* WHY */
.why{
  position:relative;
  padding: 50px 0 56px;
  overflow:hidden;
  background: #fff;
}
.why__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1100px 440px at 50% 30%, rgba(255,60,60,.12), rgba(255,60,60,0) 55%),
    radial-gradient(900px 380px at 50% 80%, rgba(50,60,255,.08), rgba(50,60,255,0) 60%);
}
.why .container{ position:relative; z-index:1; }
.why__cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.whyCard{
  border-radius: 18px;
  padding: 18px 18px;
  background: #ff7a00;
  color:#fff;
  box-shadow: 0 18px 55px rgba(255,122,0,.24);
}
.whyCard__title{ font-weight: 900; font-size: 18px; }
.whyCard__text{ margin: 8px 0 0; font-weight: 500; line-height: 1.45; font-size: 13px; opacity: .96; }
.why__stats{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(18, 18, 48, 0.04);
  border: 1px solid rgba(18, 18, 48, 0.08);
}
.whyStat{ text-align:center; padding: 10px 6px; }
.whyStat__value{ font-weight: 900; font-size: 22px; color: var(--purple); }
.whyStat__label{ margin-top: 4px; font-size: 12px; font-weight: 700; color: rgba(16,16,24,.72); }

/* CLIENTS */
.clients{
  position:relative;
  padding: 54px 0 64px;
  overflow:hidden;
}
.clients__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,24,.86), rgba(10,10,24,.86)),
    url("./assets/clients/nashi-klienty/fon.png") center / cover no-repeat;
  transform: scale(1.02);
}
.clients .container{ position:relative; z-index:1; }
.clients__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.clientLogo{
  width:100%;
  height: 78px;
  object-fit: contain;
  border-radius: 14px;
  padding: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 40px rgba(0,0,0,.30);
}

/* FOOTER */
.footer{
  position:relative;
  color:#fff;
  overflow:hidden;
}
.footer__bg{
  position:absolute;
  inset:0;
  /* background:
    linear-gradient(180deg, rgba(12,12,32,.90), rgba(12,12,32,.92)),
    url("./assets/common/fon-nizhniy.png") center bottom / cover no-repeat;
  transform: scale(1.02); */
}
.footer__content{
  position:relative;
  z-index:1;
  padding: 32px 0 22px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 24px;
}
.footer__logo{ height: 44px; width:auto; }
.footer__note{ margin-top: 10px; font-size: 13px; opacity:.9; font-weight: 600; }
.footer__right{ display:flex; flex-direction:column; gap: 12px; }
.footer__row{ display:flex; align-items:center; gap: 10px; }
.footer__icon{ width: 20px; height: 20px; object-fit: contain; filter: drop-shadow(0 12px 30px rgba(0,0,0,.35)); }
.footer__link{ font-weight: 700; font-size: 13px; opacity:.95; }
.footer__link:hover{ opacity:1; text-decoration: underline; text-underline-offset: 4px; }

.footer__bottom{
  position:relative;
  z-index:1;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.10);
}
.footer__bottomInner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  opacity: .92;
}
.footer__muted{ opacity:.75; }

/* RESPONSIVE */
@media (max-width: 1060px){
  .hero__domain{ font-size: 44px; top: 0; }
}
@media (max-width: 860px){
  .hero{ padding-bottom: 26px; }
  .heroNav{ flex-wrap:wrap; justify-content:center; border-radius: 22px; }
  .services{ grid-template-columns: 1fr; }
  .hero__kicker{ font-size: 30px; }
  .hero__title{ font-size: 40px; }
  .work .sectionTitle{ font-size: 32px; }
  .workItem{ grid-template-columns: 92px 1fr; padding: 18px 16px; border-radius: 22px; }
  .workItem__img{ width: 86px; height: 86px; }
  .products__grid{ grid-template-columns: repeat(2, 1fr); }
  .why__cards{ grid-template-columns: 1fr; }
  .why__stats{ grid-template-columns: repeat(2, 1fr); }
  .clients__grid{ grid-template-columns: repeat(2, 1fr); }
  .footer__content{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 420px){
  .sectionTitle{ font-size: 28px; }
  .hero__nav{ padding: 10px 12px; }
  .hero__navLink{ font-size: 12px; }
  .products__grid{ grid-template-columns: 1fr; }
  .clients__grid{ grid-template-columns: 1fr; }
}
/* Text-first rebuild of the PDF layout (no image-only mock). */
:root {
  --container: 1220px;
  --text: #0d0f16;
  --muted: rgba(13, 15, 22, 0.72);
  --white: #fff;
  --blue: #2b2e83;
  --blue2: #1b1e65;
  --red: #e30b17;
  --orange: #ff6a00;
  --yellow: #ffe600;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page {
  min-height: 100vh;
}

img {
  max-width: 100%;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 44px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at 20% 40%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.0) 60%),
    radial-gradient(900px 420px at 60% 60%, rgba(234, 235, 255, 0.75), rgba(234, 235, 255, 0.0) 62%),
    linear-gradient(110deg, #f5f6ff 0%, #d9dbf1 22%, #c7c3d9 44%, #f3b7b7 64%, #f2504a 80%, #e20c18 100%);
  filter: saturate(1.05);
}

.decor {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.decor--sq1 {
  top: 70px;
  left: 24px;
  width: 320px;
}
.decor--sq2 {
  top: 84px;
  left: 74px;
  width: 380px;
}
.decor--sq3 {
  top: 104px;
  left: 142px;
  width: 390px;
}

.hero__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.brand__domain {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.brand__logo {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__logoMark {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1656b2 0%, #ff1a1a 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.brand__logoText {
  font-weight: 900;
  letter-spacing: 1px;
  color: #ff1a1a;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.15), 0 10px 26px rgba(0, 0, 0, 0.22);
}

.nav {
  display: flex;
  gap: 18px;
}
.nav__link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.nav__link:hover {
  text-decoration: underline;
}

.contacts {
  display: flex;
  gap: 12px;
  align-items: center;
}
.contacts__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.contacts__icon {
  width: 18px;
  height: auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 34px;
}

.hero__kicker {
  margin: 0 0 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hero__title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: 1px;
  font-weight: 950;
  color: #ff1a1a;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.serviceCards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.serviceCard {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.serviceCard__icon {
  width: 56px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, #4a4fff 100%);
  margin-bottom: 10px;
}
.serviceCard__icon--print {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb000 100%);
}
.serviceCard__icon--design {
  background: linear-gradient(135deg, var(--red) 0%, #ff6a6a 100%);
}
.serviceCard__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}
.serviceCard__text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.section {
  padding: 56px 0;
}
.section__title {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 950;
}
.section__title--center {
  text-align: center;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.howItem__pic {
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5a3c 0%, #ffb400 100%);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.howItem__pic--press {
  background: linear-gradient(135deg, #ff4b4b 0%, #ff9100 100%);
}
.howItem__pic--deliver {
  background: linear-gradient(135deg, #ff6a00 0%, #ffd000 100%);
}
.howItem__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}
.howItem__text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.products__bar {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
  padding: 22px 0;
}
.products__title {
  margin: 0;
  color: var(--white);
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.products__gridWrap {
  background: linear-gradient(135deg, #c7c9ff 0%, #ffffff 30%, #ffc2c2 68%, #ff3232 100%);
  padding: 28px 0 54px;
}
.productsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.productTile {
  height: 118px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 950;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.productTile--blue {
  background: linear-gradient(180deg, #2d4cff 0%, #1c1e83 100%);
}
.productTile--orange {
  background: linear-gradient(180deg, #ffb000 0%, #ff3d00 100%);
}
.productTile--red {
  background: linear-gradient(180deg, #ff3b3b 0%, #b80000 100%);
}
.productTile--green {
  background: linear-gradient(180deg, #25cc6c 0%, #0b8c3c 100%);
}

.whySection {
  background: #ffffff;
}
.whyCards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.whyCard {
  border-radius: 18px;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4a00 100%);
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.whyCard__icon {
  width: 58px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}
.whyCard__title {
  margin: 0 0 6px;
  font-weight: 950;
}
.whyCard__text {
  margin: 0;
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.4;
}

.stats {
  margin-top: 26px;
  border-radius: 20px;
  padding: 18px 16px;
  background: linear-gradient(90deg, #2b2e83 0%, #ff1a1a 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  box-shadow: var(--shadow);
}
.stat {
  text-align: center;
  color: #fff;
}
.stat__value {
  font-weight: 950;
  font-size: 26px;
  letter-spacing: 0.5px;
}
.stat__label {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.92;
}

.clients__bar {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
  padding: 18px 0;
}
.clients__title {
  margin: 0;
  color: #fff;
  font-weight: 950;
}
.clients__gridWrap {
  background: linear-gradient(180deg, #ffffff 0%, #ffe200 100%);
  padding: 26px 0 60px;
}
.clientsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.clientTile {
  height: 78px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(13, 15, 22, 0.72);
}

.footer {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 70%, #ff1a1a 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 18px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__brand {
  font-weight: 900;
}
.footer__copy {
  font-size: 12px;
  opacity: 0.88;
  margin-top: 2px;
}
.footer__right {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.footer__link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.footer__link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero__top {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .nav {
    flex-wrap: wrap;
  }
  .serviceCards {
    grid-template-columns: 1fr;
  }
  .how__grid {
    grid-template-columns: 1fr;
  }
  .productsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whyCards {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .clientsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

