:root {
  --bg: #08131a;
  --surface: #0f1f29;
  --surface-soft: #132835;
  --text: #f5f8fb;
  --muted: #b5c4cf;
  --line: rgba(255,255,255,0.1);
  --brand: #24a8cc;
  --brand-strong: #117a96;
  --accent: #ffd58f;
  --shadow: 0 24px 80px rgba(0,0,0,0.24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #061018, #0b1820 30%, #0d1720 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 16, 24, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 84px;
}
.brand-wrap { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), #7be0ff);
  color: #062331;
}
.brand { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.05rem; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), #56d8ff);
  color: #06202b; font-weight: 800;
  box-shadow: 0 14px 40px rgba(36,168,204,0.28);
}
.button-sm { min-height: 40px; padding: 0 18px; }
.button-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: stretch;
}
.hero-media, .hero-overlay {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.38) saturate(1.05);
}
.hero-overlay {
  background:
    radial-gradient(circle at top left, rgba(36,168,204,0.28), transparent 40%),
    linear-gradient(115deg, rgba(4,13,18,0.82) 25%, rgba(4,13,18,0.42) 60%, rgba(4,13,18,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 90px 0 70px;
}
.hero h1, .section h2, .footer h2 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  line-height: 1.02;
}
.hero h1 { font-size: clamp(2.8rem, 5vw, 5.5rem); max-width: 12ch; }
.lead { color: var(--muted); font-size: 1.12rem; line-height: 1.75; max-width: 680px; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.hero-points {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px; color: #d8e5ec;
}
.hero-points li::before {
  content: "•"; color: var(--accent); margin-right: 10px;
}
.glass-card {
  background: rgba(10, 27, 35, 0.72);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding: 28px;
  border-radius: 28px;
}
.mini-label {
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; font-weight: 700; margin: 0 0 14px;
}
.glass-card h2 { font-size: 1.8rem; margin-bottom: 20px; }
.stat-grid { display: grid; gap: 18px; }
.stat-grid strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.stat-grid span { color: var(--muted); line-height: 1.6; }
.section { padding: 96px 0; }
.section-tight { padding-top: 82px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2, .section-dark h2, .footer h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.section-heading p:last-child { color: var(--muted); line-height: 1.7; }
.solutions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}
.feature-card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #fff;
}
.feature-card.accent img { object-fit: contain; padding: 14px; }
.feature-card div { padding: 24px; }
.feature-card h3, .benefit-list h3 { margin: 0 0 10px; font-family: 'Manrope', sans-serif; font-size: 1.35rem; }
.feature-card p, .benefit-list p, .cta-band p, .check-list { margin: 0; color: var(--muted); line-height: 1.72; }
.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.two-column { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; }
.benefit-list { display: grid; gap: 22px; margin-top: 24px; }
.panel {
  background: linear-gradient(180deg, rgba(18,42,53,0.9), rgba(10,24,31,0.96));
  border-radius: 28px; padding: 28px; border: 1px solid var(--line);
}
.check-list {
  padding-left: 20px; display: grid; gap: 12px; margin: 0 0 22px;
}
.panel-image {
  width: 100%; max-height: 280px; object-fit: contain; background: rgba(255,255,255,0.02);
  border-radius: 18px; padding: 14px;
}
.testimonials { padding-top: 72px; }
.cta-band {
  background: linear-gradient(135deg, rgba(36,168,204,0.16), rgba(255,213,143,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 34px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.footer {
  padding: 34px 0 56px;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 24px; align-items: end;
  padding-top: 24px;
}
.contact-card {
  display: grid; gap: 10px; padding: 20px 24px; border-radius: 22px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.contact-card a { color: var(--muted); }
@media (max-width: 980px) {
  .nav { min-height: auto; padding: 18px 0; flex-direction: column; align-items: flex-start; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
  .hero-content, .solutions-grid, .two-column, .footer-grid, .cta-band { grid-template-columns: 1fr; display: grid; }
  .hero { min-height: auto; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero-content { padding: 64px 0 48px; }
  .button, .button-sm { width: 100%; }
  .nav-links { width: 100%; }
}
