* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f3f6fb;
  color: #0f172a;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  background: #0a0f1c;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.logo {
  font-family: "Fustat", sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #ffffff;
  padding: 0px 100px;
}

.navbar nav a {
  color: #cbd5e1;
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
  padding: 15px;
}

.navbar nav a:hover {
  color: #60a5fa;
}

/* HERO */

.heygen-hero {
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: white;
    text-align: center;
    padding: 65px 20px;
}

.heygen-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.heygen-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.heygen-hero p {
    max-width: 700px;
    margin: auto;
    color: #dbeafe;
}



/* =========================
   CONTAINER
========================= */

.heygen-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* =========================
   MAIN CARD
========================= */

.heygen-card {
  background: #ffffff;
  margin-top: -40px;
  margin-bottom: 60px;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =========================
   HEADINGS
========================= */

.heygen-card h2 {
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 12px;
  color: #0f172a;
  position: relative;
}

/* underline accent */
.heygen-card h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #2563eb;
  margin-top: 6px;
  border-radius: 5px;
}

/* =========================
   TEXT
========================= */

.heygen-card p {
  margin-bottom: 15px;
  color: #475569;
  font-size: 1rem;
}

/* =========================
   LISTS
========================= */

.heygen-card ul {
  margin: 15px 0 20px 25px;
}

.heygen-card li {
  margin-bottom: 10px;
  color: #475569;
}

/* =========================
   GRID (PROS / CONS)
========================= */

.heygen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* =========================
   BOXES
========================= */

.heygen-box {
  background: #f9fafb;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.heygen-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* =========================
   PROS
========================= */

.heygen-pros {
  border-left: 5px solid #22c55e;
}

.heygen-pros h3 {
  color: #16a34a;
}

/* =========================
   CONS
========================= */

.heygen-cons {
  border-left: 5px solid #ef4444;
}

.heygen-cons h3 {
  color: #dc2626;
}

/* =========================
   STRONG TEXT
========================= */

strong {
  color: #111827;
}

/* FOOTER */
footer {
  background: #0a0f1c;
  color: #94a3b8;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
  font-size: 14px;
}

/* =========================
   MODERN HAMBURGER MENU (FINAL CLEAN VERSION)
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
  transition: 0.3s ease;
  margin-top: 8px;
}

/* DESKTOP NAV */
#nav-menu {
  display: flex;
  gap: 15px;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .logo{

    padding: 0px 0px;
   }

    .heygen-hero h1 { font-size: 2rem; } 
    .heygen-card { padding: 25px; } 
    .heygen-grid { grid-template-columns: 1fr; }

  .hamburger {
    display: flex;
  }

  #nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(12px);

    flex-direction: column;

    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;

    transition: all 0.35s ease;

    padding: 20px 0;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }

  #nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #nav-menu a {
    padding: 14px;
    display: block;
    color: #cbd5e1;
    font-weight: 500;
    transition: 0.3s;
  }

  #nav-menu a:hover {
    color: #60a5fa;
    background: rgba(255,255,255,0.05);
  }
}

