/* =========================================================================
   Stop TB Partnership Nigeria — Theme Stylesheet
   Hand-ported from the Next.js source (app/globals.css + component-level
   Tailwind classes / styled-jsx blocks) into plain, dependency-free CSS
   so it works in any WordPress + Elementor install without a build step.
   ========================================================================= */

/* ---- 1. Brand tokens ---------------------------------------------------- */
:root {
  --red: #C8102E;
  --red-dark: #A00C24;
  --red-light: #FDEAEA;
  --red-mid: #F2C2C9;
  --green: #1A6B35;
  --green-dark: #0F4A24;
  --green-light: #E8F5EE;
  --green-mid: #7ecb9f;
  --green-950: #0f2419;
  --green-900: #14301f;
  --green-800: #1a3a2a;
  --green-700: #1e6b3c;
  --charcoal: #2B2B2B;
  --ink: #1A1A1A;
  --mid: #4A5E52;
  --muted: #6B7E72;
  --rule: #DEE5DF;
  --off: #F7F9F6;
  --white: #FFFFFF;

  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
  --font-mono: 'Source Code Pro', 'Courier New', monospace;

  --container-max: 1280px;
  --radius: 10px;
}

/* ---- 2. Reset & base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html.stb-scroll-smooth { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-serif);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); margin: 0; }
p { margin: 0; }
ul { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

.stb-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.stb-site-content { padding-top: 0; }

@keyframes stb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes stb-blob { 0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; } }
@keyframes stb-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---- 3. Header: flag strip, ticker, nav ---------------------------------- */
.stb-flag-strip {
  height: 4px;
  background: linear-gradient(to right, var(--green) 33%, white 33%, white 66%, var(--green) 66%);
}
.stb-ticker {
  background: var(--red);
  overflow: hidden;
  padding: 5px 0;
  white-space: nowrap;
}
.stb-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
  width: max-content;
  white-space: nowrap;
  animation: stb-marquee 26s linear infinite;
  will-change: transform;
}
.stb-ticker__item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.stb-ticker__dot { color: rgba(255,255,255,0.35); font-size: 0.7rem; margin-left: .3rem; }

.stb-navbar {
  background: var(--white);
  border-bottom: 2px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 500;
  transition: box-shadow .2s ease;
}
.stb-navbar.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.stb-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 2rem;
}
.stb-navbar__logo img { width: 170px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.nav-links li { position: relative; }
.nav-links li > a {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mid);
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-links li > a:hover { background: var(--green-light); color: var(--green-dark); }
.nav-links li.menu-item-has-children > a::after { content: '▾'; font-size: .6rem; }

.nav-links .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.nav-links li:hover > .sub-menu,
.nav-links li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .sub-menu li a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--mid);
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
.nav-links .sub-menu li:last-child a { border-bottom: none; }
.nav-links .sub-menu li a:hover { background: var(--green-light); }

.nav-links .nav-cta,
.nav-links a.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  margin-left: .35rem;
}
.nav-links .nav-cta:hover { background: var(--red-dark); }

.stb-navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.stb-navbar__hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.stb-navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.stb-navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.stb-navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .stb-navbar__hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 96px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    overflow-y: auto;
    border-top: 2px solid var(--rule);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li > a { padding: 0.9rem 1rem; font-size: 0.95rem; border-bottom: 1px solid var(--rule); border-radius: 0; }
  .nav-links .sub-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--off);
  }
  .nav-links li.is-open > .sub-menu { display: block; }
  .nav-links .nav-cta { margin: .5rem 1rem; text-align: center; }
}

/* ---- 4. Footer ------------------------------------------------------------ */
.stb-footer { background: var(--ink); color: rgba(255,255,255,.85); }
.stb-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 4rem 0;
}
@media (max-width: 992px) { .stb-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .stb-footer__grid { grid-template-columns: 1fr; } }
.stb-footer__logo img { width: 170px; margin-bottom: .75rem; }
.stb-footer__tagline { font-size: .85rem; font-style: italic; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 270px; margin-bottom: 1.25rem; }
.stb-footer__social { display: flex; gap: .4rem; margin-bottom: 1.2rem; }
.stb-footer__social a {
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); font-size: .8rem;
}
.stb-footer__social a:hover { color: #fff; }
.stb-footer__stat { background: rgba(200,16,46,.14); border: 1px solid rgba(200,16,46,.28); border-radius: 6px; padding: .85rem; }
.stb-footer__stat-label { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--red); display: block; margin-bottom: .2rem; }
.stb-footer__stat-value { font-family: var(--font-sans); font-weight: 900; font-size: 1.1rem; color: #fff; }
.stb-footer__stat-sub { font-size: .7rem; color: rgba(255,255,255,.28); margin-top: .1rem; }
.stb-footer__col h4 {
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.55); padding-bottom: .5rem; margin-bottom: .9rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.stb-footer__col ul { list-style: none; padding: 0; }
.stb-footer__col ul li { margin-bottom: .4rem; }
.stb-footer__col ul li a { font-size: .85rem; color: rgba(255,255,255,.35); }
.stb-footer__col ul li a:hover { color: #fff; }
.stb-footer__newsletter-copy { font-size: .75rem; color: rgba(255,255,255,.35); margin-bottom: .75rem; }
.stb-footer__newsletter { display: flex; gap: .25rem; }
.stb-footer__newsletter input { flex: 1; font-size: .75rem; padding: .5rem .75rem; border: none; border-radius: 5px; background: #fff; color: var(--ink); }
.stb-footer__newsletter button { padding: .5rem .75rem; border: none; border-radius: 5px; background: var(--red); color: #fff; font-weight: 800; font-size: .7rem; text-transform: uppercase; }
.stb-footer__bottom { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.stb-footer__copy { font-family: var(--font-mono); font-size: .7rem; color: rgba(255,255,255,.22); }
.stb-footer__legal { display: flex; gap: .9rem; }
.stb-footer__legal a { font-family: var(--font-mono); font-size: .7rem; color: rgba(255,255,255,.22); }
.stb-footer__flag { display: flex; height: 12px; width: 24px; border-radius: 3px; overflow: hidden; }
.stb-footer__flag span { flex: 1; }
.stb-footer__flag span:nth-child(1), .stb-footer__flag span:nth-child(3) { background: var(--green); }
.stb-footer__flag span:nth-child(2) { background: #fff; }

/* ---- 5. Page hero ---------------------------------------------------------- */
.stb-page-hero {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 50%, var(--green-950) 100%);
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.stb-page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,203,159,.3), transparent);
}
.stb-badge {
  display: inline-block;
  background: rgba(126,203,159,.12);
  border: 1px solid rgba(126,203,159,.3);
  color: var(--green-mid);
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 20px; margin-bottom: 1.25rem;
}
.stb-page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.03em;
  margin: 0 0 1rem; max-width: 720px;
}
.stb-page-hero__subtitle { font-size: 1.05rem; color: rgba(255,255,255,.6); max-width: 620px; line-height: 1.65; }

/* ---- 6. Layout: sections / grids ------------------------------------------- */
.stb-section { padding: 5rem 0; background: #fff; }
.stb-section--dark { background: var(--green-950); color: rgba(255,255,255,.85); }
.stb-section--off { background: var(--off); }
.stb-section__head { text-align: center; margin-bottom: 3.2rem; }
.stb-section__head.stb-align-left { text-align: left; }
.stb-eyebrow {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green-mid); display: block; margin-bottom: .5rem;
}
.stb-section__head h2, h2.stb-h { font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.stb-h-white { color: #fff !important; }
.stb-section__head p, .stb-section__lede { color: rgba(0,0,0,.55); font-size: .9rem; max-width: 34rem; margin: .75rem auto 0; }
.stb-section--dark .stb-section__lede { color: rgba(255,255,255,.55); }

.stb-grid { display: grid; gap: 1.4rem; }
.stb-grid--2 { grid-template-columns: repeat(2, 1fr); }
.stb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.stb-grid--4 { grid-template-columns: repeat(4, 1fr); }
.stb-grid--split { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 992px) {
  .stb-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stb-grid--split { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .stb-grid--2, .stb-grid--3, .stb-grid--4 { grid-template-columns: 1fr; }
}

.stb-stack { display: flex; flex-direction: column; gap: 1rem; }

/* ---- 7. Cards -------------------------------------------------------------- */
.stb-card {
  background: rgba(0,0,0,.02);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.stb-section--dark .stb-card,
.stb-section--dark .stb-row-card,
.stb-section--dark .stb-event-row {
  background: rgba(255,255,255,.03);
  border-color: rgba(126,203,159,.12);
  color: rgba(255,255,255,.85);
}
.stb-card h3, .stb-card h4 { margin-bottom: .5rem; }
.stb-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }
.stb-section--dark .stb-card p { color: rgba(255,255,255,.55); }
.stb-card .stb-icon { font-size: 1.9rem; display: block; margin-bottom: .85rem; }

.stb-card--article { display: flex; flex-direction: column; gap: .7rem; }
.stb-card__meta { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.stb-card__meta time { font-size: .72rem; color: rgba(0,0,0,.4); }
.stb-section--dark .stb-card__meta time { color: rgba(255,255,255,.4); }
.stb-tag { font-family: var(--font-sans); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.stb-card__media { height: 170px; border-radius: 10px; overflow: hidden; background: linear-gradient(135deg, var(--green-900), var(--green-800)); display: flex; align-items: center; justify-content: center; }
.stb-card__media img { width: 100%; height: 100%; object-fit: cover; }
.stb-card__media--placeholder { font-size: 2rem; color: rgba(255,255,255,.2); }

.stb-row-card, .stb-event-row {
  background: rgba(0,0,0,.02);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
}
.stb-row-card h4 { margin: .3rem 0 .4rem; font-size: .95rem; }
.stb-row-card p { color: var(--muted); font-size: .85rem; line-height: 1.6; }
.stb-section--dark .stb-row-card p { color: rgba(255,255,255,.55); }

.stb-event-row { display: flex; align-items: center; gap: 1.4rem; }
.stb-event-row__date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--green-700); border-radius: 10px; padding: .7rem 1rem; min-width: 62px; flex-shrink: 0; color: #fff;
}
.stb-event-row__date span { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.stb-event-row__date small { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.stb-event-row__body { flex: 1; }
.stb-event-row__title-line { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.stb-event-row__title-line h4 { margin: 0; }
.stb-muted { font-size: .78rem; color: var(--muted); }
.stb-section--dark .stb-muted { color: rgba(255,255,255,.45); }

.stb-stat-card { background: rgba(0,0,0,.02); border: 1px solid var(--rule); border-radius: 12px; padding: 1.3rem; }
.stb-section--dark .stb-stat-card { background: rgba(255,255,255,.03); border-color: rgba(126,203,159,.12); }
.stb-stat-card__value { font-family: var(--font-sans); font-size: 1.9rem; font-weight: 900; letter-spacing: -.03em; color: var(--green-mid); line-height: 1; margin-bottom: .3rem; }
.stb-stat-card__label { font-size: .72rem; color: rgba(255,255,255,.5); }
.stb-section:not(.stb-section--dark) .stb-stat-card__value { color: var(--green); }
.stb-section:not(.stb-section--dark) .stb-stat-card__label { color: var(--muted); }

/* ---- 8. Buttons & badges --------------------------------------------------- */
.stb-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-sans); font-weight: 700; font-size: .85rem;
  padding: .8rem 1.6rem; border-radius: 8px; border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.stb-btn--primary { background: var(--green-700); color: #fff !important; }
.stb-btn--primary:hover { background: #2d9e5f; transform: translateY(-1px); }
.stb-btn--outline { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.3); }
.stb-btn--outline:hover { background: rgba(255,255,255,.08); }
.stb-btn--light { background: #fff; color: var(--red) !important; }
.stb-btn--light:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.stb-btn--red { background: var(--red); color: #fff !important; }
.stb-btn--red:hover { background: var(--red-dark); }

.stb-link-arrow { color: var(--green-mid); font-size: .82rem; font-weight: 700; }
.stb-section:not(.stb-section--dark) .stb-link-arrow { color: var(--green-700); }
.stb-link-arrow:hover { text-decoration: underline; }

.stb-pill { display: inline-flex; align-items: center; gap: .4rem; background: rgba(0,0,0,.03); border: 1px solid var(--rule); border-radius: 999px; padding: .45rem 1rem; font-size: .82rem; color: var(--mid); }
.stb-section--dark .stb-pill { background: rgba(255,255,255,.04); border-color: rgba(126,203,159,.12); color: rgba(255,255,255,.7); }

/* ---- 9. CTA banner / Quote -------------------------------------------------- */
.stb-cta-banner {
  background: linear-gradient(135deg, var(--green-700), var(--green));
  padding: 5rem 0;
  border-top: 1px solid rgba(126,203,159,.15);
  color: #fff;
}
.stb-cta-banner__row { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.stb-cta-banner h2 { margin: .4rem 0 .75rem; font-size: 2rem; }
.stb-cta-banner p { color: rgba(255,255,255,.65); max-width: 30rem; margin-bottom: 1.4rem; }
.stb-cta-banner--center { text-align: center; }
.stb-cta-banner--center .stb-cta-banner__row { display: block; }
.stb-cta-banner--center p { margin-left: auto; margin-right: auto; }
.stb-cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.stb-cta-banner--center .stb-cta-banner__actions { justify-content: center; }

.stb-date-badge { background: rgba(0,0,0,.3); border: 1px solid rgba(126,203,159,.2); border-radius: 18px; padding: 2rem 3rem; text-align: center; flex-shrink: 0; }
.stb-date-badge span { display: block; font-size: .85rem; color: rgba(255,255,255,.5); }
.stb-date-badge strong { display: block; font-size: 4rem; font-weight: 900; color: var(--green-mid); line-height: 1; letter-spacing: -.03em; }
.stb-date-badge em { display: block; font-style: normal; font-weight: 700; font-size: .85rem; margin-top: .4rem; }

.stb-quote { background: var(--red); padding: 4.5rem 0; text-align: center; color: #fff; }
.stb-quote blockquote { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 1.6rem; line-height: 1.6; max-width: 44rem; margin: 0 auto 1.25rem; }
.stb-quote cite { font-family: var(--font-sans); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); font-style: normal; }

/* ---- 10. Marquee / stat strip / newsletter bar ----------------------------- */
.stb-marquee-strip { background: var(--charcoal); border-top: 4px solid var(--red); padding: 0.85rem 0; overflow: hidden; }
.stb-marquee-strip__label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.22); text-align: center; display: block; margin-bottom: .4rem; }
.stb-marquee-strip__track { overflow: hidden; }
.stb-marquee-strip__group { display: inline-flex; gap: 2.75rem; white-space: nowrap; animation: stb-marquee 24s linear infinite; }
.stb-marquee-strip__item { font-family: var(--font-sans); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.3); }

.stb-impact-strip { background: #fff; border-bottom: 1px solid var(--rule); }
.stb-impact-strip__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stb-impact-strip__cell { padding: 1.7rem 1rem; text-align: center; border-right: 1px solid var(--rule); }
.stb-impact-strip__cell:last-child { border-right: none; }
.stb-impact-strip__value { font-family: var(--font-sans); font-size: 2.1rem; font-weight: 900; color: var(--red); }
.stb-impact-strip__value.is-green { color: var(--green); }
.stb-impact-strip__label { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .2rem; }
@media (max-width: 768px) { .stb-impact-strip__grid { grid-template-columns: repeat(3, 1fr); } .stb-impact-strip__cell:nth-child(3) { border-right: none; } }

.stb-strip { padding: 1.25rem 0; }
.stb-strip--dark { background: var(--green-950); border-bottom: 1px solid rgba(126,203,159,.1); color: #fff; }
.stb-strip__row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.stb-strip__msg { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.stb-strip__msg strong { font-size: .9rem; }
.stb-strip__msg span { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---- 11. Forms -------------------------------------------------------------- */
.stb-inline-form { display: flex; gap: .5rem; }
.stb-inline-form input { background: rgba(255,255,255,.06); border: 1px solid rgba(126,203,159,.25); border-radius: 6px; padding: .55rem .9rem; color: #fff; font-size: .82rem; min-width: 220px; }
.stb-inline-form input::placeholder { color: rgba(255,255,255,.35); }
.stb-inline-form button { background: var(--green-700); color: #fff; border: none; border-radius: 6px; padding: .55rem 1.1rem; font-weight: 700; font-size: .82rem; }
.stb-inline-form button:hover { background: #2d9e5f; }

.stb-form { display: flex; flex-direction: column; gap: 1.1rem; max-width: 640px; }
.stb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .stb-form__row { grid-template-columns: 1fr; } }
.stb-field { display: flex; flex-direction: column; gap: .35rem; }
.stb-field label { font-family: var(--font-sans); font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: var(--mid); }
.stb-field input, .stb-field select, .stb-field textarea {
  background: rgba(0,0,0,.02); border: 1px solid var(--rule); border-radius: 8px;
  padding: .75rem 1rem; font-size: .88rem; color: var(--ink); outline: none;
}
.stb-field input:focus, .stb-field select:focus, .stb-field textarea:focus { border-color: var(--green-mid); }
.stb-form-submit { background: var(--green-700); color: #fff; border: none; border-radius: 8px; padding: 1rem; font-weight: 800; font-size: .88rem; }
.stb-form-submit:hover { background: #2d9e5f; }

/* ---- 12. Hero (home) --------------------------------------------------------- */
.stb-hero { min-height: 90vh; position: relative; overflow: hidden; display: flex; align-items: center; padding: 8rem 0 5rem; background: var(--green); }
.stb-hero__blob { position: absolute; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; pointer-events: none; }
.stb-hero__blob--1 { width: 24rem; height: 24rem; top: -8rem; right: -5rem; background: var(--red); opacity: .1; animation: stb-blob 10s ease-in-out infinite; }
.stb-hero__blob--2 { width: 20rem; height: 20rem; bottom: -5rem; left: 2.5rem; background: #fff; opacity: .05; animation: stb-blob 14s ease-in-out infinite reverse; }
.stb-hero__grid { display: grid; grid-template-columns: 1fr 390px; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
@media (max-width: 992px) { .stb-hero__grid { grid-template-columns: 1fr; } .stb-hero__card { display: none; } }
.stb-hero__kicker { font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-mid); display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; }
.stb-hero__kicker::before { content: ''; width: 16px; height: 2px; background: var(--red); display: inline-block; }
.stb-hero__title { font-family: var(--font-sans); font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 1.4rem; }
.stb-hero__title .accent-1 { color: #FF8A96; }
.stb-hero__title .accent-2 { color: var(--green-mid); }
.stb-hero__lede { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.7); max-width: 32rem; line-height: 1.85; margin-bottom: 2rem; }
.stb-hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.stb-hero__card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.25); }
.stb-hero__card-head { background: var(--charcoal); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .4rem; }
.stb-hero__card-dot { width: 8px; height: 8px; border-radius: 50%; }
.stb-hero__card-label { font-family: var(--font-mono); font-size: .7rem; color: rgba(255,255,255,.35); margin-left: .4rem; }
.stb-hero__stat-row { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1.25rem; border-bottom: 1px solid var(--rule); }
.stb-hero__stat-row span:first-child { font-size: .85rem; color: var(--muted); max-width: 140px; }
.stb-hero__stat-row span.value { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 900; color: var(--red); }
.stb-hero__stat-row span.value.is-green { color: var(--green); }
.stb-hero__card-foot { background: var(--red); padding: .9rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.stb-hero__card-foot strong { color: #fff; font-family: var(--font-sans); font-size: .88rem; text-transform: uppercase; display: block; }
.stb-hero__card-foot small { color: rgba(255,255,255,.55); font-style: italic; }
.stb-hero__card-foot a { color: rgba(255,255,255,.7); font-weight: 700; font-size: .78rem; font-family: var(--font-sans); }

/* ---- 13. Split content blocks (About-style) --------------------------------- */
.stb-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
@media (max-width: 992px) { .stb-split { grid-template-columns: 1fr; gap: 2.5rem; } }
.stb-split__media { position: relative; width: 100%; min-height: 340px; border-radius: 14px; overflow: hidden; background: linear-gradient(145deg, var(--green-dark), #0a3d1e); }
.stb-split__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.stb-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin: 1.5rem 0; }
.stb-mini-card { padding: 1rem; border-radius: 8px; position: relative; overflow: hidden; }
.stb-mini-card--green { background: var(--green); }
.stb-mini-card--charcoal { background: var(--charcoal); }
.stb-mini-card__label { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); display: block; margin-bottom: .25rem; }
.stb-mini-card__text { font-family: var(--font-serif); font-style: italic; color: #fff; font-size: .88rem; }

.stb-chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.stb-chip { font-family: var(--font-mono); font-size: .72rem; font-weight: 700; padding: .3rem .8rem; border-radius: 999px; background: var(--green-light); color: var(--green-dark); border: 1px solid var(--green-mid); }
.stb-section--dark .stb-chip { background: rgba(255,255,255,.04); border-color: rgba(126,203,159,.12); color: rgba(255,255,255,.75); }

.stb-info-box { background: #fff; border: 1px solid var(--rule); border-radius: 8px; padding: .9rem 1.1rem; display: flex; align-items: center; gap: .8rem; margin-top: 1.5rem; }
.stb-info-box .icon { font-size: 1.5rem; }

/* ---- 14. Misc --------------------------------------------------------------- */
.stb-empty { text-align: center; color: var(--muted); padding: 2rem 0; }
.stb-pagination { margin-top: 2.5rem; text-align: center; }
.stb-single { max-width: 860px; }
.stb-single__meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.stb-single__media { border-radius: 12px; overflow: hidden; margin-bottom: 2rem; }
.stb-single__content { font-size: 1rem; line-height: 1.85; color: var(--mid); }
.stb-single__content p { margin-bottom: 1.1rem; }
.stb-single__back { margin-top: 2.5rem; }
.stb-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .stb-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .stb-news-grid { grid-template-columns: 1fr; } }
.stb-news-card { border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
.stb-news-card__body { padding: 1.25rem; }

.stb-page__header { padding: 3.5rem 0 1rem; }
.stb-page__title { font-size: 2.4rem; font-weight: 800; }
.stb-page__content { padding-bottom: 3rem; }

/* Elementor canvas/content areas should not add extra top padding. */
.stb-elementor-page .stb-page__header { display: none; }
.elementor-page .stb-page__content { padding: 0; }

/* =========================================================================
   15. Elementor native-widget hooks
   ---------------------------------------------------------------------
   The imported page templates use Elementor's own Heading / Text Editor /
   Button / Image widgets (not raw "HTML" code widgets) so every headline,
   paragraph, and button is independently selectable and editable in the
   Elementor panel. These rules re-target the design system above onto
   Elementor's actual rendered markup (.elementor-heading-title,
   .elementor-button, etc.) via the "CSS Classes" advanced-tab class each
   widget/column carries — descendant selectors so they hold regardless of
   Elementor's own wrapper divs.
   ========================================================================= */

.stb-eyebrow .elementor-heading-title {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green-mid); display: block; margin-bottom: .5rem;
}
.stb-section:not(.stb-section--dark) .stb-eyebrow .elementor-heading-title { color: var(--red); }

.stb-h2 .elementor-heading-title { font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.stb-h2.stb-h-white .elementor-heading-title,
.stb-section--dark .stb-h2 .elementor-heading-title { color: #fff; }

.stb-lede .elementor-widget-container p { color: rgba(0,0,0,.55); font-size: .9rem; line-height: 1.7; margin: 0; }
.stb-section--dark .stb-lede .elementor-widget-container p { color: rgba(255,255,255,.55); }

.stb-badge .elementor-heading-title {
  display: inline-block; background: rgba(126,203,159,.12); border: 1px solid rgba(126,203,159,.3);
  color: var(--green-mid); font-family: var(--font-sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 20px;
}
.stb-hero-title .elementor-heading-title {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.03em;
}
.stb-hero-subtitle .elementor-widget-container p { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }

.stb-icon .elementor-heading-title { font-size: 1.9rem; line-height: 1; display: block; margin-bottom: .5rem; }

.stb-card-title .elementor-heading-title { font-size: 1rem; font-weight: 800; margin-bottom: .35rem; letter-spacing: -.01em; }
.stb-section--dark .stb-card-title .elementor-heading-title,
.stb-section--dark .stb-row-card .stb-card-title .elementor-heading-title { color: #fff; }

.stb-card-desc .elementor-widget-container p { color: var(--muted); font-size: .88rem; line-height: 1.65; margin: 0; }
.stb-section--dark .stb-card-desc .elementor-widget-container p { color: rgba(255,255,255,.55); }

.stb-meta-row .elementor-widget-container { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: .5rem; }
.stb-meta-row .elementor-widget-container p { margin: 0; }

.stb-num-badge { position: absolute; top: 14px; right: 14px; pointer-events: none; }
.stb-num-badge .elementor-heading-title { font-size: 2.8rem; font-weight: 900; color: var(--rule); line-height: 1; }

.stb-stat-value .elementor-heading-title {
  font-family: var(--font-sans); font-size: 1.9rem; font-weight: 900; letter-spacing: -.03em;
  color: var(--green-mid); line-height: 1; margin-bottom: .3rem;
}
.stb-stat-label .elementor-heading-title { font-size: .72rem; color: rgba(255,255,255,.5); }
.stb-section:not(.stb-section--dark) .stb-stat-value .elementor-heading-title { color: var(--green); }
.stb-section:not(.stb-section--dark) .stb-stat-label .elementor-heading-title { color: var(--muted); }

.stb-btn .elementor-button {
  font-family: var(--font-sans); font-weight: 700; font-size: .85rem; border-radius: 8px;
  padding: .8rem 1.6rem; border: 2px solid transparent; transition: transform .15s ease, background .15s ease;
}
.stb-btn--primary .elementor-button { background: var(--green-700); color: #fff; }
.stb-btn--primary .elementor-button:hover { background: #2d9e5f; }
.stb-btn--light .elementor-button { background: #fff; color: var(--red); }
.stb-btn--light .elementor-button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.stb-btn--outline .elementor-button { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.stb-btn--outline .elementor-button:hover { background: rgba(255,255,255,.08); }
.stb-btn--red .elementor-button { background: var(--red); color: #fff; }
.stb-btn--red .elementor-button:hover { background: var(--red-dark); }
.stb-btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.stb-btn-row .elementor-widget-button { margin: 0; }
.stb-btn-row.center { justify-content: center; }
