:root {
  --bg: #0b1220;
  --panel: #121c31;
  --text: #edf2ff;
  --muted: #a8b3cf;
  --accent: #3b82f6;
  --accent-2: #22c55e;
  --line: #24304a;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f6f8fc;
  color: #162033;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, var(--bg), #16274a);
  color: var(--text);
  padding: 1.2rem 1.2rem 4rem;
}

.nav {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { font-weight: 700; font-size: 1.2rem; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  margin-left: 1rem;
  opacity: 0.9;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.value-points span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(147,197,253,0.35);
  color: #eef6ff;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.subtext {
  max-width: 760px;
  color: #d6def3;
  font-size: 1.05rem;
}

.cta-row { margin-top: 1.5rem; }
.hero-graphic {
  display: block;
  width: min(100%, 980px);
  margin-top: 2rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(2, 8, 23, 0.25);
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 0.8rem;
  border: none;
  cursor: pointer;
}
.btn.primary { background: var(--accent); color: white; }
.btn.secondary { background: transparent; color: white; border: 1px solid #7ea7ff; }

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.2rem;
}

.section.alt { background: #eef3fb; border-top: 1px solid #dde6f4; border-bottom: 1px solid #dde6f4; }
.premium-strip { background: linear-gradient(180deg, #ffffff, #f8fbff); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: white;
  border: 1px solid #e3e9f4;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.05);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem 1.2rem;
  padding-left: 1rem;
}

.contact {
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}

.contact-panel a { color: var(--accent); }

.lead-form {
  display: block;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  border: 1px solid #d4dced;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(59,130,246,0.2);
  border-color: var(--accent);
}

.form-status {
  margin-top: 0.85rem;
  color: #1d4ed8;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contact-layout,
  .field-row {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 0.8rem;
  }
}
