/* =====================================================
   Extraordinary Engagement - Manufacturing PR
   Brand: Slate #1A2E3B | Teal #0F6E56 | Roboto
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Roboto+Condensed:wght@700&display=swap');

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

:root {
  --slate:       #1A2E3B;
  --slate-dark:  #0f1e27;
  --slate-mid:   #2e4a5c;
  --slate-light: #EEF2F5;
  --teal:        #0F6E56;
  --teal-dark:   #0a4f3d;
  --teal-light:  #E1F5EE;
  --teal-mid:    #9FE1CB;
  --white:       #ffffff;
  --off-white:   #f8fafb;
  --body:        #3a4a54;
  --muted:       #6b7f8a;
  --border:      #d4dde3;
  --font:        'Roboto', sans-serif;
  --font-head:   'Roboto Condensed', sans-serif;
  --max:         1100px;
  --r:           6px;
  --shadow:      0 2px 16px rgba(26,46,59,0.10);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--body); background: var(--white); line-height: 1.7; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--slate); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
a  { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1.1rem; }
li { margin-bottom: 0.4rem; }
strong { font-weight: 700; color: var(--slate); }

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 5.5rem 0; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  background: var(--slate);
  padding: 0 1.5rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.01em; white-space: nowrap;
}
.nav-logo span { color: var(--teal-mid); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 0.45rem 1.1rem; border-radius: var(--r);
  font-weight: 700 !important; transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-dark) !important; text-decoration: none !important; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--slate);
  padding: 5rem 1.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate-mid) 100%);
  opacity: 0.6;
}
.hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  background: var(--teal); color: var(--white);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 0.9rem;
  border-radius: var(--r); margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 760px; }
.hero-sub { font-size: 1.15rem; color: var(--teal-mid); max-width: 640px; margin-bottom: 2rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-proof { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 2.5rem; }
.hero-proof strong { color: rgba(255,255,255,0.85); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font); font-weight: 700;
  border-radius: var(--r); cursor: pointer; transition: all 0.2s;
  text-decoration: none; border: none; font-size: 0.95rem; padding: 0.75rem 1.6rem;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); text-decoration: none; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); text-decoration: none; color: var(--white); }
.btn-slate { background: var(--slate); color: var(--white); }
.btn-slate:hover { background: var(--slate-dark); text-decoration: none; color: var(--white); }

/* ── PROBLEM STRIP ───────────────────────────────── */
.problem-strip { background: var(--teal-light); border-left: 4px solid var(--teal); }
.problem-strip .container { padding-top: 2.5rem; padding-bottom: 2.5rem; }

/* ── CARDS ───────────────────────────────────────── */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  box-shadow: var(--shadow);
}
.card-teal { background: var(--teal-light); border-color: var(--teal-mid); }
.card-slate { background: var(--slate); color: var(--white); border: none; }
.card-slate h3, .card-slate h4 { color: var(--teal-mid); }
.card-slate p  { color: rgba(255,255,255,0.82); }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; color: var(--teal); }
.card h3 { margin-bottom: 0.5rem; }

/* ── SECTOR PILLS ────────────────────────────────── */
.sector-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.sector-pill {
  background: var(--teal); color: var(--white);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700;
}

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar { background: var(--slate); padding: 3rem 1.5rem; }
.stats-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--teal-mid); line-height: 1; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.4rem; }

/* ── CLIENTS STRIP ───────────────────────────────── */
.clients-strip { background: var(--slate-light); padding: 2.5rem 1.5rem; }
.clients-inner { max-width: var(--max); margin: 0 auto; }
.clients-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; text-align: center; }
.clients-list { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: center; align-items: center; }
.client-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--slate-mid); letter-spacing: 0.02em;
  padding: 0.4rem 1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
}

/* ── CALLOUT / BLOCKQUOTE ────────────────────────── */
.callout {
  border-left: 4px solid var(--teal); background: var(--teal-light);
  padding: 1.25rem 1.5rem; border-radius: 0 var(--r) var(--r) 0;
  margin: 1.75rem 0;
}
.callout p { font-size: 1.05rem; color: var(--slate); font-weight: 500; margin: 0; }

blockquote {
  border-left: 4px solid var(--teal); padding: 1rem 1.5rem;
  background: var(--slate-light); border-radius: 0 var(--r) var(--r) 0;
  font-style: italic; color: var(--slate-mid); margin: 1.5rem 0;
}

/* ── CTA BOX ─────────────────────────────────────── */
.cta-box {
  background: var(--slate); border-radius: var(--r);
  padding: 3rem 2.5rem; text-align: center;
}
.cta-box h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-box p  { color: var(--teal-mid); margin-bottom: 1.75rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; color: var(--slate); font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--teal); flex-shrink: 0; }
.faq-a { margin-top: 0.75rem; color: var(--body); }

/* ── BREADCRUMB ──────────────────────────────────── */
.breadcrumb { font-size: 0.82rem; color: var(--muted); padding: 0.75rem 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal); text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ── BLOG GRID ───────────────────────────────────── */
.blog-card { display: flex; flex-direction: column; }
.blog-card .blog-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--slate); }
.blog-card h3 a:hover { color: var(--teal); text-decoration: none; }
.blog-card p  { font-size: 0.9rem; color: var(--body); flex: 1; }
.blog-tag {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 100px; margin-bottom: 0.5rem;
}

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--slate-dark); color: rgba(255,255,255,0.7); padding: 3.5rem 1.5rem 2rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; }
.footer-brand { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.footer-brand span { color: var(--teal-mid); }
.footer h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer ul a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { max-width: var(--max); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ── UTILITY ─────────────────────────────────────── */
.text-teal   { color: var(--teal); }
.text-slate  { color: var(--slate); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-small  { font-size: 0.875rem; }
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }   .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.bg-light  { background: var(--slate-light); }
.bg-teal   { background: var(--teal-light); }
.bg-white  { background: var(--white); }
.divider   { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

@media (max-width: 768px) {
  .two-col, .three-col { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3rem 0; }
}

/* ── BLOG POST BODY ──────────────────────────────── */
.post-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.post-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.post-body ul, .post-body ol { margin-bottom: 1.25rem; }
.post-body .callout { margin: 2rem 0; }
.post-intro { font-size: 1.1rem; color: var(--slate-mid); font-weight: 400; line-height: 1.75; margin-bottom: 2rem; }
.post-meta  { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.post-tag   { background: var(--teal-light); color: var(--teal-dark); padding: 0.2rem 0.7rem; border-radius: 100px; font-size: 0.78rem; font-weight: 700; }

/* ── RELATED POSTS ───────────────────────────────── */
.related-posts { background: var(--slate-light); padding: 3rem 0; margin-top: 3rem; }
.related-posts h2 { margin-bottom: 1.5rem; }

/* ── SERVICE SIDEBAR ─────────────────────────────── */
.sidebar-cta { background: var(--slate); padding: 1.75rem; border-radius: var(--r); margin-bottom: 1.5rem; }
.sidebar-cta h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.sidebar-cta p  { color: var(--teal-mid); font-size: 0.9rem; margin-bottom: 1.25rem; }
.sidebar-links { background: var(--teal-light); padding: 1.5rem; border-radius: var(--r); }
.sidebar-links h4 { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.sidebar-links ul { padding: 0; list-style: none; }
.sidebar-links ul li { border-bottom: 1px solid var(--border); padding: 0.5rem 0; }
.sidebar-links ul li:last-child { border-bottom: none; }
.sidebar-links ul a { font-size: 0.9rem; color: var(--teal-dark); font-weight: 500; }

/* ── POST LAYOUT ─────────────────────────────────── */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
@media(max-width:900px) { .post-layout { grid-template-columns: 1fr; } }
