:root {
  --bg: #07111f;
  --bg-soft: #0d1930;
  --surface: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.12);
  --text: #f5f8ff;
  --muted: #c6d3e7;
  --accent: #7df9cc;
  --accent-strong: #56e1b7;
  --shadow: 0 30px 80px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(40,90,140,0.32), transparent 34%),
    radial-gradient(circle at top right, rgba(70,180,160,0.12), transparent 22%),
    linear-gradient(180deg, #07111f 0%, #081626 42%, #0a1c2e 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, 1180px); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(6,14,26,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 86px; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 42px; width: auto; }
.brand-logo-light { display: block; }
.brand-logo-dark { display: none; }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: rgba(255,255,255,0.06); color: #fff;
  width: 46px; height: 46px; border-radius: 14px; font-size: 24px; align-items: center; justify-content: center;
}
.nav { display: flex; align-items: center; gap: 18px; }
.nav a {
  font-weight: 700; color: #f7fbff; opacity: 0.96;
  padding: 11px 13px; border-radius: 999px; font-size: 14px;
}
.nav a:hover { background: rgba(255,255,255,0.06); }
.nav-ghost {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.hero { padding: 34px 0 18px; }
.hero-layout {
  display: grid; grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
  gap: 34px; align-items: stretch;
}
.hero-copy { padding: 18px 0 14px; }
.hero-copy { max-width: 520px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800;
}
.hero-copy h1 {
  margin: 0; font-size: clamp(2.65rem, 4.2vw, 4.15rem); line-height: 0.98; letter-spacing: -0.045em;
  max-width: 8.2ch;
}
.hero-copy .lead {
  max-width: 52ch; margin: 22px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.8;
}
.hero-copy .lead a { color: var(--accent); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 24px; border-radius: 18px; font-weight: 800; transition: .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #9df6da, #7df9cc); color: #062033; box-shadow: 0 20px 40px rgba(125,249,204,0.18); }
.btn-secondary { background: rgba(255,255,255,0.06); border: 1px solid var(--line); }
.btn.small { min-height: 48px; padding: 0 18px; border-radius: 14px; }
.hero-partners { margin-top: 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.hero-partners img {
  width: 100%; height: 84px; object-fit: contain; object-position: center; border-radius: 18px; padding: 8px 10px;
  background: #fff; border: 1px solid rgba(255,255,255,0.15);
}
.hero-showcase {
  position: relative; min-height: 700px; border-radius: 30px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}
.carousel { position: relative; height: 100%; }
.slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none; transform: scale(.99); transition: .55s ease;
  padding: 34px;
}
.slide.is-active { opacity: 1; pointer-events: auto; transform: scale(1); }
.slide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  grid-template-areas:
    "heading heading"
    "description media"
    "footer footer";
  gap: 18px 32px;
  min-height: 100%;
  padding: 8px 12px 64px;
  align-content: start;
}
.slide-heading {
  grid-area: heading;
  padding: 0;
  border: 0;
}
.slide-kicker {
  display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(125,249,204,.14);
  color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
}
.slide h2 {
  font-size: clamp(1.95rem, 2.15vw, 2.45rem);
  margin: 16px 0 0;
  line-height: 1.06;
  max-width: none;
  width: 100%;
  white-space: nowrap;
  letter-spacing: -0.04em;
}
.slide-description {
  grid-area: description;
  display: flex;
  align-items: flex-start;
  padding: 6px 0 0;
  border: 0;
}
.slide-description p {
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
  font-size: 0.98rem;
  max-width: 31ch;
}
.slide-media {
  grid-area: media;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: 286px;
  padding: 0;
  overflow: visible;
}
.slide-media img {
  width: 100%;
  max-width: 430px;
  max-height: 300px;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.34));
}
.slide-footer {
  grid-area: footer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border: 0;
}
.spec-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 0;
  overflow-x: auto;
  padding-bottom: 4px;
  min-width: 0;
}
.spec-chips span, .pill, .tag-row span {
  display: inline-flex; align-items: center; border-radius: 999px; padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: #f4f8ff;
  font-size: 12.5px; font-weight: 700; white-space: nowrap;
}
.text-link { display: inline-flex; flex: 0 0 auto; margin: 0; color: var(--accent); font-weight: 800; font-size: 0.98rem; }
.carousel-dots {
  position: absolute; left: 34px; bottom: 22px; z-index: 2; display: flex; gap: 10px;
}
.dot { width: 12px; height: 12px; border: 0; border-radius: 50%; background: rgba(255,255,255,.26); cursor: pointer; }
.dot.is-active { background: var(--accent); }
.trust-band { padding: 18px 0 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
.trust-grid > div, .service-card, .content-box, .product-card, .contact-card, .map-card {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow);
}
.trust-grid > div { padding: 20px; }
.trust-grid strong { display: block; font-size: 1rem; }
.trust-grid span { display: block; margin-top: 8px; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.section { padding: 84px 0; }
.section-head { margin-bottom: 26px; }
.section-head.narrow { max-width: 860px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.section-head p { color: var(--muted); line-height: 1.8; max-width: 74ch; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-card { overflow: hidden; }
.product-visual {
  min-height: 300px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  display: flex; align-items: center; justify-content: center; padding: 26px;
}
.product-visual img { max-height: 280px; object-fit: contain; filter: drop-shadow(0 20px 44px rgba(0,0,0,.3)); }
.product-body { padding: 24px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.pill { color: #fff; }
.pill-accent { background: rgba(125,249,204,.16); color: var(--accent); }
.product-body h3 { margin: 8px 0 10px; font-size: 1.6rem; }
.product-body p { color: var(--muted); line-height: 1.8; margin: 0; }
.spec-inline { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.spec-inline span, .spec-table div {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 12px 14px;
}
.spec-inline strong { display: block; color: var(--accent); font-size: .72rem; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .12em; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.spec-table { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.spec-table span { display: block; color: var(--muted); font-size: .9rem; margin-bottom: 5px; }
.spec-table strong { display: block; font-size: .95rem; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)); }
.split-grid, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.content-box { padding: 30px; }
.glass { background: rgba(255,255,255,0.06); }
.accent-box { background: linear-gradient(135deg, rgba(92,188,255,.15), rgba(125,249,204,.1)); }
.content-box h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.content-box h3 { margin: 0 0 12px; font-size: 1.8rem; }
.content-box p { color: var(--muted); line-height: 1.85; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 26px; color: #eef4ff; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.service-card { padding: 26px; }
.service-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.contact-card, .map-card { padding: 28px; }
.contact-lines { display: grid; gap: 12px; margin: 22px 0 20px; }
.contact-lines div { display: grid; gap: 4px; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.04); }
.contact-lines strong { color: var(--accent); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.form-card { display: grid; gap: 14px; }
.form-row { display: grid; gap: 14px; }
.form-row.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.form-card label { display: grid; gap: 8px; }
.form-card span { color: var(--muted); font-size: .94rem; }
input, textarea {
  width: 100%; border-radius: 18px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04); color: #fff; padding: 14px 16px; font: inherit;
}
textarea { resize: vertical; min-height: 120px; }
input:focus, textarea:focus { outline: 2px solid rgba(125,249,204,.2); border-color: rgba(125,249,204,.44); }
.consent { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 12px; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 3px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.map-card { padding: 0; overflow: hidden; min-height: 100%; }
.map-card iframe { width: 100%; height: 100%; min-height: 680px; border: 0; }
.flash { margin: 18px 0 0; padding: 14px 16px; border-radius: 18px; font-weight: 700; }
.flash-success { background: rgba(125,249,204,.14); color: #d8ffef; }
.flash-error { background: rgba(255,118,118,.12); color: #ffd5d5; }
@media (min-width: 1400px) {
  .container { width: min(1240px, calc(100% - 48px)); }
  .hero-copy h1 { font-size: clamp(2.8rem, 4vw, 4.35rem); }
  .slide h2 { font-size: clamp(2.1rem, 2vw, 2.6rem); }
}
@media (max-width: 1180px) {
  .hero-copy h1 { font-size: clamp(2.55rem, 4.6vw, 3.8rem); max-width: 8.6ch; }
  .slide h2 { font-size: clamp(1.85rem, 2.3vw, 2.25rem); max-width: none; white-space: nowrap; }
  .slide-description p { max-width: 29ch; }
}
@media (max-width: 1080px) {
  .hero-layout, .split-grid, .contact-grid, .trust-grid, .service-grid, .product-grid { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 780px; }
  .slide { padding: 24px; }
  .slide-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "description"
      "media"
      "footer";
    gap: 16px;
    padding: 18px 4px 74px;
  }
  .slide-heading, .slide-description, .slide-footer { border: 0; padding: 0; }
  .slide h2 { white-space: normal; }
  .slide-description { padding-right: 0; }
  .slide-description p { max-width: none; }
  .slide-footer { align-items: flex-start; flex-direction: column; }
  .spec-chips { flex-wrap: wrap; overflow: visible; }
  .slide-media { justify-content: center; min-height: 0; padding: 0 0 8px; }
  .slide-media img { max-width: min(100%, 520px); object-position: center; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; padding: 18px;
    display: none; flex-direction: column; align-items: stretch; gap: 12px;
    background: rgba(7,17,31,.95); border: 1px solid var(--line); border-radius: 22px;
  }
  .nav.is-open { display: flex; }
  .hero-copy h1 { max-width: none; font-size: clamp(2.3rem, 8vw, 3.4rem); }
  .hero-partners { grid-template-columns: 1fr; }
  .spec-inline, .spec-table, .form-row.two { grid-template-columns: 1fr; }
  .slide h2 { font-size: 2.2rem; max-width: none; }
  .slide-media img { max-height: 260px; }
  .map-card iframe { min-height: 420px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 20px, 1180px); }
  .site-header { position: sticky; }
  .brand-logo { height: 28px; }
  .hero { padding-top: 26px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-showcase { min-height: 780px; }
  .slide { padding: 16px; }
  .slide-layout { padding: 8px 0 74px; }
  .carousel-dots { left: 18px; bottom: 16px; }
  .section { padding: 64px 0; }
  .product-visual { min-height: 230px; }
  .product-visual img { max-height: 220px; }
  .contact-card, .content-box, .service-card, .product-body { padding: 20px; }
}
