/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0d10;
  color: #ffffff;
  line-height: 1.6;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./assets/hero-cyber-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,10,15,.75), rgba(8,10,15,.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.6rem;
}

.hero p {
  color: #e2e4ea;
  margin-bottom: 3rem;
  font-size: 1.15rem;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  background: #e10600;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  background: #fff;
  color: #e10600;
  padding: 1rem 2.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   BENEFITS
========================= */
.benefits {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}

.card {
  background: #151821;
  width: 260px;
  padding: 2.5rem 2rem;
  border-radius: 14px;
  text-align: center;
}

.card .icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

/* =========================
   LICENSING
========================= */
.licensing {
  background: #10131a;
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}

.license-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.license-card {
  background: #151821;
  padding: 2.4rem 2rem;
  border-radius: 14px;
  text-align: center;
}

/* =========================
   CTA
========================= */
.cta {
  background: #e10600;
  padding: 6rem 2rem;
}

.cta-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta h2 {
  margin-bottom: 1.2rem;
}

.cta p {
  margin-bottom: 2.8rem;
  font-size: 1.05rem;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 2rem;
  font-size: .8rem;
  color: #9aa0ad;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .benefit-grid,
  .license-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
/* =========================
   MODAL FORM
========================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #151821;
  padding: 2.5rem;
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.modal-content h3 {
  margin-bottom: 1.5rem;
}

.modal-content form input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  border-radius: 6px;
  border: none;
}

.modal-content button {
  width: 100%;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
