/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, -apple-system, sans-serif;
}

body {
  min-height: 100vh;
  color: white;
  background:
    radial-gradient(circle at 20% 15%, rgba(20,60,120,0.4), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(0,120,255,0.25), transparent 45%),
    linear-gradient(180deg, #0b1f3a 0%, #07182e 60%, #061425 100%);
  background-attachment: fixed;
}

/* ================= NAV ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.logo-icon {
  background: #1a52d4;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.logo-sub {
  font-size: 10px;
  color: #64748b;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover { color: white; }
.nav-links a.active { color: white; background: rgba(255,255,255,0.07); }

.nav-cta {
  background: #3f6df6;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Hamburger (hidden on desktop) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(7,24,46,0.98);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: white; background: rgba(255,255,255,0.07); }

.mobile-menu .mobile-cta {
  background: #3f6df6;
  color: white;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}

/* ================= HERO ================= */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px 90px;
  gap: 80px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -50px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,160,255,0.35), transparent 60%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.hero-left, .hero-right { position: relative; z-index: 1; }
.hero-left { max-width: 600px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,215,0,0.4);
  background: rgba(255,215,0,0.04);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #c4af6e;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: gold;
  border-radius: 50%;
}

.hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.07;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  display: block;
  background: linear-gradient(90deg, #4c6fff, #6bd0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 16px;
  color: #9db2d2;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.btn-primary {
  background: #3f6df6;
  padding: 14px 26px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.22);
}

.hero-stats {
  display: flex;
  gap: 56px;
}

.hero-stats h3 { font-size: 26px; font-weight: 800; }
.hero-stats span { font-size: 13px; color: #64748b; display: block; margin-top: 2px; }

/* ================= HERO CARDS ================= */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.card {
  width: 350px;
  padding: 24px 26px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.card h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #475569;
  text-transform: uppercase;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.red-icon   { background: rgba(239,68,68,0.12); }
.green-icon { background: rgba(70,204,113,0.12); }

.card-amount {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.per-mo { font-size: 16px; font-weight: 400; color: #64748b; }
.card-note { font-size: 12px; color: #475569; }

.highlight {
  border: 1px solid rgba(70,204,113,0.5);
  box-shadow:
    0 0 50px rgba(70,204,113,0.2),
    0 30px 80px rgba(0,0,0,0.5);
}

.green { color: #46cc71; font-size: 13px; font-weight: 700; margin-bottom: 4px; }

.arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(70,204,113,0.1);
  border: 1px solid rgba(70,204,113,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.hero-note {
  font-size: 11.5px;
  color: #334155;
  font-style: italic;
  margin-top: 10px;
  text-align: right;
  width: 350px;
}

/* ================= SHARED SECTIONS ================= */
.section-wrap {
  padding: 90px 80px;
}

.section-wrap.darker {
  background: rgba(0,0,0,0.2);
}

.sec-inner { max-width: 1100px; margin: 0 auto; }

.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4c6fff;
  text-align: center;
  margin-bottom: 14px;
}

.sec-label.left { text-align: left; }

.section-wrap h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 16px;
  color: #64748b;
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.75;
}

/* ================= CORE SERVICES ================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.feature-card {
  padding: 36px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.blue-bg { background: rgba(76,111,255,0.12); }

.feature-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }

.feature-card > p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 20px;
}

.feature-card ul {
  list-style: none;
  margin-bottom: 26px;
}

.feature-card ul li {
  font-size: 14px;
  color: #94a3b8;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4c6fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.link-blue {
  color: #4c6fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* ================= OUR EDGE ================= */
.edge-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.edge-header h2 { text-align: left; }

.edge-sub {
  max-width: 300px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
  padding-top: 44px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.edge-card {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.edge-card h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; }
.edge-card p  { font-size: 13px; color: #64748b; line-height: 1.65; }

/* ================= PROCESS ================= */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 52px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-line {
  flex: 0 0 auto;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 28px;
}

.step-box {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 14px;
}

.step-num { font-size: 9px; color: #334155; font-weight: 700; }
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; padding: 0 6px; }
.step-desc  { font-size: 13px; color: #64748b; line-height: 1.65; padding: 0 6px; }

.process-cta { text-align: center; }
.process-cta .btn-primary { display: inline-flex; font-size: 15px; padding: 16px 32px; }
.cta-note { font-size: 13px; color: #334155; margin-top: 12px; }

/* ================= WHO WE SERVE ================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.ind-card {
  padding: 22px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.ind-card span { font-size: 13px; font-weight: 600; color: #cbd5e1; line-height: 1.3; }

.enterprise-banner {
  padding: 28px 36px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.enterprise-banner h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.enterprise-banner p  { font-size: 14px; color: #64748b; line-height: 1.7; max-width: 520px; }

.btn-ghost {
  background: transparent;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= GLOBAL CONTENT WIDTH ================= */
.navbar,
.hero,
.section-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero,
.whats-included,
.no-hardware,
.footer-inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  padding-left: 18px;
  padding-right: 18px;
}

/* ================= ENTERPRISE CAPABILITIES ================= */
.ent-caps {
  padding: 120px 0 140px;
}

.ent-caps-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
}

.ent-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.ent-cap-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 42px;
  transition: 0.2s ease;
}

.ent-cap-card:hover {
  border-color: rgba(124,131,255,0.35);
  transform: translateY(-4px);
}

.ent-cap-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(124,131,255,0.12);
  border: 1px solid rgba(124,131,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.ent-cap-icon svg {
  width: 20px;
  height: 20px;
  stroke: #8b93ff;
  fill: none;
  stroke-width: 2;
}

.ent-cap-card h4 { margin-bottom: 14px; }
.ent-cap-card p  { color: #94a3b8; line-height: 1.8; }

/* ================= WHO SECTION ================= */
.ent-who {
  padding-bottom: 160px;
}

.ent-who-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 80px 90px;
}

.ent-who-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 60px;
  text-align: center;
}

.ent-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 80px;
  margin-bottom: 60px;
}

.ent-who-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #94a3b8;
}

.ent-who-item svg {
  width: 16px;
  height: 16px;
  stroke: #8b93ff;
  fill: none;
  stroke-width: 2;
}

.ent-who-cta { text-align: center; }

/* ================= FAQ ================= */
.faq-section {
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-sub {
  color: #94a3b8;
  margin-top: 15px;
  font-size: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s ease;
}

.faq-card:hover {
  border-color: rgba(76,111,255,0.5);
  transform: translateY(-4px);
}

.faq-card h4 { font-size: 18px; margin-bottom: 12px; font-weight: 600; }
.faq-card p  { color: #94a3b8; line-height: 1.7; font-size: 14px; }

/* =================================================
   MOBILE — 900px and below
   ================================================= */
@media (max-width: 900px) {

  /* ── NAV ── */
  .navbar {
    padding: 16px 20px;
    position: relative;
  }

  .nav-links { display: none; }

  .nav-cta { display: none; } /* hidden — replaced by mobile menu CTA */

  .hamburger { display: flex; }

  /* ── HERO ── */
  .hero {
    flex-direction: column;
    padding: 60px 20px 50px;
    gap: 48px;
    text-align: center;
  }

  .hero::after { display: none; } /* kill the large glow blob that causes overflow */

  .hero-left { max-width: 100%; }

  .hero h1 {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .hero p { font-size: 15px; margin-bottom: 28px; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stats h3 { font-size: 22px; }

  /* ── HERO CARDS ── */
  .hero-right { width: 100%; }

  .card {
    width: 100%;
    max-width: 400px;
  }

  .hero-note {
    width: 100%;
    text-align: center;
    max-width: 400px;
  }

  /* ── SECTIONS ── */
  .section-wrap {
    padding: 60px 20px;
  }

  .section-wrap h2 {
    font-size: 28px;
    letter-spacing: -0.3px;
  }

  .sec-sub {
    font-size: 14px;
    margin-bottom: 36px;
  }

  /* ── CORE SERVICES ── */
  .two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  /* ── OUR EDGE ── */
  .edge-header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .edge-header h2 {
    font-size: 28px;
    text-align: left;
  }

  .edge-sub {
    max-width: 100%;
    padding-top: 0;
    font-size: 14px;
  }

  .four-col {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .edge-card {
    padding: 18px 16px;
  }

  .edge-card h4 { font-size: 13.5px; }

  /* ── PROCESS / STEPS ── */
  .steps-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 40px;
  }

  .step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }

  .step:last-child { border-bottom: none; }

  .step-box {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-line { display: none; } /* horizontal connector — not needed vertically */

  .step-title { font-size: 14px; margin-bottom: 4px; }
  .step-desc  { font-size: 13px; padding: 0; }

  .process-cta .nav-cta {
    display: inline-block;
    font-size: 14px;
    padding: 12px 24px;
  }

  /* ── WHO WE SERVE ── */
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .ind-card {
    padding: 16px 10px;
    gap: 8px;
  }

  .ind-card span { font-size: 12px; }

  .enterprise-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
  }

  .enterprise-banner .nav-cta {
    width: 100%;
    text-align: center;
  }

  /* ── ENTERPRISE PAGE ── */
  .ent-caps { padding: 60px 0 80px; }

  .ent-caps-title { font-size: 26px; margin-bottom: 36px; }

  .ent-caps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ent-cap-card {
    padding: 28px 22px;
  }

  .ent-who { padding-bottom: 80px; }

  .ent-who-box {
    padding: 36px 20px;
  }

  .ent-who-box h3 { font-size: 20px; margin-bottom: 32px; }

  .ent-who-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .ent-who-item { font-size: 15px; }

  /* ── FAQ ── */
  .faq-section {
    padding: 60px 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-card { padding: 22px 18px; }
  .faq-card h4 { font-size: 16px; }

}

/* =================================================
   SMALL PHONES — 480px and below
   ================================================= */
@media (max-width: 480px) {

  .hero h1 { font-size: 30px; }

  .hero-pill { font-size: 12px; padding: 5px 12px; }

  .hero-stats { gap: 16px; }
  .hero-stats h3 { font-size: 20px; }

  .section-wrap h2 { font-size: 24px; }

  .four-col {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edge-card { padding: 16px 14px; }

  .logo-img { height: 38px; }

  .faq-card h4 { font-size: 15px; }

  .ent-who-box { padding: 28px 16px; }

}/* ── FOOTER ── */
.footer {
  padding: 60px 80px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 10px;
  max-width: 280px;
}

.footer-tags {
  font-size: 12px;
  color: #334155;
}

.footer-col h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: #334155;
}

.footer-bottom a {
  color: #475569;
  text-decoration: none;
  margin-left: 20px;
}