/* ============================================================
   HOME PAGE — ADDITIONAL STYLES
   Included via front-page.php wp_enqueue on homepage only
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.mp-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.mp-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg,#f9f0f4 0%,#fce8ee 50%,#f5e0ea 100%);
  clip-path: polygon(8% 0%,100% 0%,100% 100%,0% 100%);
  z-index: 0;
}
.mp-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; position: relative; z-index: 1;
}
.mp-hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
}
.mp-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease infinite;
}
.mp-hero-sub  { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; max-width: 500px; }
.mp-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.mp-hero-stats {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px 24px;
  margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.mp-stat-num   { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text); line-height: 1; }
.mp-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── DASHBOARD MOCKUP ─────────────────────────────────────── */
.mp-dashboard {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.mp-dash-header {
  background: var(--bg-deep); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.mp-dash-dots { display: flex; gap: 6px; }
.mp-dash-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.mp-dash-dots span:nth-child(1){background:#FF5F57;}
.mp-dash-dots span:nth-child(2){background:#FFBD2E;}
.mp-dash-dots span:nth-child(3){background:#28CA41;}
.mp-dash-title { color: rgba(255,255,255,.6); font-size: 13px; margin-left: 8px; }
.mp-dash-body  { padding: 20px; }
.mp-dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.mp-dash-metric { background: var(--bg-surface); border-radius: 8px; padding: 12px; border: 1px solid var(--border); }
.mp-dash-label  { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.mp-dash-val    { font-weight: 700; font-size: 20px; color: var(--text); }
.mp-dash-change { font-size: 11px; color: #16a34a; font-weight: 600; }
.mp-dash-chart  { background: var(--bg-surface); border-radius: 8px; padding: 16px; border: 1px solid var(--border); margin-bottom: 12px; }
.mp-dash-chart-label { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.mp-dash-bars   { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.mp-bar         { flex: 1; border-radius: 3px 3px 0 0; background: var(--border); }
.mp-bar-mid     { background: #f0a0b5; }
.mp-bar-hi      { background: var(--accent); }
.mp-dash-campaigns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mp-camp-item  { background: var(--bg-surface); border-radius: 8px; padding: 10px 12px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mp-camp-icon  { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.mp-camp-name  { font-size: 12px; font-weight: 600; }
.mp-camp-sub   { font-size: 10px; color: var(--text-muted); }
.mp-camp-roas  { font-size: 13px; font-weight: 700; color: #16a34a; }

/* ── CASE STUDIES SECTION ─────────────────────────────────── */
.mp-case-section { background: var(--bg-deep); }
.mp-case-section-cta { text-align: center; margin-top: 56px; }

/* ── SERVICES GRID ────────────────────────────────────────── */
.mp-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── FINAL CTA ────────────────────────────────────────────── */
.mp-final-cta { background: #fff; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mp-services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .mp-hero { padding: 120px 0 60px; }
  .mp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .mp-hero::before { display: none; }
  .mp-dashboard-wrap { display: none; }
  .mp-services-grid { grid-template-columns: 1fr; }
  .mp-hero-stats { grid-template-columns: repeat(2,1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .mp-hero-ctas { flex-direction: column; }
  .mp-hero-ctas .mp-btn { width: 100%; justify-content: center; }
}
