/* ============================================================
   MonetizeHub – Facebook Monetization Page Styles
   All classes prefixed with "mh-" to avoid theme conflicts
   ============================================================ */

:root {
  --mh-blue-dark: #0A1628;
  --mh-blue-mid: #1877F2;
  --mh-blue-accent: #0C5EE8;
  --mh-blue-light: #E7F0FF;
  --mh-gold: #F5A623;
  --mh-text-main: #0D1B2A;
  --mh-text-muted: #5A6782;
  --mh-text-light: #8E99B0;
  --mh-border: #E3E8F0;
  --mh-bg: #F7F9FC;
  --mh-white: #FFFFFF;
  --mh-green: #1DB954;
}

/* ── HERO ── */
.mh-hero {
  background: linear-gradient(135deg, #0A1628 0%, #0F2456 50%, #1240A4 100%);
  color: #fff;
  padding: 100px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.mh-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(24,119,242,0.25); border: 1px solid rgba(24,119,242,0.5);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: #93BBFF;
  margin-bottom: 28px; letter-spacing: 0.3px;
}
.mh-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.mh-hero h1 span { color: var(--mh-gold); }
.mh-hero > p {
  font-size: 18px; color: rgba(255,255,255,0.72);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.mh-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.mh-hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 64px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 40px;
}
.mh-stat-item { text-align: center; }
.mh-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1px;
}
.mh-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── BUTTONS ── */
.mh-btn-primary {
  background: var(--mh-blue-mid); color: #fff !important;
  padding: 14px 30px; border-radius: 10px;
  font-size: 16px; font-weight: 700;
  text-decoration: none !important; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.mh-btn-primary:hover { background: #1566D6; transform: translateY(-1px); }
.mh-btn-outline {
  background: transparent; color: #fff !important;
  padding: 14px 30px; border-radius: 10px;
  font-size: 16px; font-weight: 600;
  text-decoration: none !important; display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.mh-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── SECTIONS ── */
.mh-section { padding: 88px 5%; }
.mh-section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--mh-blue-mid); margin-bottom: 12px;
}
.mh-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -0.8px;
  color: var(--mh-text-main); line-height: 1.2; margin-bottom: 16px;
}
.mh-section-sub { font-size: 17px; color: var(--mh-text-muted); max-width: 560px; }
.mh-section-head { margin-bottom: 56px; }
.mh-centered { text-align: center; }
.mh-centered .mh-section-sub { margin: 0 auto; }

/* ── SERVICES GRID ── */
.mh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.mh-service-card {
  background: var(--mh-white); border: 1px solid var(--mh-border);
  border-radius: 16px; padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.mh-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--mh-blue-mid); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.mh-service-card:hover { box-shadow: 0 8px 32px rgba(24,119,242,0.12); transform: translateY(-3px); }
.mh-service-card:hover::before { transform: scaleX(1); }
.mh-service-icon {
  width: 52px; height: 52px; background: var(--mh-blue-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mh-service-icon svg { width: 26px; height: 26px; color: var(--mh-blue-mid); }
.mh-service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--mh-text-main);
}
.mh-service-card p { font-size: 15px; color: var(--mh-text-muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.mh-how-bg { background: var(--mh-bg); }
.mh-steps { display: flex; gap: 0; position: relative; }
.mh-steps::before {
  content: ''; position: absolute; top: 32px; left: 48px; right: 48px; height: 2px;
  background: linear-gradient(90deg, var(--mh-blue-mid), var(--mh-blue-light)); z-index: 0;
}
.mh-step { flex: 1; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.mh-step-num {
  width: 64px; height: 64px; background: var(--mh-blue-mid); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; margin: 0 auto 20px;
  border: 4px solid var(--mh-white); box-shadow: 0 0 0 2px var(--mh-blue-mid);
}
.mh-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.mh-step p { font-size: 14px; color: var(--mh-text-muted); }

/* ── PRICING ── */
.mh-pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.mh-plan-card {
  background: var(--mh-white); border: 1.5px solid var(--mh-border);
  border-radius: 18px; padding: 36px 28px; transition: box-shadow 0.2s;
}
.mh-plan-card.mh-featured {
  background: var(--mh-blue-dark); border-color: var(--mh-blue-mid);
  color: #fff; transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(24,119,242,0.25);
}
.mh-plan-card.mh-featured p { color: rgba(255,255,255,0.65); }
.mh-plan-badge {
  display: inline-block; background: var(--mh-gold); color: #000;
  font-size: 11px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.mh-plan-name {
  font-size: 14px; font-weight: 600; color: var(--mh-text-muted);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.mh-plan-card.mh-featured .mh-plan-name { color: rgba(255,255,255,0.55); }
.mh-plan-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 6px;
}
.mh-plan-period { font-size: 14px; color: var(--mh-text-light); margin-bottom: 24px; }
.mh-plan-card.mh-featured .mh-plan-period { color: rgba(255,255,255,0.45); }
.mh-plan-features { list-style: none; margin-bottom: 32px; padding: 0; }
.mh-plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 7px 0;
  border-bottom: 1px solid var(--mh-border);
}
.mh-plan-card.mh-featured .mh-plan-features li { border-color: rgba(255,255,255,0.1); }
.mh-btn-plan {
  width: 100%; padding: 13px; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  text-align: center; display: block; text-decoration: none !important;
  transition: background 0.2s;
}
.mh-btn-plan-outline {
  background: transparent; color: var(--mh-blue-mid) !important;
  border: 1.5px solid var(--mh-blue-mid);
}
.mh-btn-plan-outline:hover { background: var(--mh-blue-light); }
.mh-btn-plan-solid { background: var(--mh-blue-mid); color: #fff !important; border: none; }
.mh-btn-plan-solid:hover { background: #1566D6; }

/* ── TESTIMONIALS ── */
.mh-testimonials-bg { background: var(--mh-bg); }
.mh-testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.mh-testimonial-card {
  background: var(--mh-white); border: 1px solid var(--mh-border);
  border-radius: 16px; padding: 28px 24px;
}
.mh-stars { color: var(--mh-gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 1px; }
.mh-testimonial-text { font-size: 15px; color: var(--mh-text-main); line-height: 1.7; margin-bottom: 20px; }
.mh-testimonial-author { display: flex; align-items: center; gap: 12px; }
.mh-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.mh-author-name { font-size: 14px; font-weight: 700; }
.mh-author-handle { font-size: 13px; color: var(--mh-text-muted); }

/* ── FAQ ── */
.mh-faq-list { max-width: 720px; margin: 0 auto; }
.mh-faq-item {
  border: 1px solid var(--mh-border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.mh-faq-q {
  width: 100%; background: none; border: none; padding: 20px 24px;
  text-align: left; font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--mh-text-main); font-family: inherit;
}
.mh-faq-q svg { width: 18px; height: 18px; color: var(--mh-text-muted); flex-shrink: 0; transition: transform 0.25s; }
.mh-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14px; color: var(--mh-text-muted); line-height: 1.7;
  padding: 0 24px;
}
.mh-faq-item.mh-open .mh-faq-a { max-height: 200px; padding: 0 24px 20px; }
.mh-faq-item.mh-open .mh-faq-q svg { transform: rotate(180deg); }

/* ── CTA BANNER ── */
.mh-cta-banner {
  background: linear-gradient(135deg, #0A1628 0%, #1240A4 100%);
  padding: 72px 5%; text-align: center; color: #fff;
}
.mh-cta-banner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.8px;
}
.mh-cta-banner p {
  font-size: 17px; color: rgba(255,255,255,0.65);
  margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mh-section { padding: 60px 20px; }
  .mh-steps { flex-direction: column; gap: 32px; }
  .mh-steps::before { display: none; }
  .mh-hero-stats { gap: 24px; }
  .mh-plan-card.mh-featured { transform: scale(1); }
}
