/* ==========================================================================
   Mechanic Marketing — Global CSS
   ========================================================================== */

/* ==========================================================================
   Font Faces — TT Commons Pro
   ========================================================================== */

@font-face {
  font-family: 'TT Commons Pro';
  src: url('/assets/fonts/TT_Commons_Pro_Regular.woff2') format('woff2'),
       url('/assets/fonts/TT_Commons_Pro_Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Commons Pro';
  src: url('/assets/fonts/TT_Commons_Pro_Bold.woff2') format('woff2'),
       url('/assets/fonts/TT_Commons_Pro_Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Commons Pro';
  src: url('/assets/fonts/TT_Commons_Pro_ExtraBlack.woff2') format('woff2'),
       url('/assets/fonts/TT_Commons_Pro_ExtraBlack.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  --mm-orange: #FF3D02;
  --mm-warm-white: #F0F0EC;
  --mm-dark: #1c1c1a;
  --mm-golden: #F0AA00;

  --o:  #FF3D02;
  --w:  #F0F0EC;
  --b:  #1c1c1a;
  --g:  #F0AA00;
  --t1: #FF6746;

  --mm-orange-t1: #FF6746;
  --mm-orange-t2: #FF8A6F;
  --mm-orange-t3: #FFAC98;
  --mm-orange-t4: #FFD1C6;

  --font-display: 'TT Commons Pro', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'TT Commons Pro', 'Helvetica Neue', Arial, sans-serif;

  --sp-xxs: 7px;
  --sp-xs: 11px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 36px;
  --sp-xl: 54px;
  --sp-xxl: 81px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--w);
  color: var(--b);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.0;
  margin: 0 0 var(--sp-md);
}

h1 { font-size: clamp(56px, 8vw, 81px); letter-spacing: -0.03em; }
h2 { font-size: clamp(36px, 5vw, 54px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 3vw, 24px); }
h4 { font-size: 20px; line-height: 1.1; }

p {
  margin: 0 0 var(--sp-md);
}

a {
  color: var(--mm-orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Scroll Reveal
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* How It Works — staggered entrance */
.step-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
}
.step-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.step-card:nth-child(1) { transition-delay: 0s; }
.step-card:nth-child(2) { transition-delay: 0.12s; }
.step-card:nth-child(3) { transition-delay: 0.24s; }
.step-card:nth-child(4) { transition-delay: 0.36s; }

/* Arrow connectors between process steps — hidden now that steps are individual cards */
.step-card:not(:last-child)::after {
  display: none;
}

/* Step icons — orange brand color, animated */
.step-icon {
  display: block;
  margin: 0 auto 12px;
  color: var(--o);
  transition: transform 0.3s ease;
}
.step-card.is-visible .step-icon {
  transform: scale(1.05);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes heroZoom {
  from { transform: scale(1.08) translateY(-1%); }
  to   { transform: scale(1.12) translateY(1%); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpTransform {
  from { transform: translateY(24px); }
  to   { transform: translateY(0); }
}

/* ==========================================================================
   Nav
   ========================================================================== */


@media (max-width: 768px) {
  .site-header .site-nav ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--b);
    padding: 16px 24px;
    flex-direction: column;
    gap: 16px;
  }
  .site-header .site-nav ul.is-open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .site-header .nav-cta.nav-cta-desktop {
    display: none;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.nav-mm {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--mm-orange);
  letter-spacing: -0.02em;
}

.nav-wm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--b);
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  font-variant: small-caps;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}


.nav-cta {
  background: var(--mm-orange) !important;
  color: var(--mm-dark) !important;
  padding: 11px 24px;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: background 0.2s;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--mm-orange-t1) !important;
  text-decoration: none !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--mm-dark);
  padding: var(--sp-xxl) 54px 36px;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 54px;
  margin-bottom: 54px;
}

.ft-brand .nav-mm {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.ft-brand p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 150%;
  color: rgba(240,240,236,0.4);
  max-width: 300px;
  margin: 0;
}

.ft-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mm-orange);
  margin-bottom: 24px;
  line-height: 1.2;
}

.ft-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 150%;
  color: rgba(240,240,236,0.5);
  margin-bottom: 11px;
  transition: color 0.2s;
  text-decoration: none;
}

.ft-col a:hover {
  color: var(--mm-warm-white);
  text-decoration: none;
}

.ft-bot {
  border-top: 1px solid rgba(240,240,236,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(240,240,236,0.3);
}

.ft-soc {
  display: flex;
  gap: 16px;
}

.ft-soc a {
  color: rgba(240,240,236,0.3);
  transition: color 0.2s;
  text-decoration: none;
  display: block;
}

.ft-soc a:hover {
  color: var(--mm-orange);
  text-decoration: none;
}

.ft-soc svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Section Labels
   ========================================================================== */

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

/* ==========================================================================
   Hero Stat Badge
   ========================================================================== */

.hero-stat-badge {
  position: absolute;
  bottom: 24px;
  left: 16px;
  background: var(--b);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 2;
  min-width: 140px;
}

.hero-img, .hero-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--o);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero-stat-badge { display: none; }
}

/* ==========================================================================
   Step Badge
   ========================================================================== */

.step-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  background: rgba(255,61,2,0.07);
  color: var(--mm-orange);
  border: 1px solid rgba(255,61,2,0.22);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-light .step-badge {
  background: rgba(255,61,2,0.07);
  color: var(--mm-orange);
  border: 1px solid rgba(255,61,2,0.22);
}

/* ==========================================================================
   Footer Tagline
   ========================================================================== */

.ft-copy p {
  margin: 0;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(240,240,236,0.35);
  font-style: italic;
  font-family: var(--font-body);
  margin-top: 4px;
}

/* ==========================================================================
   Site Footer (new .site-footer structure)
   ========================================================================== */

.site-footer {
  background: var(--b);
  padding: 64px 0 40px;
  color: var(--w);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand p {
  color: rgba(240,240,236,0.85);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
}

.footer-links {
  display: contents;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(240,240,236,0.85);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  padding: 2px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--o);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(240,240,236,0.70);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-brand .logo-text {
  color: var(--w);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-links {
    display: contents;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Pricing Comparison Table Layout
   ========================================================================== */

.comparison-table-wrapper {
  max-width: 860px;
  margin: 48px auto 0;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(28,28,26,0.08);
}

.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  color: rgba(28,28,26,0.65);
  font-weight: 400;
}

@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pricing Comparison Table Accent
   ========================================================================== */

.comparison-table th.col-mm {
  background: rgba(255,61,2,0.08);
  color: var(--o);
  font-weight: 700;
}
.comparison-table td.col-mm {
  border-left: 2px solid rgba(255,61,2,0.25);
  border-right: 2px solid rgba(255,61,2,0.25);
}
.comparison-table td.col-mm:last-child {
  border-bottom: 2px solid rgba(255,61,2,0.25);
}
.comparison-table .check-mm {
  color: var(--o);
  font-weight: 700;
}
.comparison-table .cross-competitor {
  color: #aaa;
}

/* ==========================================================================
   Announce Bar (Change 1)
   ========================================================================== */

.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--o);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Nav: Cream Background
   ========================================================================== */

.site-header, .site-nav {
  background: var(--w);
  border-bottom: 1px solid rgba(28,28,26,0.08);
  position: fixed;
  top: 24px; /* below announce bar */
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--b);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-links, .site-nav ul, .site-nav nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li, .site-nav ul li {
  display: list-item;
}

/* CRITICAL: dark text on cream background */
.nav-links a, .site-nav ul a, .site-nav nav a {
  color: rgba(28,28,26,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links a:hover, .site-nav ul a:hover {
  color: var(--b);
}

.nav-logo, .logo, .logo-text, .site-header .logo-text {
  color: var(--b);
}

/* Wordmark on cream (sub-page) nav background */
.site-header .nav-wm {
  color: var(--b);
}
.site-header .nav-mm {
  color: var(--o);
}

/* ==========================================================================
   Section Label Pills (Change 3)
   ========================================================================== */

.section-label {
  display: inline-block;
  background: var(--o);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ==========================================================================
   Hero: Cream Background (Change 4)
   ========================================================================== */

.hero {
  background: var(--w);
}

.hero h1, .hero-h1, .hero .headline {
  color: var(--b);
}

.hero .hero-sub, .hero p.subhead, .hero .sub {
  color: var(--b);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero .btn-secondary, .hero .btn-outline, .hero .btn-ol {
  border-color: var(--b);
  color: var(--b);
}

.hero .btn-secondary:hover, .hero .btn-outline:hover, .hero .btn-ol:hover {
  background: var(--b);
  color: var(--w);
}

/* ==========================================================================
   Page Hero — Service, Industry, and other sub-pages
   ========================================================================== */

.page-hero {
  background: var(--b);
  padding: 96px 40px 80px;
  text-align: center;
}

.page-hero .container {
  max-width: 760px;
  margin: 0 auto;
  display: block; /* override any inherited grid/flex */
}

.page-hero .section-eyebrow {
  display: block;
  color: var(--o);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero h1 {
  color: var(--w);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero h2 {
  color: rgba(240,240,236,0.65);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(240,240,236,0.55);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .btn,
.page-hero a.btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .page-hero { padding: 72px 24px 56px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 44px); }
}

/* ==========================================================================
   Pain Point Cards (Change 5)
   ========================================================================== */

.pain-section {
  padding: 76px 0;
  background: var(--w);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Atmospheric car silhouette — decorative background */
.pain-car-bg {
  position: absolute;
  right: -3%;
  bottom: -6%;
  width: 50%;
  max-width: 580px;
  min-width: 260px;
  color: var(--mm-orange);
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

.pain-section .container {
  text-align: center;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.pain-section .section-label {
  display: inline-block;
  margin-bottom: 16px;
}

.pain-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--b);
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto 12px;
  text-align: center;
}

.pain-subhead {
  color: rgba(28,28,26,0.55);
  font-size: 16px;
  margin-bottom: 48px;
  text-align: center;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pain-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 28px 32px;
  border-top: 3px solid var(--o);
}

.pain-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--b);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 14px;
  color: rgba(28,28,26,0.65);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .pain-cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Guarantees Section (Change 6)
   ========================================================================== */

.guarantees-section {
  background: var(--b);
  padding: 96px 0;
  text-align: center;
}

.guarantees-section .container {
  max-width: 1100px;
}

.guarantees-section .section-label {
  display: inline-block;
  margin-bottom: 16px;
}

.guarantees-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--w);
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  text-align: center;
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guarantee-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px;
}

.guarantee-icon {
  color: var(--o);
  margin-bottom: 16px;
}

.guarantee-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
  text-align: left;
}

.guarantee-card p {
  font-size: 13px;
  color: rgba(240,240,236,0.85);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.guarantee-icon {
  text-align: left;
}

@media (max-width: 768px) {
  .guarantee-cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Case Study Hero Headlines + Meta Pills (Change 7)
   ========================================================================== */

.cs-hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--w);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.cs-meta-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(240,240,236,0.7);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Responsive — Global
   ========================================================================== */

@media (max-width: 768px) {
  .ft-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer { padding: 54px 24px 24px; }
  .ft-bot { flex-direction: column; align-items: flex-start; gap: var(--sp-sm); }
}

/* ==========================================================================
   Blog Post Pages
   ========================================================================== */

.blog-post-hero {
  background: var(--b);
  padding: 80px 0 48px;
}
.blog-post-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--w);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 16px;
}
.blog-post-meta {
  color: rgba(240,240,236,0.55);
  font-size: 14px;
}
.blog-post-image {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
.blog-post-image img {
  width: 100%;
  border-radius: 8px;
  margin-top: -40px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}
.blog-post-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 96px;
  align-items: start;
}
.blog-post-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(28,28,26,0.8);
  margin-bottom: 24px;
}
.blog-cta-box {
  background: var(--b);
  border-radius: 8px;
  padding: 28px;
  position: sticky;
  top: 88px;
}
.blog-cta-box h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--w);
  margin-bottom: 10px;
}
.blog-cta-box p {
  font-size: 14px;
  color: rgba(240,240,236,0.6);
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-post-sidebar {
  /* sidebar column — grid handles placement */
}

.blog-post-content {
  min-width: 0; /* prevent grid blowout */
}

.blog-post-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--b);
  letter-spacing: -0.02em;
  margin-top: 40px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog-post-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--b);
  margin-top: 24px;
  margin-bottom: 8px;
}

.blog-post-content ul {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
}

.blog-post-content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(28,28,26,0.75);
}

.blog-post-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--o);
  font-weight: 700;
}

.blog-post-content a {
  color: var(--o);
  text-decoration: underline;
}

/* ==========================================================================
   Blog Index — Card Links
   ========================================================================== */

a.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ==========================================================================
   Blog Index — Featured Post Hero
   ========================================================================== */

.blog-featured {
  background: var(--w);
  padding: 64px 0;
}
.blog-featured h2, .blog-featured-title {
  color: var(--b);
}
.blog-featured p, .blog-featured-excerpt {
  color: rgba(28,28,26,0.65);
}

@media (max-width: 768px) {
  .blog-post-body { grid-template-columns: 1fr; }
  .blog-cta-box { position: static; margin-top: 40px; }
}

/* ==========================================================================
   How We Do It — Service / Industry Pages
   ========================================================================== */

.how-we-do-it {
  background: var(--b);
  padding: 96px 0;
}
.how-we-do-it-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--w);
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.how-we-do-it-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hwdi-step {
  position: relative;
}
.hwdi-step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  position: absolute;
  top: -16px;
  left: 0;
}
.hwdi-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--w);
  margin-bottom: 10px;
  padding-top: 40px;
}
.hwdi-step-desc {
  font-size: 14px;
  color: rgba(240,240,236,0.55);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .how-we-do-it-steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Mini Stat Section — Service / Industry Pages
   ========================================================================== */

.mini-stat-section {
  background: var(--o);
  padding: 72px 0;
}
.mini-stat-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.mini-stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 10vw, 120px);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}
.mini-stat-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  max-width: 480px;
  line-height: 1.5;
}
.mini-stat-link {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
@media (max-width: 768px) {
  .mini-stat-inner { flex-direction: column; gap: 16px; }
}

/* ==========================================================================
   FAQ Section — Service / Industry Pages
   ========================================================================== */

.faq-section {
  background: var(--w);
  padding: 96px 0;
}
.faq-section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--b);
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

/* ==========================================================================
   About Page — Intro Paragraph
   ========================================================================== */

.about-intro {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(240,240,236,0.65);
  max-width: 600px;
  margin: 16px auto 48px;
  text-align: center;
}

/* ==========================================================================
   Nav — Centered layout (logo left | links centre | CTA+toggle right)
   Overrides the inline display:flex;justify-content:space-between on .mm-nav
   ========================================================================== */

.mm-nav {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.mm-nav .mm-nav-logo {
  justify-self: start;
}

.mm-nav .mm-nav-links {
  justify-self: center;
}

/* Mobile: each page's inline style block turns .mm-nav-links into an
   absolutely-positioned dropdown (top:100%; left:0; right:0). Because .mm-nav
   is its containing block AND a grid container, the justify-self:center above
   also applies to the abspos box — it shrink-wraps and centres instead of
   stretching between left/right. Stretch it back to full nav width here.
   gap needs !important to beat the element's inline style="...gap:48px". */
@media (max-width: 768px) {
  .mm-nav .mm-nav-links {
    justify-self: stretch;
    gap: 20px !important;
  }
}

/* Right column: phone + CTA button + mobile toggle live together here.
   grid-column:3 pins it to the right even when .mm-nav-links is display:none
   on mobile (otherwise auto-placement drops it into the centre column). */
.mm-nav .mm-nav-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* "Get in Touch" CTA hover — matches .btn-o:hover on the rest of the site */
.mm-nav-cta {
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mm-nav-cta:hover {
  background: #FF6746 !important;
  box-shadow: 0 6px 20px rgba(255, 61, 2, 0.4);
  transform: translateY(-2px);
  color: #fff !important;
}

/* On mobile: hide inline CTA — it lives in the hamburger menu instead */
@media (max-width: 768px) {
  .mm-nav-cta {
    display: none !important;
  }
}

/* Nav phone number (0480 800 644) — hover needs !important to beat the inline colour */
.mm-nav-phone:hover {
  color: #FF3D02 !important;
}

/* On mobile: keep the phone icon tappable next to the hamburger, hide the number */
@media (max-width: 768px) {
  .mm-nav-phone {
    padding: 8px;
  }
  .mm-nav-phone .mm-nav-phone-num {
    display: none;
  }
}

/* ==========================================================================
   Nav — Industries dropdown
   ========================================================================== */

.mm-nav-industries {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mm-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 196px;
  background: #111;
  border-top: 3px solid #FF3D02;
  padding: 4px 0;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.mm-nav-industries:hover .mm-nav-dropdown { display: block; }

.mm-nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: 'TT Commons Pro', 'TT Commons', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #F0F0EC;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.mm-nav-dropdown a:hover {
  background: #1e1e1e;
  color: #FF3D02;
}

@media (max-width: 768px) {
  .mm-nav-dropdown { display: none !important; }
}

/* ==========================================================================
   Case Studies Hub — Sub-heading
   ========================================================================== */

.cs-hub-sub {
  text-align: center;
  font-size: 16px;
  color: rgba(28,28,26,0.7);
  max-width: 500px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
