/* ================================================================
   TMG — AWB Weibull Service Page  v1.2.0
   Scoped to .tmg-page.tmg-awbw — cannot leak into the WP theme.
   The Mantua Group "Simple Black and White" design language.
================================================================ */

.tmg-page.tmg-awbw {
  --tmg-bg:      #FFFFFF;
  --tmg-surface: #F5F5F5;
  --tmg-panel:   #EEEEEE;
  --tmg-border:  #DEDEDE;
  --tmg-bhi:     #BFBFBF;
  --tmg-text:    #1A1A1A;
  --tmg-muted:   #6B6B6B;
  --tmg-faint:   #999999;
  --tmg-black:   #111111;
  --tmg-accent:  #1A56B0;

  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--tmg-text);
  background: var(--tmg-bg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 24px;
  line-height: 1.55;
}

.tmg-page.tmg-awbw *,
.tmg-page.tmg-awbw *::before,
.tmg-page.tmg-awbw *::after {
  box-sizing: border-box;
}

/* ── Section eyebrows / titles ────────────────────────── */
.tmg-page.tmg-awbw .tmg-section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--tmg-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tmg-page.tmg-awbw .tmg-section-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--tmg-black);
  margin: 0 0 14px;
  line-height: 1.2;
}

.tmg-page.tmg-awbw .tmg-section-lede {
  font-size: 1.02rem;
  color: var(--tmg-text);
  margin: 0 0 28px;
  max-width: 880px;
}

/* ── HERO ─────────────────────────────────────────────── */
.tmg-page.tmg-awbw .tmg-hero {
  border-bottom: 2px solid var(--tmg-black);
  padding-bottom: 28px;
  margin-bottom: 36px;
}

.tmg-page.tmg-awbw .tmg-hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--tmg-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tmg-page.tmg-awbw .tmg-hero-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -.005em;
  color: var(--tmg-black);
  margin: 0 0 18px;
  line-height: 1.1;
}

.tmg-page.tmg-awbw .tmg-hero-lede {
  font-size: 1.06rem;
  color: var(--tmg-text);
  margin: 0 0 22px;
  max-width: 880px;
}

/* Bullet feature list */
.tmg-page.tmg-awbw .tmg-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 28px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.tmg-page.tmg-awbw .tmg-feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: .98rem;
  font-weight: 400;
  color: var(--tmg-text);
}

.tmg-page.tmg-awbw .tmg-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 2px;
  background: var(--tmg-black);
}

/* CTA buttons */
.tmg-page.tmg-awbw .tmg-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tmg-page.tmg-awbw .tmg-btn {
  display: inline-block;
  padding: 11px 22px;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid var(--tmg-black);
  transition: background .15s, color .15s;
  cursor: pointer;
}

.tmg-page.tmg-awbw .tmg-btn-primary {
  background: var(--tmg-black);
  color: #FFFFFF;
}
.tmg-page.tmg-awbw .tmg-btn-primary:hover {
  background: #FFFFFF;
  color: var(--tmg-black);
}

.tmg-page.tmg-awbw .tmg-btn-secondary {
  background: #FFFFFF;
  color: var(--tmg-black);
}
.tmg-page.tmg-awbw .tmg-btn-secondary:hover {
  background: var(--tmg-black);
  color: #FFFFFF;
}

/* ── ANALYSIS METHODS CHIPS ───────────────────────────── */
.tmg-page.tmg-awbw .tmg-chips-section {
  margin-bottom: 36px;
}

.tmg-page.tmg-awbw .tmg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tmg-page.tmg-awbw .tmg-chips li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem;
  font-weight: 500;
  padding: 7px 14px;
  border: 1px solid var(--tmg-bhi);
  border-radius: 3px;
  background: var(--tmg-surface);
  color: var(--tmg-text);
}

/* ── STATS ────────────────────────────────────────────── */
.tmg-page.tmg-awbw .tmg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 44px;
  padding: 24px 0;
  border-top: 1px solid var(--tmg-border);
  border-bottom: 1px solid var(--tmg-border);
}

.tmg-page.tmg-awbw .tmg-stat {
  text-align: center;
}

.tmg-page.tmg-awbw .tmg-stat-num {
  font-family: 'Lato', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--tmg-black);
  line-height: 1;
  margin-bottom: 6px;
}

.tmg-page.tmg-awbw .tmg-stat-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .68rem;
  color: var(--tmg-muted);
  letter-spacing: .04em;
  line-height: 1.4;
}

/* ── FEATURE CARDS ─────────────────────────────────────── */
.tmg-page.tmg-awbw .tmg-feature-section {
  margin-bottom: 44px;
}

.tmg-page.tmg-awbw .tmg-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.tmg-page.tmg-awbw .tmg-feature-card {
  background: #FFFFFF;
  border: 1px solid var(--tmg-border);
  border-top: 3px solid var(--tmg-black);
  border-radius: 3px;
  padding: 20px;
}

.tmg-page.tmg-awbw .tmg-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--tmg-black);
}

.tmg-page.tmg-awbw .tmg-feature-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--tmg-black);
  margin: 0 0 10px;
  line-height: 1.25;
}

.tmg-page.tmg-awbw .tmg-feature-card p {
  font-size: .92rem;
  color: var(--tmg-text);
  margin: 0;
  line-height: 1.55;
}

/* ── COMPLIANCE STRIP ──────────────────────────────────── */
.tmg-page.tmg-awbw .tmg-compliance {
  margin-bottom: 44px;
  padding: 22px 0;
  border-top: 1px solid var(--tmg-border);
  border-bottom: 1px solid var(--tmg-border);
}

.tmg-page.tmg-awbw .tmg-compliance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tmg-page.tmg-awbw .tmg-compliance-list li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .82rem;
  font-weight: 500;
  color: var(--tmg-black);
}

/* ── DELIVERY ──────────────────────────────────────────── */
.tmg-page.tmg-awbw .tmg-delivery {
  margin-bottom: 44px;
}

.tmg-page.tmg-awbw .tmg-delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.tmg-page.tmg-awbw .tmg-delivery-card {
  background: var(--tmg-surface);
  border: 1px solid var(--tmg-border);
  border-radius: 3px;
  padding: 20px;
}

.tmg-page.tmg-awbw .tmg-delivery-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--tmg-black);
  margin: 0 0 8px;
}

.tmg-page.tmg-awbw .tmg-delivery-card p {
  font-size: .92rem;
  color: var(--tmg-text);
  margin: 0;
}

/* ── CTA / CONTACT ─────────────────────────────────────── */
.tmg-page.tmg-awbw .tmg-cta-section {
  background: var(--tmg-surface);
  border-top: 3px solid var(--tmg-black);
  border-radius: 3px;
  padding: 32px 28px;
  margin-bottom: 24px;
}

.tmg-page.tmg-awbw .tmg-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--tmg-border);
}

.tmg-page.tmg-awbw .tmg-contact-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tmg-muted);
  margin-bottom: 6px;
}

.tmg-page.tmg-awbw .tmg-contact-val {
  font-size: .94rem;
  color: var(--tmg-text);
  line-height: 1.45;
}

.tmg-page.tmg-awbw .tmg-contact-val a {
  color: var(--tmg-black);
  text-decoration: none;
  border-bottom: 1px solid var(--tmg-bhi);
}
.tmg-page.tmg-awbw .tmg-contact-val a:hover {
  border-bottom-color: var(--tmg-black);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .tmg-page.tmg-awbw .tmg-hero-title { font-size: 1.9rem; }
  .tmg-page.tmg-awbw .tmg-section-title { font-size: 1.55rem; }
  .tmg-page.tmg-awbw .tmg-feature-list { grid-template-columns: 1fr; }
  .tmg-page.tmg-awbw .tmg-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .tmg-page.tmg-awbw { padding: 22px 14px 14px; }
  .tmg-page.tmg-awbw .tmg-hero-title { font-size: 1.55rem; }
  .tmg-page.tmg-awbw .tmg-cta-section { padding: 24px 18px; }
}
