:root {
  /* base */
  --c-bg: #f4f6fa;
  --c-bg-soft: #eaeef4;
  --c-bg-card: #ffffff;
  --c-ink: #0c1624;
  --c-ink-2: #2b3a52;
  --c-muted: #5b6a82;
  --c-line: #d8dee8;
  --c-line-soft: #e3e8ef;
  --font-sans: 'Montserrat', sans-serif;

  /* brand */
  --c-deep: #0a1828;       /* почти чёрный синий */
  --c-navy: #102a47;       /* основной */
  --c-navy-2: #1c3a5e;
  --c-navy-3: #2a4d75;

  /* accent */
  --c-blue: #4ea0d8;       /* основной голубой */
  --c-blue-2: #6cb7e6;
  --c-blue-soft: #d8eaf6;
  --c-steel: #b8c6d6;

  /* states */
  --c-success: #36a48a;
  --c-tg: #229ed9;
  --c-wa: #25d366;
  --c-max: #003a8c;
  --c-call: #1f7f5d;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(10, 24, 40, .06), 0 2px 8px rgba(10, 24, 40, .04);
  --shadow: 0 6px 18px rgba(10, 24, 40, .08), 0 18px 40px rgba(10, 24, 40, .07);
  --shadow-lg: 0 14px 36px rgba(10, 24, 40, .14), 0 38px 90px rgba(10, 24, 40, .14);

  --container: 1240px;
}


* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
img, svg { max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-sans); margin: 0; line-height: 1.18; letter-spacing: -.012em; font-weight: 700; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
	background: var(--c-deep);
	color: #b9c5d6;
	font-size: 15px;
	border-bottom: 1px solid rgba(255,255,255,.06);
	position: relative;
    margin-top: 81px;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 38px; gap: 16px;
}
.topbar__left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar__sep { opacity: .4; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(78, 160, 216, .18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(78, 160, 216, .18); }
  50% { box-shadow: 0 0 0 7px rgba(78, 160, 216, .05); }
}
.topbar__right a { color: #fff; font-weight: 600; }


@media (max-width: 760px) {
  .topbar__left {  }
  .topbar__inner { justify-content: flex-end; }
}

/* =========================================================
   HEADER
   ========================================================= */

.header > .container { max-width: 1400px; }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px; gap: 20px; flex-wrap: nowrap;
}
.header__inner .nav { flex-shrink: 1; min-width: 0; }
.header__inner .header__cta { flex-shrink: 0; }
.header__inner .logo { flex-shrink: 0; }
.logo {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--c-navy);
  flex-shrink: 0;
}
.logo__hex {
  display: inline-block;
  width: 44px; height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(10, 24, 40, .15));
}
.logo__hex svg { width: 100%; height: 100%; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-weight: 800; font-size: 19px; letter-spacing: -.012em; }
.logo__sub  {
  font-size: 10px; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: .14em; margin-top: 3px;
}

.nav {
  display: flex; gap: 28px; align-items: center;
}
.nav a {
  font-size: 14px; font-weight: 500; color: var(--c-ink-2);
  white-space: nowrap;
  transition: color .15s ease;
  position: relative;
}
.nav a:hover { color: var(--c-navy); }
.nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--c-blue); border-radius: 2px;
}

.header__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--c-navy); font-size: 15px;
  white-space: nowrap;
}
.header__phone svg { color: var(--c-blue); flex-shrink: 0; }

/*.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--c-line);
  padding: 0;
}*/

.mobile-nav__phone { color: var(--c-navy) !important; font-weight: 700 !important; }
/*.mobile-nav.is-open { display: flex; }*/

@media (max-width: 1380px) {
  .nav { gap: 16px; }
  .nav a { font-size: 13px; }
  .header__inner { gap: 14px; }
  .logo__sub { display: none; }
}
.header__btn { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
@media (max-width: 1180px) {
  .header__cta .btn { display: none; }
}
@media (max-width: 1180px) {
  .nav { gap: 14px; }
  .nav a { font-size: 12.5px; }
}
@media (max-width: 1080px) {
  .header__phone span { display: none; }
  .header__phone { padding: 8px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: .005em;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  border: 0;
}
.btn--lg { padding: 16px 28px; font-size: 16px; border-radius: 12px; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(180deg, var(--c-navy-2) 0%, var(--c-navy) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(16, 42, 71, .28);
}
.btn--primary:hover {
  background: linear-gradient(180deg, var(--c-navy-3) 0%, var(--c-navy-2) 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 42, 71, .35);
}
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); }

.raschet {
	background-color: #ffcb76;
    color: #454545;
    box-shadow: 0 4px 14px rgba(247, 168, 35, .35);
	padding: 16px 28px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: bold;
}
.about__tech {
	background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(6px);
    padding: 16px 28px;
    font-size: 16px;
    border-radius: 12px;
	text-decoration: none;
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
	margin-top: 80px;
	position: relative;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -3;
  transform: scale(1.04);
  filter: saturate(.85);
}

.hero__grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 64px 64px;
	z-index: -1;
	mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

.hero__inner {
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  padding: 92px 24px 110px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--c-blue);
  background: rgba(78, 160, 216, .12);
  border: 1px solid rgba(78, 160, 216, .35);
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow--light { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }

.hero__lede {
	font-size: 20px;
    max-width: 50%;
    color: #c5d2e3;
    margin: 2rem 0;
}

.hero__bullets svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #f7a823;
}

.hero__bullets li {
	display: flex;
    gap: 1rem;
    padding: 16px 16px 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    align-items: anchor-center;
}
.hero__b-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; color: var(--c-blue);
  letter-spacing: .1em;
}
.hero__bullets b { font-weight: 700; font-size: 15px; line-height: 1.3; }
.hero__bullets small { color: #a8b8cd; font-size: 12px; }

.hero__formwrap { position: relative; z-index: 1; }
.card-form {
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--c-ink);
  position: relative;
  overflow: hidden;
}
.card-form::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 10px;
  background: linear-gradient(90deg, var(--c-navy), var(--c-blue) 50%, var(--c-navy));
}
.card-form__head { margin-bottom: 22px; }
.card-form__head h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -.012em;
  margin-bottom: 6px;
}
.card-form__head p {
  margin: 0; color: var(--c-muted); font-size: 14px;
}

.form__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 13px; font-weight: 500; color: var(--c-muted);
  display: flex; gap: 6px; align-items: center;
}
.field span small { color: var(--c-muted); font-size: 11px; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }
.field em { color: var(--c-blue); font-style: normal; }
.field input {
  height: 46px; padding: 0 14px;
  width: 100%; min-width: 0; box-sizing: border-box;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  font: inherit; color: var(--c-ink);
  background: #f7f9fc;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--c-navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(78, 160, 216, .18);
}
.field input[type="file"] {
  height: auto; padding: 12px 14px;
}
.form__note {
  font-size: 12px; color: var(--c-muted);
  margin: 14px 0 0; text-align: center;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 56px 20px 80px; }
  .hero__content, .hero__formwrap { min-width: 0; }
  .form__grid { grid-template-columns: 1fr; }
  
}

/* =========================================================
   SECTION BASE
   ========================================================= */
.section {
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
}
.section__head {
  margin-bottom: 48px;
}
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800; letter-spacing: -.022em;
  margin-bottom: 16px;
  color: var(--c-navy);
}
.section__lede { font-size: 17px; color: var(--c-muted); max-width: 60ch; margin: 0; line-height: 1.55; }
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }

.section--tech     { background: var(--c-bg); }
.section--advantages { background: var(--c-bg); padding-top: clamp(32px, 5vw, 56px); }
.section--showcase { background: #fff; }
.section--compare  { background: var(--c-bg); }
.section--coatings { background: var(--c-deep); color: #d6e1f0; }
.section--coatings .section__title { color: #fff; }
.section--coatings .section__lede { color: #95a8c2; }
.section--coatings .eyebrow { color: var(--c-blue-2); background: rgba(78,160,216,.1); border-color: rgba(78,160,216,.3); }

.section--industries { background: var(--c-bg); }
.section--about { background: var(--c-bg); }
.section--locked { background: #fff; }

/* tech intro is just a heading, no padding bottom */
.section--tech .section__head { margin-bottom: 0; }

/* =========================================================
   ADVANTAGES
   ========================================================= */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.preim__list {
	display: grid;
    grid-template: auto / repeat(3, 3fr);
	gap: 16px;
}
.preim {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 28px 24px 24px;
	position: relative;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.preim::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--c-blue);
  transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}

.adv {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.adv::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--c-blue);
  transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}
.adv:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(16, 42, 71, .2);
}
.adv:hover::before { transform: scaleY(1); }
.adv__num {
  position: absolute; right: 18px; top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; color: var(--c-blue);
  letter-spacing: .1em;
}
.adv__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-blue-soft), #fff);
  color: var(--c-navy);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  margin-bottom: 18px;
}
.adv__icon svg { width: 26px; height: 26px; }
.adv h3 { font-size: 17px; margin-bottom: 8px; color: var(--c-ink); }
.adv p { margin: 0; color: var(--c-muted); font-size: 14.5px; line-height: 1.55; }

.adv--accent {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
  color: #fff; border-color: transparent;
}
.adv--accent .adv__icon {
  background: rgba(78, 160, 216, .18);
  border-color: rgba(78, 160, 216, .35);
  color: var(--c-blue-2);
}
.adv--accent h3 { color: #fff; }
.adv--accent p { color: #b9c5d6; }
.adv--accent .adv__num { color: var(--c-blue-2); }
.adv--accent::before { background: var(--c-blue-2); }

@media (max-width: 1080px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 991px) {
	.preim__list {
		grid-template: auto / repeat(2, 2fr);
	}
}

@media (max-width: 767px) {
	.preim__list {
		grid-template: auto / 1fr;
	}
}

@media (max-width: 540px) { .adv-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SHOWCASE / GALLERY
   ========================================================= */

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 56px;
}
.gallery__item {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-line);
  box-shadow: var(--shadow-sm);
}
.gallery__item--lg { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-blue-2);
}

/* CTA card (5%) */
.cta-card {
  margin-top: 64px;
  background:
    linear-gradient(135deg, var(--c-deep) 0%, var(--c-navy-2) 70%, var(--c-navy-3) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.cta-card__decor {
  position: absolute;
  right: -120px; top: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(78,160,216,.35), transparent 60%);
  pointer-events: none;
}
.cta-card h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 14px 0 12px;
  letter-spacing: -.02em;
}
.cta-card p { color: #b9c5d6; margin: 0; max-width: 38ch; }
.cta-card__form {
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,.06);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  position: relative; z-index: 1;
  backdrop-filter: blur(10px);
}
.cta-card__form .field span { color: rgba(255,255,255,.7); }
.cta-card__form .field input {
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.35);
}
.cta-card .btn--primary {
  background: linear-gradient(180deg, var(--c-blue), var(--c-blue));
  color: var(--c-deep);
  box-shadow: 0 8px 22px rgba(78, 160, 216, .35);
}
.cta-card .btn--primary:hover {
  background: var(--c-blue-2);
  box-shadow: 0 12px 28px rgba(78, 160, 216, .45);
}


/* =========================================================
   COMPARISON
   ========================================================= */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.cmp {
  width: 100%; border-collapse: collapse;
  min-width: 760px;
  font-size: 15px;
}
.cmp th, .cmp td {
  text-align: left;
  padding: 18px 22px;
  vertical-align: top;
  border-bottom: 1px solid var(--c-line);
}
.cmp thead th {
  background: var(--c-deep);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cmp thead th span {
  display: block;
  font-weight: 500; font-size: 11px;
  text-transform: none; letter-spacing: 0;
  color: #95a8c2; margin-top: 3px;
}
.cmp__param { width: 24%; }
.cmp__ktd { width: 38%; background: var(--c-navy) !important; }
.cmp__hdg { width: 38%; }

.cmp tbody td:first-child {
  font-weight: 600; color: var(--c-ink);
  background: #f7f9fc;
  width: 24%;
}
.cmp tbody td:first-child small { color: var(--c-muted); font-weight: 500; font-size: 12px; }
.cmp tbody td:nth-child(2) {
  background: #fbf6ec;
}
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp__highlight td:nth-child(2) { background: rgba(78, 160, 216, .18); }
.cmp b { color: var(--c-navy); }

/* =========================================================
   COATINGS (periodic-table style)
   ========================================================= */
.coatings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.coating {
  background:
    linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.01)),
    linear-gradient(180deg, #16273f, #0e1c30);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  position: relative; overflow: hidden;
}
.coating::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(78,160,216,.12), transparent 60%);
  opacity: .6; pointer-events: none;
}
.coating:hover {
  transform: translateY(-3px);
  border-color: rgba(78,160,216,.5);
  background:
    linear-gradient(135deg, rgba(78,160,216,.06), rgba(255,255,255,.02)),
    linear-gradient(180deg, #1a2c46, #11203a);
}
.coating__sym {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: 'IBM Plex Mono', monospace;
}
.coating__el {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.coating__num {
  font-size: 11px;
  color: var(--c-blue-2);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.coating h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.coating p {
	margin: 0;
	color: #95a8c2;
	font-size: 16px;
	line-height: 1.5;
}

@media (max-width: 1080px) { .coatings { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .coatings { grid-template-columns: 1fr; } }

.coatings__cta {
  margin-top: 56px;
  background:
    linear-gradient(135deg, rgba(78,160,216,.1), rgba(255,255,255,.02));
  border: 1px solid rgba(78,160,216,.3);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: center;
}
.coatings__cta h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 8px 0 0;
  color: #fff;
}
.coatings__cta .eyebrow {
  margin-bottom: 0;
  color: var(--c-blue-2);
  background: rgba(78,160,216,.12);
  border-color: rgba(78,160,216,.3);
}
.inline-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}
.inline-form input[type="text"],
.inline-form input[type="tel"] {
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
}
.inline-form input::placeholder { color: rgba(255,255,255,.55); }
.inline-form input:focus {
  outline: none;
  border-color: var(--c-blue);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 4px rgba(78, 160, 216, .18);
}
.inline-form .btn--primary {
  background: var(--c-blue);
  color: var(--c-deep);
}
.inline-form .btn--primary:hover { background: var(--c-blue-2); }


/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries {
	display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 1rem;
}
.industry {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.industry--wide { grid-column: 1 / -1; grid-template-columns: 0.55fr 1.45fr; }
.industry:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(16, 42, 71, .25);
}
.industry__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-line);
}
.industry__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,42,71,.25), transparent 60%);
}
.industry__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.industry:hover .industry__media img { transform: scale(1.06); }
.industry__body {
  padding: 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.industry__body h3 {
  font-size: 20px; margin-bottom: 8px;
  color: var(--c-navy);
}
.industry__body p { margin: 0; color: var(--c-muted); font-size: 15px; line-height: 1.55; }



/* =========================================================
   ABOUT
   ========================================================= */

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.about__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__media-tag {
  position: absolute; left: 20px; bottom: 20px;
  padding: 8px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--c-blue);
  /*background: rgba(10,24,40,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);*/
  border-radius: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}


.about__list li {
  display: flex; gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  font-size: 15px; line-height: 1.5;
  color: var(--c-ink-2);
}
.about__list svg {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--c-blue);
  background: var(--c-blue-soft);
  border-radius: 50%;
  padding: 3px;
  margin-top: 2px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.about__stats > div {
  display: flex; flex-direction: column; gap: 4px;
}
.about__stats b {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -.012em;
}
.about__stats span {
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about__media { aspect-ratio: 4/3; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   LOCKED
   ========================================================= */
.locked-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.locked {
  background: var(--c-bg);
  border: 1px dashed #c4cdd9;
  border-radius: var(--radius);
  padding: 28px;
}
.locked__chip {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(16, 42, 71, .08);
  color: var(--c-navy);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.locked h3 { font-size: 18px; margin-bottom: 8px; color: var(--c-navy); }
.locked p { margin: 0; color: var(--c-muted); font-size: 14px; }

/* =========================================================
   FOOTER
   ========================================================= */

.logo--light { color: #fff; margin-bottom: 18px; }
.logo--light .logo__sub { color: #95a8c2; }

.footer__col h4 {
  color: #fff; font-size: 13px;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 18px;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; padding: 0; }
.footer__list a {color: #b9c5d6; transition: color .15s ease; }
.footer__list a:hover { color: #fff; }
.footer__list--icons a { display: inline-flex; align-items: center; gap: 10px; }
.footer__list--icons svg { width: 18px; height: 18px; }
.footer__locked { opacity: .55; font-style: italic; }

.msg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 22px;
  border-radius: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .03em;
}
.msg--max { background: var(--c-max); color: #fff; }

@media (max-width: 560px) { .footer__inner { grid-template-columns: 1fr; padding: 48px 24px 24px; } }

/* =========================================================
   STICKY BOTTOM BAR
   ========================================================= */
.sticky-bar {
  position: fixed;
  height: 80px;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgb(75 159 255 / 30%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.sticky-bar__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 8px;
  font-weight: 600; font-size: 13.5px;
  color: #fff;
  transition: background .15s ease;
  border-right: 1px solid rgba(255,255,255,.06);
  letter-spacing: .01em;
  text-decoration: none;
}
.sticky-bar__btn a {
	text-decoration: none;
}

.sticky-bar__btn:last-child { border-right: 0; }
.sticky-bar__btn:hover { background: rgba(255,255,255,.06); }

.sticky-bar__icon {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 7px;
}
.sticky-bar__icon svg { width: 30px; height: 30px; }
.sticky-bar__icon b { font-size: 11px; font-weight: 800; letter-spacing: .04em; }

.sticky-bar__btn--max  .sticky-bar__icon { background: var(--c-max); }
.sticky-bar__btn--tg   .sticky-bar__icon { background: var(--c-tg); }
.sticky-bar__btn--wa   .sticky-bar__icon { background: var(--c-wa); }
.sticky-bar__btn--call .sticky-bar__icon { background: var(--c-call); }

@media (max-width: 540px) {
  .sticky-bar__btn { padding: 12px 4px; font-size: 12px; gap: 6px; }
  .sticky-bar__icon { width: 22px; height: 22px; }
}
@media (max-width: 380px) {
  .sticky-bar__label { display: none; }
}
