:root {
  --bg: #06111f;
  --bg-soft: #0b1d32;
  --surface: rgba(7, 22, 39, 0.88);
  --surface-2: rgba(10, 28, 47, 0.95);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #ecf3ff;
  --muted: #9fb2c8;
  --primary: #ff8d22;
  --primary-2: #ff6a00;
  --link: #8fd6ff;
  --success: #49d6a3;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(31, 122, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 106, 0, 0.14), transparent 20%),
    linear-gradient(180deg, #020816, #06111f 42%, #07182c 100%);
  line-height: 1.65;
}
a { color: var(--link); text-decoration: none; }
a:hover { color: #c2edff; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-tight { padding: 52px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: 0.86rem;
  color: #d4e9ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section h2, .article h1, .page-hero h1 {
  margin: 0 0 14px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section h2, .page-hero h1 { font-size: clamp(2rem, 4vw, 3.35rem); }
.section p.lead, .page-hero p.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(2, 10, 21, 0.86);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}
.brand img { width: 46px; height: auto; object-fit: contain; }
.brand-text { display: grid; gap: 0; line-height: 1.05; }
.brand strong { font-size: 1.02rem; letter-spacing: 0.01em; }
.brand small {
  display: block;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: white;
  border-radius: 12px;
  padding: 10px 14px;
  flex: 0 0 auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav a {
  color: #d7e4f5;
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
  white-space: nowrap;
  font-size: 0.98rem;
}
.nav a:hover, .nav a[aria-current="page"] {
  background: rgba(255,255,255,0.06);
  color: white;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}
.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.social-link:hover { transform: translateY(-2px); opacity: 0.96; }
.social-link svg { width: 22px; height: 22px; }
.social-fb { background: #1877f2; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.28);
}
.btn-secondary {
  color: white;
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
}
.btn-quote {
  width: 134px;
  min-height: 58px;
  padding: 12px 14px;
  flex-direction: column;
  gap: 2px;
  line-height: 1.08;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 46px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 20, 0.84), rgba(4, 10, 20, 0.4));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 18px 0;
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  margin: 0 0 18px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.hero-copy h1 .accent { color: var(--primary); display: block; }
.hero-copy p {
  max-width: 670px;
  color: #cfdbeb;
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.stat-card, .glass-card, .card, .info-card, .article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.stat-card { padding: 18px; }
.stat-card strong {
  display: block;
  font-size: 1.22rem;
  margin-bottom: 6px;
}
.hero-stats-wrap { margin-top: 26px; position: relative; z-index: 1; }
.hero-stats-wide { gap: 22px; margin-top: 0; }
.hero-feature-card h3 { margin-top: 0; }
.hero-feature-card p { margin-bottom: 0; }
.hero-visual { position: relative; min-height: 500px; }
.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badges {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-badge {
  padding: 14px;
  border-radius: 16px;
  background: rgba(4, 12, 22, 0.74);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.hero-badge strong { display: block; margin-bottom: 4px; }
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 22px;
  align-items: stretch;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .info-card { padding: 28px; }
.card h3, .info-card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.3rem; }
.card p, .info-card p { color: var(--muted); }
.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,141,34,0.2), rgba(26,117,255,0.22));
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.split-section {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 26px;
  align-items: stretch;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #dce6f3;
}
.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(73,214,163,0.14);
  color: var(--success);
  font-weight: 800;
}
.message-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.message-quote {
  margin: 0;
  font-size: 1.14rem;
  color: #eef4ff;
  font-style: italic;
}
.message-note {
  margin-top: 18px;
  color: #d0dceb;
}
.product-card {
  display: grid;
  grid-template-rows: auto auto minmax(118px, auto) auto auto;
  gap: 14px;
  height: 100%;
}
.product-card h3 { margin-bottom: 0; }
.product-card p {
  margin: 0;
  color: var(--muted);
  min-height: 118px;
}
.product-card .pill-row, .meta-row, .tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill, .tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: #d2ddec;
  font-size: 0.86rem;
}
.news-list {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.news-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,141,34,0.35);
  box-shadow: 0 24px 50px rgba(0,0,0,0.42);
}
.news-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.news-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.news-card h3 { margin: 0; font-size: 1.24rem; }
.news-card p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .cta-inline {
  margin-top: auto;
  color: #fff;
  font-weight: 700;
}
.meta-row { font-size: 0.92rem; color: #d0d9e6; }
.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
}
.forms-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 24px;
}
.form-panel { padding: 28px; }
.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  border-radius: 14px;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #9db0c5; }
.form-note, .muted { color: var(--muted); }
.notice {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dce7f4;
}
.cta-band {
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.project-links {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.project-links a {
  display: block;
  padding: 20px;
  color: white;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: .2s ease;
}
.project-links a:hover { transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(2, 8, 18, 0.92);
}
.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.95fr;
  padding: 52px 0 24px;
}
.footer-grid h3, .footer-grid h4 { margin-top: 0; }
.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer-bottom {
  padding: 18px 0 36px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}
.page-hero { padding: 64px 0 24px; }
.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: var(--muted);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}
.article {
  padding: 28px;
}
.article h2 {
  font-size: 1.8rem;
  margin-top: 34px;
  margin-bottom: 10px;
}
.article .lead {
  font-size: 1.12rem;
  color: #d6e4f2;
}
.article img.hero-inline {
  margin: 22px 0;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.article aside, .sidebar-box {
  padding: 24px;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.article p, .article li { color: #cfdae9; }
.article ul { padding-left: 18px; }
.chat-card p:last-child { margin-bottom: 0; }
.kicker {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
code.inline-code {
  background: rgba(255,255,255,0.07);
  padding: 3px 7px;
  border-radius: 8px;
}
hr.separator {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 26px 0;
}
@media (max-width: 1240px) {
  .nav a { padding: 10px 10px; font-size: 0.95rem; }
  .brand strong { font-size: 0.98rem; }
  .btn-quote { width: 126px; }
}
@media (max-width: 1120px) {
  .hero-grid, .split-section, .forms-grid, .footer-grid, .article-layout { grid-template-columns: 1fr; }
  .news-list, .grid-3, .grid-4, .project-links, .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { min-height: 360px; }
  .article aside, .sidebar-box { position: static; }
}
@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; order: 3; margin-left: auto; }
  .nav {
    position: absolute;
    inset: 84px 16px auto 16px;
    display: none;
    padding: 12px;
    border-radius: 20px;
    background: rgba(4, 12, 24, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    order: 5;
  }
  .nav.open { display: flex; }
  .nav-wrap { flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
}
@media (max-width: 780px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero { padding-top: 36px; }
  .hero-stats, .hero-badges, .news-list, .grid-3, .grid-4, .project-links, .form-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(2.35rem, 10vw, 4rem); }
  .header-actions { gap: 8px; }
  .btn-quote { width: 116px; min-height: 52px; font-size: 0.95rem; }
  .social-link { width: 40px; height: 40px; }
  .product-card { grid-template-rows: auto auto auto auto auto; }
  .product-card p { min-height: 0; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}


.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: #dce6f3;
}
.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
  flex: 0 0 18px;
}
.checkbox-field span { display: inline; }
.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.notice-success {
  background: rgba(73,214,163,0.12);
  border-color: rgba(73,214,163,0.3);
  color: #e8fff8;
}
.notice-error {
  background: rgba(255,106,0,0.12);
  border-color: rgba(255,106,0,0.28);
  color: #fff1e6;
}
.btn.is-loading {
  opacity: 0.84;
  pointer-events: none;
}
.form-panel h2 {
  margin-top: 0;
}
.contact-forms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1120px) {
  .contact-forms-grid { grid-template-columns: 1fr; }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-banner__content {
  width: min(920px, 100%);
  background: rgba(5, 18, 32, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  pointer-events: auto;
}
.cookie-banner__title {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}
.cookie-banner__text {
  margin: 0;
  color: #d8e5f6;
}
.cookie-banner__actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}
@media (max-width: 700px) {
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__actions .btn {
    width: 100%;
  }
}
