/* ── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Brand blues from logo */
  --ink:      #04090F;   /* near-black bg */
  --deep:     #081629;   /* deep navy */
  --navy:     #0E2344;   /* section bg */
  --mid:      #1A3A6B;   /* cards */
  --blue:     #1E72CC;   /* logo blue */
  --sky:      #38A3E8;   /* logo light blue */

  /* Accent */
  --orange:   #E65100;
  --orange-h: #BF360C;
  --orange-lt:#FFF0E6;

  /* Neutrals */
  --white:    #FFFFFF;
  --off:      #F0F4F8;
  --grey:     #8A9BB0;
  --muted:    rgba(255,255,255,.45);
  --faint:    rgba(255,255,255,.07);
  --line:     rgba(255,255,255,.08);

  --fh: 'Montserrat', sans-serif;
  --fb: 'Inter', sans-serif;
  --r: 12px; --rs: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--white); background: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── HEADER ─────────────────────────────────────────────────────────────── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
#hdr.solid {
  background: rgba(4,9,15,.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--line);
}
.hdr-wrap { width: 100%; max-width: 1360px; margin: 0 auto; display: flex; align-items: center; }

.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 34px; height: 34px;
  background: conic-gradient(from 200deg, var(--sky) 0%, var(--blue) 35%, var(--deep) 70%, var(--sky) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.logo-icon::after {
  content: '';
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid rgba(255,255,255,.15);
}
.logo-text {
  font-family: var(--fh); font-weight: 800; font-size: 18px;
  color: var(--white); letter-spacing: -.3px;
}
.logo-text em { font-style: normal; color: var(--orange); }

.hdr-nav { flex: 1; display: flex; justify-content: center; gap: 2px; }
.hdr-nav a {
  font-family: var(--fh); font-weight: 600; font-size: 13px;
  color: rgba(255,255,255,.55); text-decoration: none;
  padding: 8px 14px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.hdr-nav a:hover { color: var(--white); background: var(--faint); }

.hdr-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.hdr-phone {
  font-family: var(--fh); font-weight: 700; font-size: 14px;
  color: rgba(255,255,255,.75); text-decoration: none;
  transition: color .2s;
}
.hdr-phone:hover { color: var(--white); }
.btn-cta-hdr {
  background: var(--orange); color: var(--white);
  font-family: var(--fh); font-weight: 700; font-size: 13px;
  padding: 10px 22px; border-radius: var(--rs); border: none;
  cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
}
.btn-cta-hdr:hover { background: var(--orange-h); transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left half — text */
.hero-left {
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 64px 80px 48px;
  position: relative; z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(30,114,204,.6) 30%, rgba(56,163,232,.8) 60%, transparent);
}

/* Faint grid lines */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,114,204,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,114,204,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--fh); font-weight: 700; font-size: 10.5px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--sky);
}

.hero-h1 {
  font-family: var(--fh); font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05; letter-spacing: -2px;
  color: var(--white); margin-bottom: 24px;
}
.hero-h1 .accent { color: var(--sky); }

.hero-sub {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 440px; margin-bottom: 44px;
  font-weight: 400;
}

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

.btn-primary {
  background: var(--orange); color: var(--white);
  font-family: var(--fh); font-weight: 800; font-size: 14px;
  padding: 15px 32px; border-radius: var(--rs); border: none;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--orange-h); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230,81,0,.3);
}
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,.75);
  font-family: var(--fh); font-weight: 700; font-size: 14px;
  padding: 14px 28px; border-radius: var(--rs);
  border: 1.5px solid rgba(255,255,255,.15);
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.4); color: var(--white);
  background: rgba(255,255,255,.04);
}

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--line);
}
.hero-stat { padding: 20px 0 4px; border-right: 1px solid var(--line); padding-right: 24px; margin-right: 24px; }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hs-num {
  font-family: var(--fh); font-weight: 900;
  font-size: clamp(24px, 2.8vw, 38px);
  letter-spacing: -1px; line-height: 1;
  color: var(--white); margin-bottom: 5px;
}
.hs-num em { font-style: normal; color: var(--orange); }
.hs-txt { font-size: 11.5px; color: rgba(255,255,255,.4); font-family: var(--fh); font-weight: 600; line-height: 1.4; }

/* Right half — photo */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 8s ease;
}
.hero-photo:hover img { transform: scale(1.03); }

/* Gradient overlay on photo */
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    var(--ink) 0%,
    rgba(4,9,15,.15) 30%,
    rgba(4,9,15,.05) 60%,
    rgba(4,9,15,.35) 100%
  );
}
.hero-right::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  height: 200px;
  background: linear-gradient(to top, var(--ink), transparent);
}

/* Photo caption */
.hero-caption {
  position: absolute; bottom: 32px; right: 32px; z-index: 2;
  background: rgba(4,9,15,.75); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--rs);
  padding: 10px 16px;
  font-family: var(--fh); font-weight: 600; font-size: 12px;
  color: rgba(255,255,255,.6);
}

/* ── MARQUEE STRIP ──────────────────────────────────────────────────────── */
.marquee-s {
  background: linear-gradient(90deg,
    #2A6BAA 0%,
    #4A9ED8 28%,
    #62B4E8 52%,
    #4A9ED8 76%,
    #2A6BAA 100%
  );
  background-size: 200% 100%;
  animation: marqueeGrad 9s ease-in-out infinite;
  padding: 16px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 28px rgba(74,158,216,.18), inset 0 1px 0 rgba(255,255,255,.14);
}
@keyframes marqueeGrad {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  padding: 0 32px;
  font-family: var(--fh); font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  border-right: 1px solid rgba(255,255,255,.2);
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.5); flex-shrink: 0; }

/* ── CATALOG SECTION ─────────────────────────────────────────────────────── */
.catalog-s {
  background: var(--deep);
  padding: 100px 48px;
  position: relative; overflow: hidden;
}
/* Background gradient orb */
.catalog-s::before {
  content: '';
  position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,114,204,.08) 0%, transparent 60%);
  pointer-events: none;
}

.s-in { max-width: 1360px; margin: 0 auto; }
.s-tag {
  font-family: var(--fh); font-weight: 700; font-size: 10.5px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.s-tag::before { content: ''; width: 24px; height: 1px; background: var(--sky); }
.s-h2 {
  font-family: var(--fh); font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -1.5px; line-height: 1.1;
  color: var(--white); margin-bottom: 56px;
}
.s-h2 .dim { color: rgba(255,255,255,.3); }

/* Catalog rows — premium list style */
.cat-list { display: flex; flex-direction: column; gap: 2px; }

.cat-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 32px;
  padding: 32px 40px;
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-decoration: none; color: inherit;
  transition: background .25s, border-color .25s, transform .25s;
  position: relative; overflow: hidden;
}
.cat-row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: transparent;
  transition: background .25s;
}
.cat-row.active::before { background: var(--orange); }
.cat-row.active { cursor: pointer; }
.cat-row.active:hover {
  background: rgba(30,114,204,.06);
  border-color: rgba(30,114,204,.2);
  transform: translateX(4px);
}
.cat-row.soon { opacity: .5; cursor: default; }

.cat-num {
  font-family: var(--fh); font-weight: 900; font-size: 13px;
  letter-spacing: 2px; color: rgba(255,255,255,.2);
}
.cat-main { }
.cat-title-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.cat-name {
  font-family: var(--fh); font-weight: 800; font-size: 22px;
  letter-spacing: -.5px; color: var(--white);
}
.cat-badge {
  font-family: var(--fh); font-weight: 700; font-size: 10px;
  padding: 3px 10px; border-radius: 20px; letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-live { background: rgba(230,81,0,.2); color: var(--orange); border: 1px solid rgba(230,81,0,.3); }
.badge-soon { background: rgba(255,255,255,.06); color: rgba(255,255,255,.35); border: 1px solid var(--line); }
.cat-models {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cat-model {
  font-size: 12px; font-family: var(--fh); font-weight: 600;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  padding: 3px 10px; border-radius: 5px;
}
.cat-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3);
  transition: border-color .25s, color .25s, background .25s;
  flex-shrink: 0;
}
.cat-row.active:hover .cat-arrow {
  border-color: var(--orange); color: var(--orange);
  background: rgba(230,81,0,.1);
}

/* ── WHY SECTION ─────────────────────────────────────────────────────────── */
.why-s {
  background: var(--ink); padding: 100px 48px;
  position: relative; overflow: hidden;
}
.why-s::after {
  content: '';
  position: absolute; left: -300px; bottom: -300px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,114,204,.05) 0%, transparent 60%);
  pointer-events: none;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
.why-item {
  background: var(--ink); padding: 40px 36px;
  transition: background .25s;
}
.why-item:hover { background: var(--faint); }
.why-num {
  font-family: var(--fh); font-weight: 900;
  font-size: 48px; letter-spacing: -2px;
  color: rgba(30,114,204,.25); line-height: 1;
  margin-bottom: 16px;
  transition: color .25s;
}
.why-item:hover .why-num { color: rgba(30,114,204,.5); }
.why-title {
  font-family: var(--fh); font-weight: 800; font-size: 16px;
  color: var(--white); 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: var(--deep);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-photo-wrap {
  position: relative; overflow: hidden;
  min-height: 500px;
}
.about-photo {
  position: absolute; inset: 0;
  background: url('/Kollektiv.webp') center/cover no-repeat;
}
.about-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,22,41,.0) 40%, var(--deep) 100%);
}
.about-text {
  padding: 80px 64px 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-title {
  font-family: var(--fh); font-weight: 900;
  font-size: clamp(26px, 2.8vw, 40px);
  letter-spacing: -1px; line-height: 1.15;
  color: var(--white); margin-bottom: 20px;
}
.about-body {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,.55); margin-bottom: 40px;
}
.about-facts { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.af {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.af:last-child { border-bottom: none; }
.af-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(30,114,204,.1); border: 1px solid rgba(30,114,204,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; margin-top: 2px;
}
.af-body { }
.af-title { font-family: var(--fh); font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 3px; }
.af-sub { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.5; }
.about-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.cert {
  font-family: var(--fh); font-weight: 700; font-size: 11px;
  padding: 6px 13px; border-radius: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  color: rgba(255,255,255,.4); letter-spacing: .3px;
}

/* ── CLIENTS ─────────────────────────────────────────────────────────────── */
.clients-s {
  background: var(--navy); padding: 56px 48px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.clients-label {
  text-align: center; font-family: var(--fh); font-weight: 700;
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.25); 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: var(--fh); font-weight: 700; font-size: 13px;
  color: rgba(255,255,255,.25); white-space: nowrap; border-right: 1px solid var(--line);
  transition: color .2s;
}
.client-name:hover { color: rgba(255,255,255,.6); }

/* ── CTA SECTION ─────────────────────────────────────────────────────────── */
.cta-s {
  background: var(--ink); padding: 100px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-s::before {
  content: '';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,114,204,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-s::after {
  content: '';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,81,0,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-super {
  font-family: var(--fh); font-weight: 700; font-size: 10.5px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 20px;
}
.cta-h2 {
  font-family: var(--fh); font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -2px; line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 48px; }
.cta-row { display: flex; gap: 10px; max-width: 460px; margin: 0 auto 16px; }
.cta-inp {
  flex: 1; padding: 16px 20px;
  background: rgba(255,255,255,.05); border: 1.5px solid var(--line);
  border-radius: var(--rs); font-family: var(--fb); font-size: 15px;
  color: var(--white); outline: none; transition: border-color .2s;
}
.cta-inp::placeholder { color: rgba(255,255,255,.25); }
.cta-inp:focus { border-color: rgba(30,114,204,.4); }
.btn-submit {
  background: var(--orange); color: var(--white);
  font-family: var(--fh); font-weight: 800; font-size: 14px;
  padding: 16px 28px; border-radius: var(--rs); border: none;
  cursor: pointer; transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-submit:hover { background: var(--orange-h); transform: translateY(-1px); }
.cta-note { font-size: 12.5px; color: rgba(255,255,255,.25); margin-bottom: 48px; }
.cta-note a { color: rgba(255,255,255,.35); }
.cta-alts { display: flex; align-items: center; justify-content: center; gap: 40px; }
.cta-alt { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.alt-ico { font-size: 22px; }
.alt-info { text-align: left; }
.alt-label { font-family: var(--fh); font-weight: 700; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 2px; }
.alt-val { font-family: var(--fh); font-weight: 800; font-size: 17px; color: rgba(255,255,255,.75); transition: color .2s; }
.cta-alt:hover .alt-val { color: var(--white); }
.cta-sep { width: 1px; height: 40px; background: var(--line); }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: #020609; padding: 52px 48px 28px;
  border-top: 1px solid var(--line);
}
.foot-wrap { max-width: 1360px; margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.foot-brand-logo { font-family: var(--fh); font-weight: 900; font-size: 20px; color: var(--white); margin-bottom: 12px; letter-spacing: -.3px; }
.foot-brand-logo em { font-style: normal; color: var(--orange); }
.foot-tagline { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.65; margin-bottom: 20px; max-width: 240px; }
.foot-contact { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.35); }
.foot-contact a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.foot-contact a:hover { color: var(--white); }
.foot-col-label { font-family: var(--fh); font-weight: 700; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.foot-links { display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: 13.5px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--white); }
.foot-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,.18); }
.foot-disc { font-size: 11.5px; color: rgba(255,255,255,.13); max-width: 580px; line-height: 1.5; }

/* ── MODAL ───────────────────────────────────────────────────────────────── */
.m-ov { display:none;position:fixed;inset:0;z-index:9000;background:rgba(0,0,0,.7);backdrop-filter:blur(8px);align-items:center;justify-content:center;padding:16px; }
.m-ov.on { display:flex; }
.modal { background:#0C1A2E;border:1px solid var(--line);border-radius:16px;padding:36px;max-width:440px;width:100%;position:relative;box-shadow:0 32px 80px rgba(0,0,0,.5); }
.m-x { position:absolute;top:14px;right:16px;background:none;border:none;font-size:20px;cursor:pointer;color:rgba(255,255,255,.3);line-height:1;padding:4px;transition:color .2s; }
.m-x:hover { color:var(--white); }
.modal h3 { font-family:var(--fh);font-weight:800;font-size:20px;color:var(--white);margin-bottom:6px; }
.modal-sub { font-size:13.5px;color:rgba(255,255,255,.4);margin-bottom:24px;line-height:1.55; }
.mfield { margin-bottom:14px; }
.mfield label { display:block;font-family:var(--fh);font-weight:700;font-size:11px;color:rgba(255,255,255,.35);margin-bottom:6px;text-transform:uppercase;letter-spacing:.8px; }
.mfield input { width:100%;padding:12px 16px;background:rgba(255,255,255,.05);border:1.5px solid var(--line);border-radius:var(--rs);font-family:var(--fb);font-size:14px;color:var(--white);outline:none;transition:border-color .15s; }
.mfield input:focus { border-color:rgba(30,114,204,.4); }
.mfield input::placeholder { color:rgba(255,255,255,.2); }
.mcheck { display:flex;align-items:flex-start;gap:8px;margin-bottom:18px;font-size:12.5px;color:rgba(255,255,255,.3);line-height:1.5; }
.mcheck input { margin-top:3px;flex-shrink:0;cursor:pointer;accent-color:var(--orange); }
.mcheck a { color:rgba(255,255,255,.5); }
.btn-msubmit { width:100%;background:var(--orange);color:#fff;font-family:var(--fh);font-weight:800;font-size:15px;padding:14px;border-radius:var(--rs);border:none;cursor:pointer;transition:background .15s; }
.btn-msubmit:hover { background:var(--orange-h); }
.btn-msubmit:disabled { opacity:.6;cursor:not-allowed; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media(max-width:1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 60vw; display: block; }
  .hero-left { padding: 120px 32px 64px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 16px 0; }
  .hero-stat { border-right: none; padding-right: 0; margin-right: 0; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; margin-right: 0; }
  .about-s { grid-template-columns: 1fr; }
  .about-photo-wrap { height: 60vw; min-height: 360px; }
  .about-text { padding: 56px 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width:900px) {
  #hdr { padding: 0 24px; }
  .hdr-nav { display: none; }
  .catalog-s, .why-s, .cta-s, .clients-s { padding: 72px 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cat-row { grid-template-columns: 1fr auto; }
  .cat-num { display: none; }
  .cta-alts { flex-direction: column; gap: 24px; }
  .cta-sep { display: none; }
}
@media(max-width:600px) {
  .hero-left { padding: 100px 20px 56px; }
  .hero-h1 { letter-spacing: -1px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .why-grid { grid-template-columns: 1fr; }
  .cat-row { padding: 24px 20px; }
  .cta-row { flex-direction: column; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
  .hdr-phone { display: none; }
  footer { padding: 40px 20px 20px; }
  #hdr.solid { backdrop-filter: none; background: rgba(4,9,15,.97); transition: background .2s; }
  .m-ov { backdrop-filter: none; background: rgba(0,0,0,.82); }
  .hero-caption { backdrop-filter: none; background: rgba(4,9,15,.9); }
}
