:root{
  --w: 1440px;

  --pad10: 10px;
  --pad70: 70px;

  --text: #0b1020;
  --muted: rgba(11,16,32,.65);

  --shadow: 0 14px 40px rgba(8, 15, 35, .12);
  --shadow2: 0 12px 30px rgba(8, 15, 35, .10);

  --radius8: 8px;
  --radius12: 12px;

  --blue: #2e66ff;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: #fff;
}
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
button, input, textarea{ font:inherit; }

.page{ width: 100%; min-width: var(--w); }
.container{
  width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad10);
}

.sectionTitle{
  margin: 0 0 24px 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 44px;
  line-height: 1.05;
  color: var(--blue);
}
.sectionTitle--center{ text-align:center; }

/* =======================
   HEADER
======================= */
.header{
  height:110px;
  width:100%;
  position: sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid rgba(10, 18, 40, .08);
}
.header__inner{
  height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand{ display:flex; align-items:center; }
.brand__logoImg{
  width: 275.996px;
  height: 68px;
  object-fit: contain;
  transform: none; /* важно: не переворачиваем */
}
.nav{ display:flex; gap:24px; }
.nav__link{ font-size:14px; color: rgba(11,16,32,.75); }
.nav__link:hover{ color: rgba(11,16,32,1); }

.header__right{
  display:flex;
  align-items:center;
  gap: 16px;
}
.header__phone{
  font-size: 14px;
  color: rgba(11,16,32,.75);
}
.header__phone:hover{ color: rgba(11,16,32,1); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn--dark{
  background:#0b1020;
  color:#fff;
  box-shadow: 0 10px 24px rgba(11,16,32,.18);
}
.btn--dark:hover{ box-shadow: 0 12px 28px rgba(11,16,32,.22); }
.btn--ghost{
  background:#fff;
  border-color: rgba(11,16,32,.14);
  color:#0b1020;
}
.btn--ghost:hover{ border-color: rgba(11,16,32,.26); }

/* =======================
   HERO
======================= */
.hero{ width:100%; height:550px; }
.hero__viewport{
  width: var(--w);
  height:550px;
  margin:0 auto;
  position:relative;
  overflow:hidden;
}
.hero__track{
  height:100%;
  display:flex;
  transition: transform .6s cubic-bezier(.22,.8,.2,1);
}
.hero__slide{
  flex:0 0 var(--w);
  height:550px;
  position:relative;
  overflow:hidden;
  background-size: cover;
  background-position: center;
}
.hero__slide::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15));
}
.hero__content{
  height:550px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 0 70px;
  position: relative;
  z-index: 1;
}
.hero__title{
  margin:0;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color:#fff;
  max-width: 760px;
}
.hero__text{
  margin:16px 0 0 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  max-width: 620px;
}

.hero__controls{
  position:absolute;
  left:0; right:0; bottom:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  z-index: 2;
}
.hero__arrow{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.22);
  color:#fff;
  cursor:pointer;
}
.hero__dots{ display:flex; gap:8px; }
.heroDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}
.heroDot.is-active{
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.95);
}

/* заглушки фонов: замени на свои */
.hero__slide--1{ background-image: radial-gradient(circle at 20% 25%, rgba(255,123,40,.55), transparent 55%), linear-gradient(135deg, #101a3a, #0b1020); }
.hero__slide--2{ background-image: radial-gradient(circle at 70% 55%, rgba(46,102,255,.60), transparent 55%), linear-gradient(135deg, #101a3a, #0b1020); }
.hero__slide--3{ background-image: radial-gradient(circle at 30% 70%, rgba(255,170,90,.55), transparent 55%), linear-gradient(135deg, #101a3a, #0b1020); }
.hero__slide--4{ background-image: radial-gradient(circle at 70% 30%, rgba(140,140,255,.55), transparent 55%), linear-gradient(135deg, #101a3a, #0b1020); }

/* =======================
   WHAT — только картинки
======================= */
.what{
  width:100%;
  height:552px;
  padding: 10px 0;
}
.what__inner{
  height:552px;
  padding: 0 70px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:24px;
}
.whatCards{
  width:1300px;
  height:450px;
  display:grid;
  grid-template-columns: repeat(3, 428px);
  gap: 8px;
}

.whatCard{
  width:428px;
  height:450px;
  border-radius: var(--radius8);
  position: relative;
  overflow:hidden;
  box-shadow: var(--shadow2);
  display:block;
  cursor:pointer;
  outline:none;
  isolation:isolate;
}

/* front */
.whatCard::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--img-front);
  background-size: cover;
  background-position:center;
  opacity: 1;
  transition: opacity .35s ease;
  transform: scale(1.02);
  z-index: 1;
}
/* back */
.whatCard::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--img-back);
  background-size: cover;
  background-position:center;
  opacity: 0;
  transition: opacity .35s ease;
  transform: scale(1.02);
  z-index: 2;
}

/* glow layer */
.whatCard__glow{
  position:absolute;
  inset:0;
  border-radius: inherit;
  z-index: 3;
  pointer-events:none;
  opacity: .55;
  mix-blend-mode: screen;
}
.whatCard--violet .whatCard__glow{
  background: radial-gradient(60.61% 71.81% at 50.16% 71.81%, rgba(250, 245, 255, 0.3) 19.61%, rgba(227, 207, 255, 0.3) 100%);
}
.whatCard--peach .whatCard__glow{
  background: radial-gradient(99.8% 85.42% at 50.16% 85.42%, rgba(255, 247, 235, 0.3) 2.71%, rgba(255, 216, 154, 0.3) 100%);
}
.whatCard--blue .whatCard__glow{
  background: radial-gradient(94.44% 88

44% at 50.16% 88.06%, rgba(230, 243, 255, 0.3) 0%, rgba(195, 226, 255, 0.3) 100%);
}

.whatCard:hover::before,
.whatCard:focus::before{ opacity: 0; }
.whatCard:hover::after,
.whatCard:focus::after{ opacity: 1; }

.whatCard:focus-visible{
  box-shadow: 0 0 0 3px rgba(46,102,255,.25), var(--shadow2);
}

/* =======================
   MOSAIC
======================= */
.mosaicBlock{ width:100%; height:2060px; }
.mosaicBlock__inner{
  height:2060px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.mosaicTitle{
  width: var(--w);
  height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mosaic{
  width: var(--w);
  height:1060px;
  display:grid;
  grid-template-columns: repeat(3, 480px);
  grid-template-rows: repeat(2, 530px);
  gap:20px;
  align-content:center;
  justify-content:center;
}
.mosaicCard{
  width:480px;
  height:530px;
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadow);
  background: rgba(11,16,32,.04);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mosaicCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(8, 15, 35, .16);
}
.mosaicCard__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
}

/* =======================
   BANNERS (картинками)
======================= */
.bannerZone{
  width:100%;
  height:660px;
  padding: 30px 0;
}
.bannerZone__inner{
  height:660px;
  padding: 0 70px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.banner{
  width:1300px;
  height:600px;
  border-radius: var(--radius12);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:block;
  position:relative;
  background: rgba(11,16,32,.04);
}
.banner--happy{ border-radius: var(--radius8); }
.banner__img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* =======================
   FEATURES (картинками) + cursor dot
======================= */
.features{
  width:100%;
  height:442px;
  padding: 30px 0;
  position:relative;
}
.features__inner{
  height:442px;
  padding: 0 70px;
  position:relative;
}
.featureCards{
  width:1300px;
  height:300px;
  display:flex;
  gap:14px;
  position:relative;
}
.featureImgCard{
  width:424px;
  height:300px;
  border-radius: var(--radius12);
  box-shadow: var(--shadow2);
  overflow:hidden;
  display:block;
  position:relative;
  cursor:none;
  background: rgba(11,16,32,.04);
}
.featureImgCard img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* курсор фиксированный, чтобы не “уезжал” */
.cursorDot{
  position:fixed;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(11,16,32,.25);
  pointer-events:none;
  transform: translate(-50%, -50%);
  opacity:0;
  transition: background .12s ease, transform .06s linear, opacity .12s ease;
  mix-blend-mode: multiply;
  z-index: 9999;
}

/* =======================
   CLIENTS — full width (1494×140)
======================= */
.clients{
  width:100%;
  padding: 30px 0;
}
.logosFull{
  width: 1494px;
  height: 140px;
  padding: 40px 0;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:100px;
}
.logoImg{
  height: 60px;
  width: auto;
  opacity: .55;
  filter: grayscale(1);
}

/* =======================
   REVIEWS
======================= */
.reviews{
  width:100%;
  padding: 30px 0;
}
.reviews__inner{
  padding: 0 70px;
}
.reviewCards{
  width:1300px;
  display:flex;
  gap:10px;
}
.reviewCard{
  width:426.6667px;
  border-radius: var(--radius8);
  padding: 24px 16px;
  background: rgba(11,16,32,.03);
  box-shadow: var(--shadow2);
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.reviewCard__top{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.reviewCard__name{
  font-weight: 600;
  color: rgba(11,16,32,.92);
}
.reviewCard__meta{
  font-size: 13px;
  color: rgba(11,16,32,.55);
}
.reviewCard__text{
  margin:0;
  color: rgba(11,16,32,.72);
  line-height:1.35;
}

/* =======================
   VALUES
======================= */
.values{
  width:100%;
  height:502px;
  padding: 30px 0;
}
.values__inner{
  height:502px;
  padding: 0 70px;
}
.valueCards{
  width:1300px;
  height:360px;
  display:flex;
  gap:8px;
}
.valueCard{
  width:319px;
  height:360px;
  border-radius: var(--radius8);
  overflow:hidden;
  box-shadow: var(--shadow2);
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(11,16,32,.03);
}
.valueCard__img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* =======================
   SHOWROOM / FORM / CONTACTS (как было)
======================= */
.showroom{
  width:100%;
  height:534px;
  padding: 30px 0;
}
.showroom__inner{
  height:534px;
  padding: 0 70px;
  display:flex;
  gap:16px;
  align-items:center;
}
.showroomText{
  width:645px;
  height:400px;
  border-radius: var(--radius8);
  padding: 24px 20px;
  background: rgba(11,16,32,.03);
  box-shadow: var(--shadow2);
}
.p{ margin: 10px 0 14px 0; color: rgba(11,16,32,.70); line-height:1.4; }
.list{ margin: 0 0 18px 18px; color: rgba(11,16,32,.70); }
.showroomImg{
  width:645px;
  height:400px;
  border-radius: var(--radius8);
  overflow:hidden;
  box-shadow: var(--shadow2);
  background: rgba(46,102,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

.formSection{
  width:100%;
  height:820px;
  padding: 50px 0;
}
.formSection__inner{
  height:820px;
  padding: 0 70px;
  display:flex;
  gap:24px;
  align-items:center;
}
.formCard{ width:700px; height:592px; }
.form{ display:flex; flex-direction:column; gap:14px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field__label{ font-size:12px; color: rgba(11,16,32,.55); }
.field__input{
  width:100%;
  border-radius: 12px;
  border:1px solid rgba(11,16,32,.12);
  padding: 12px 14px;
  outline:none;
}
.field__input:focus{
  border-color: rgba(46,102,255,.55);
  box-shadow: 0 0 0 3px rgba(46,102,255,.16);
}
.field__input--ta{ min-height: 110px; resize:none; }
.finePrint{ margin:0; font-size:12px; color: rgba(11,16,32,.50); }

.formImg{
  width:638px;
  height:638px;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow2);
  background: rgba(255,123,40,.07);
  display:flex;
  align-items:center;
  justify-content:center;
}

.imgPlaceholder{ color: rgba(11,16,32,.45); font-size: 14px; }
.imgPlaceholder--square{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.contacts{
  width:100%;
  height:936px;
  padding: 30px 0;
}
.contacts__inner{
  height:936px;
  padding: 0 70px;
  display:flex;
  flex-direction:column;
}
.contactsTop{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom: 18px;
}
.contactLine{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.contactKey{ font-size:12px; color: rgba(11,16,32,.55); }
.contactVal{ color: rgba(11,16,32,.80); max-width: 760px; }
.contactActions{ display:flex; gap:10px; }

.mapWrap{
  width:1300px;
  height:600px;
  border-radius: var(--radius8);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(11,16,32,.08);
}
.mapFrame{ width:100%; height:100%; }

/* =======================
   FOOTER (по desktop.pdf)
======================= */
.footer{
  width:100%;
  padding: 50px 0;
  border-top:1px solid rgba(11,16,32,.08);
}
.footer__inner{
  padding: 0 70px;
  display:flex;
  gap: 24px;
  align-items:flex-start;
  justify-content:space-between;
}
.footer__col{ flex: 1; }
.footer__col--contacts{ max-width: 420px; }
.footer__col--center{ max-width: 520px; }
.footer__col--social{ max-width: 260px; display:flex; flex-direction:column; align-items:flex-end; gap: 18px; }

.footer__phones{ display:flex; flex-direction:column; gap: 6px; margin-bottom: 8px; }
.footer__link{ color: rgba(11,16,32,.78); font-size: 14px; }
.footer__link:hover{ color: rgba(11,16,32,1); }
.footer__hours, .footer__addr{
  margin-top: 14px;
  color: rgba(11,16,32,.65);
  font-size: 14px;
  line-height: 1.35;
}

.footer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo{ width: 54px; height: 54px; object-fit: contain; }
.footer__brandName{ font-weight: 700; }
.footer__brandSub{ color: rgba(11,16,32,.60); font-size: 13px; margin-top: 4px; }

.footer__policies{
  margin-top: 16px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.footer__policy{
  font-size: 13px;
  color: rgba(11,16,32,.62);
}
.footer__policy:hover{ color: rgba(11,16,32,.92); }

.footer__copy{
  margin-top: 16px;
  font-size: 12px;
  color: rgba(11,16,32,.55);
}

.footer__social{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:flex-end;
}
.socialBtn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(11,16,32,.04);
  border: 1px solid rgba(11,16,32,.08);
}
.socialBtn img{ width: 26px; height: 26px; object-fit: contain; }

.footer__seal{ width: 84px; height: auto; opacity: .9; }

html{ scroll-behavior: smooth; }