/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1E2A3A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.s-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: 68px;
}
.hero-left {
  padding: clamp(100px, calc(68px + 6vh), 180px) 64px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF3E0;
  border: 1px solid #FFCC80;
  color: #E65100;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E65100;
}
.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: #0D1B2E;
  margin-bottom: 22px;
  max-width: 510px;
}
.hero-h1 span { color: #E65100; }
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #64748B;
  max-width: 440px;
  margin-bottom: 40px;
}

/* Кнопки */
.btn-orange {
  background: #E65100;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 15px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.btn-orange:hover {
  background: #BF360C;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,81,0,.35);
}
.btn-orange svg { transition: transform .2s; }
.btn-orange:hover svg { transform: translateX(4px); }

.btn-navy {
  background: #1B3A6B;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .18s;
}
.btn-navy:hover { background: #0F2347; transform: translateY(-1px); }
.btn-navy svg { transition: transform .2s; }
.btn-navy:hover svg { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: #1B3A6B;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid #CBD5E1;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: #1B3A6B; background: #F4F7FB; }

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

/* Hero photo */
.hero-right {
  position: relative;
  overflow: hidden;
  background: #EBF4FF;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.75) 5%,
      rgba(255,255,255,.3) 14%,
      rgba(255,255,255,0) 28%
    ),
    linear-gradient(
      to top,
      rgba(255,255,255,.55) 0%,
      transparent 18%
    );
}

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  background: #0F2347;
  padding: 52px 0;
  border-top: 3px solid #E65100;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 40px;
}
.stat-item:last-child { border-right: none; margin-right: 0; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.stat-num em { font-style: normal; color: #E65100; }
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .5px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  text-transform: uppercase;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── CATALOG SECTION ─────────────────────────────────────────── */
.catalog-s {
  background: #F4F7FB;
  padding: 72px 0 96px;
}
.s-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E65100;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #E65100;
  flex-shrink: 0;
}
.s-h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #0D1B2E;
  margin-bottom: 48px;
}
.s-h2 span { color: #1B3A6B; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cat-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-bottom: 3px solid transparent;
  border-radius: 12px;
  padding: 22px 28px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  min-height: 210px;
}
.cat-card-icon { margin-top: 26px; }
.cat-card.cat-featured .cat-card-icon { margin-top: 26px; }
.cat-card-models { flex: 1; }
.cat-card:not(.cat-soon):hover {
  border-color: #E2E8F0;
  border-bottom-color: #E65100;
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.cat-card.cat-featured {
  background: #1B3A6B;
  border-color: #243E78;
  border-bottom-color: #E65100;
}
.cat-card.cat-featured .cat-card-name { color: #fff; }
.cat-card.cat-featured .cat-card-models { color: rgba(255,255,255,.55); }
.cat-card.cat-featured .cat-card-arrow { color: #FF8A65; }
.cat-card.cat-featured .cat-card-icon {
  background: rgba(230,81,0,.15);
  color: #FF8A65;
}
.cat-card.cat-featured .cat-badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15); }
.cat-card.cat-featured:hover {
  border-color: #243E78;
  border-bottom-color: #E65100;
  box-shadow: 0 8px 32px rgba(27,58,107,.35);
}
.cat-card-icon {
  width: 44px;
  height: 44px;
  background: #EBF4FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3A6B;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.cat-card-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.3px;
  color: #0D1B2E;
  line-height: 1.2;
}
.cat-card-models {
  font-size: 12.5px;
  color: #94A3B8;
  line-height: 1.6;
  flex: 1;
}
.cat-card-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #E65100;
  margin-top: 8px;
  transition: gap .2s;
}
.cat-card:not(.cat-soon):hover .cat-card-arrow { gap: 10px; }
.cat-card-arrow svg { transition: transform .2s; }
.cat-card:not(.cat-soon):hover .cat-card-arrow svg { transform: translateX(4px); }
.cat-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge-live { background: #DBEAFE; color: #1E40AF; }
.badge-new  { background: #FFF3E0; color: #E65100; border: 1px solid #FFCC80; }
.badge-soon { background: #F1F5F9; color: #94A3B8; }
.cat-soon { background: #FAFAFA; opacity: .6; cursor: default; }
.cat-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

/* ── WHY SECTION ─────────────────────────────────────────────── */
.why-s {
  background: #0F2347;
  padding: 96px 0;
}
.why-s .s-h2 { color: #fff; margin-bottom: 48px; }
.why-s .s-h2 span { color: rgba(255,255,255,.4); }
.why-s .s-label { color: rgba(255,255,255,.4); }
.why-s .s-label::before { background: rgba(255,255,255,.25); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
}
.why-item {
  background: rgba(255,255,255,.02);
  padding: 40px 36px;
  transition: background .2s;
}
.why-item:hover { background: rgba(255,255,255,.06); }
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(230,81,0,.15);
  border: 1px solid rgba(230,81,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF8A65;
  margin-bottom: 20px;
  transition: background .2s;
}
.why-item:hover .why-icon { background: rgba(230,81,0,.25); }
.why-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about-s {
  background: #fff;
  padding: 96px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: 0 20px 60px rgba(27,58,107,.15);
  position: relative;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(27,58,107,.3) 0%, transparent 100%);
}
.about-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -1px;
  line-height: 1.15;
  color: #0D1B2E;
  margin-bottom: 16px;
  margin-top: 14px;
}
.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: #64748B;
  margin-bottom: 40px;
}
.about-facts { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.af {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E2E8F0;
}
.af:last-child { border-bottom: none; }
.af-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #FFF3E0;
  border: 1px solid #FFCC80;
  display: flex; align-items: center; justify-content: center;
  color: #E65100;
  flex-shrink: 0;
  margin-top: 2px;
}
.af-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: #0D1B2E; margin-bottom: 4px; }
.af-sub { font-size: 13px; color: #94A3B8; line-height: 1.55; }
.about-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.cert {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 6px 13px;
  border-radius: 6px;
  background: #F4F7FB;
  border: 1px solid #CBD5E1;
  color: #64748B;
  letter-spacing: .3px;
}

/* ── CLIENTS ─────────────────────────────────────────────────── */
.clients-s {
  background: #1B3A6B;
  padding: 52px 0;
  border-top: 3px solid rgba(255,255,255,.06);
}
.clients-label {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 28px;
}
.clients-overflow { overflow: hidden; }
.clients-row {
  display: flex;
  gap: 0;
  width: max-content;
  animation: slide 28s linear infinite;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-name {
  padding: 0 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.32);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.client-name:hover { color: rgba(255,255,255,.7); }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-s { background: #F4F7FB; padding: 96px 0; }
.cta-inner {
  background: #0F2347;
  border-radius: 20px;
  padding: 80px 80px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #E65100;
}
.cta-inner::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,114,204,.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-super { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(28px, 3.5vw, 48px); letter-spacing: -1.5px; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 520px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-form-wrap { position: relative; z-index: 1; max-width: 460px; margin: 0 auto; }
.cta-row { display: flex; gap: 8px; margin-bottom: 12px; }
.cta-inp {
  flex: 1;
  height: 52px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 0 18px;
  font: 500 15px/1 'Inter', sans-serif;
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s;
}
.cta-inp::placeholder { color: rgba(255,255,255,.28); }
.cta-inp:focus { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.16); }
.btn-submit {
  height: 52px;
  padding: 0 28px;
  background: #E65100;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.btn-submit:hover { background: #BF360C; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,81,0,.4); }
.cta-note { font-size: 11.5px; color: rgba(255,255,255,.28); margin-bottom: 36px; }
.cta-note a { color: rgba(255,255,255,.4); text-decoration: none; }
.cta-alts { display: flex; align-items: center; justify-content: center; border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; position: relative; z-index: 1; }
.cta-alt { display: flex; align-items: center; gap: 14px; padding: 0 40px; text-decoration: none; }
.cta-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); }
.alt-ico { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); flex-shrink: 0; }
.alt-label { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px; color: rgba(255,255,255,.35); margin-bottom: 3px; letter-spacing: .5px; }
.alt-val { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: rgba(255,255,255,.85); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #060F1C; color: rgba(255,255,255,.65); }
.foot-wrap { max-width: 1280px; margin: 0 auto; padding: 60px 48px 24px; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand-logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: -.3px; color: #fff; margin-bottom: 12px; }
.foot-brand-logo em { font-style: normal; color: #E65100; }
.foot-tagline { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 16px; }
.foot-contact { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(255,255,255,.4); }
.foot-contact a { color: rgba(255,255,255,.6); text-decoration: none; }
.foot-contact a:hover { color: #fff; }
.foot-col-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: rgba(255,255,255,.9); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.foot-disc { font-size: 11px; color: rgba(255,255,255,.16); max-width: 500px; text-align: right; }

/* ── MODAL ────────────────────────────────────────────────────── */
.m-ov { position: fixed; inset: 0; z-index: 200; background: rgba(6,15,28,.7); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; }
.m-ov.on { display: flex; }
.modal { background: #fff; border-radius: 16px; padding: 40px; width: 100%; max-width: 420px; position: relative; border-top: 3px solid #E65100; }
.m-x { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: none; background: #F4F7FB; border-radius: 50%; cursor: pointer; font-size: 14px; color: #64748B; display: flex; align-items: center; justify-content: center; }
.modal h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -.5px; color: #0D1B2E; margin-bottom: 8px; }
.modal-sub { font-size: 13.5px; color: #94A3B8; margin-bottom: 24px; line-height: 1.6; }
.mfield { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.mfield label { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; color: #475569; letter-spacing: .3px; }
.mfield input { height: 46px; border: 1.5px solid #E2E8F0; border-radius: 8px; padding: 0 16px; font: 400 15px/1 'Inter', sans-serif; color: #1E2A3A; outline: none; transition: border-color .2s; }
.mfield input:focus { border-color: #1B3A6B; }
.mcheck { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-size: 12px; color: #94A3B8; }
.mcheck a { color: #1B3A6B; }
.btn-msubmit { width: 100%; height: 50px; background: #E65100; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; border-radius: 8px; border: none; cursor: pointer; transition: background .2s; }
.btn-msubmit:hover { background: #BF360C; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 50svh; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-bottom { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { padding-top: 40px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 40px; }
}
@media (max-width: 768px) {
  .hero-left { padding: 80px 24px 48px; }
  .s-wrap { padding: 0 24px; }
  .catalog-s, .why-s, .about-s, .cta-s { padding: 72px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-grid-bottom { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 24px 40px; border-radius: 12px; }
  .cta-row { flex-direction: column; }
  .cta-alts { flex-direction: column; gap: 20px; }
  .cta-sep { display: none; }
  .foot-top { grid-template-columns: 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .foot-disc { text-align: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stats-strip { padding: 36px 0; }
  .stat-item { margin-right: 24px; padding-right: 24px; }
}
