/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, Arial, sans-serif;
}

body {
  background-color: #f8fafc;
  color: #334155;
  line-height: 1.7;
}
body {
  background-color: #f8fafc;
  color: #334155;
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

body,
p,
div,
span,
a {
  font-family: "Inter", sans-serif;
}

/* ================= COMMON LAYOUT ================= */
.gmb-page-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.gmb-page-section {
  padding: 30px 0;
}

.gmb-page-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #020617;
}

/* ================= PRIMARY BUTTON ================= */
.gmb-primary-action-button {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}

.gmb-primary-action-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

/* ================= HERO ================= */
.gmb-hero-section {
  background:
    radial-gradient(circle at top left, #60a5fa, transparent 40%),
    radial-gradient(circle at bottom right, #22c55e, transparent 40%),
    linear-gradient(135deg, #020617, #020617);
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
}

.gmb-hero-title {
  font-size: 52px;
  margin-bottom: 20px;
}

.gmb-hero-description {
  max-width: 820px;
  margin: auto;
  font-size: 18px;
  opacity: 0.9;
}

/* ================= GRID ================= */
.gmb-three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.gmb-four-column-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.gmb-glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.08);
  transition: 0.4s;
}

.gmb-glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.15);
}

/* ================= WHY GMB ================= */
.gmb-benefit-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #020617;
}

/* ================= PACKAGES ================= */
.gmb-package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gmb-package-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
}

.gmb-package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.15);
}

.gmb-package-title {
  font-size: 22px;
  color: #020617;
}

.gmb-package-subtitle {
  font-size: 14px;
  color: #64748b;
}

.gmb-package-price {
  font-size: 32px;
  color: #2563eb;
  margin: 18px 0 25px;
}

.gmb-package-feature-list {
  list-style: none;
}

.gmb-package-feature-list li {
  margin: 12px 0;
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}

.gmb-package-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 600;
}

/* Featured */
.gmb-package-highlighted {
  border: 2px solid #2563eb;
  transform: scale(1.05);
}

.gmb-package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
}

/* ================= REPORTING ================= */
.gmb-reporting-note {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  color: #475569;
}

/* ================= CTA ================= */
.gmb-call-to-action {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #ffffff;
  text-align: center;
}

.gmb-call-to-action-text {
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .gmb-three-column-grid,
  .gmb-four-column-grid,
  .gmb-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gmb-hero-title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .gmb-three-column-grid,
  .gmb-four-column-grid,
  .gmb-package-grid {
    grid-template-columns: 1fr;
  }
  .gmb-page-heading {
    font-size: 28px;
  }
  .gmb-hero-title {
    font-size: 32px;
  }
}
