/* ============================================================
   MBANQ BASE STYLES
   Reset · Typography · Layout · Buttons · Tags · Typography utilities
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Red Hat Display', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s ease; letter-spacing: -.01em; white-space: nowrap;
}
.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(186,83,95,.35);
}
.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(186,83,95,.45);
  transform: translateY(-1px);
}
.btn--white {
  background: #fff; color: var(--primary);
  box-shadow: 0 4px 18px rgba(0,0,0,.16);
}
.btn--white:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,0,0,.2);
}
.btn--ghost-white {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn--ghost-white:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: rgba(255,255,255,.07);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--primary); color: var(--primary);
}

/* ── Tags ── */
.tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 100px;
}
.tag--magenta { background: var(--primary-light); color: var(--primary);   border: 1px solid var(--primary-mid); }
.tag--teal    { background: var(--teal-light);    color: var(--teal);      border: 1px solid var(--teal-mid); }
.tag--purple  { background: var(--purple-light);  color: var(--purple);    border: 1px solid var(--purple-mid); }
.tag--amber   { background: var(--amber-light);   color: var(--amber);     border: 1px solid var(--amber-mid); }
.tag--blue    { background: var(--blue-light);    color: var(--blue);      border: 1px solid var(--blue-mid); }
.tag--green   { background: var(--green-light);   color: var(--green);     border: 1px solid var(--green-mid); }
.tag--gray    { background: var(--surface);       color: var(--muted);     border: 1px solid var(--border); }

/* ── Section label (pill eyebrow over heading) ── */
.section-label {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 600; letter-spacing: -.01em;
  color: var(--primary);
  border: 1.5px solid rgba(186,83,95,.38);
  border-radius: 8px; padding: 7px 20px; margin-bottom: 24px;
  background: transparent;
}

/* ── Eyebrow (small uppercase label above section) ── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}

/* ── Typography utilities ── */
.h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800; line-height: 1.1; color: var(--navy);
  margin: 0 0 18px; letter-spacing: -.03em;
}
.h2 em { font-style: normal; color: var(--primary); }

.lead {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7; color: var(--muted);
}

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ── Service card (universal card) ── */
.svc-card {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 20px 18px; background: #fff;
  display: flex; flex-direction: column;
}
.svc-card h3 { font-size: 15px; margin-bottom: 8px; }
.svc-card p  { font-size: 13px; line-height: 1.6; color: var(--muted); flex: 1; }
.svc-card--alt {
  background: var(--surface); border-style: dashed;
  box-shadow: none;
}

/* ── Closing CTA section ── */
.closing {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative; overflow: hidden;
}
.closing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 50%, rgba(186,83,95,.24) 0%, transparent 65%);
  pointer-events: none;
}
.closing__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.closing__inner {
  max-width: 1140px; margin: 0 auto;
  padding: 80px 48px 96px;
  text-align: center; position: relative; z-index: 1;
}
.closing__inner h2 {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
  color: #fff; margin: 0 0 18px; letter-spacing: -.04em;
}
.closing__inner > p {
  font-size: 16px; color: rgba(255,255,255,.6);
  line-height: 1.7; max-width: 500px; margin: 0 auto 36px;
}
.closing__note {
  display: block; margin: 24px auto 0; font-size: 13px;
  color: rgba(255,255,255,.38); font-weight: 400;
}
@media (max-width: 768px) { .closing__inner { padding: 56px 24px 72px; } }
