/* ═══════════════════════════════════════════════════════════
   MindLab Systems — main.css  v2.0  (mobile-first)
   Brand: Deep teal #0F2E2E | Mid teal #1D6B6B | Gold #DCB428
   Font: DM Sans (body) | DM Serif Display (display headings)
═══════════════════════════════════════════════════════════ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; color: #1a1a1a; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: #1D6B6B; text-decoration: none; }
a:hover { color: #0F2E2E; }
button { font-family: inherit; cursor: pointer; }

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --dk:       #0F2E2E;
  --tl:       #1D6B6B;
  --tlm:      #2A8A8A;
  --tll:      #E4F4F4;
  --tlx:      #F0F9F9;
  --gd:       #DCB428;
  --gdd:      #A88510;
  --gdl:      #FBF3D5;
  --tx:       #1a1a1a;
  --mu:       #556;
  --bd:       rgba(0,0,0,.1);
  --rm:       8px;
  --rl:       12px;
  --rx:       16px;
  --max-w:    1100px;
}

/* ── Layout ──────────────────────────────────────────────── */
.wrap       { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.section    { padding: 40px 0; }
.sec-eyebrow { font-size: 11px; font-weight: 500; color: var(--tl); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.sec-sub    { font-size: 14px; color: var(--mu); line-height: 1.7; margin-bottom: 24px; }

/* ── Gold accent bar ─────────────────────────────────────── */
.gold-bar   { height: 3px; background: var(--gd); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--gd); color: var(--dk); border: none;
  border-radius: var(--rm); padding: 12px 22px;
  font-size: 14px; font-weight: 500; transition: background .15s;
  width: 100%;
}
.btn-gold:hover  { background: #c9a220; color: var(--dk); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--rm); padding: 12px 22px;
  font-size: 14px; width: 100%; transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
.btn-teal {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tl); color: #fff; border: none;
  border-radius: var(--rm); padding: 10px 20px;
  font-size: 13px; font-weight: 500; transition: background .15s;
}
.btn-teal:hover { background: var(--dk); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  background: #fff; border-bottom: 0.5px solid var(--bd);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; height: 56px;
}
.site-branding img,
.custom-logo       { height: 22px; width: auto; display: block; }
.site-name         { font-size: 15px; font-weight: 500; color: var(--dk); }
.header-right      { display: flex; align-items: center; gap: 10px; }
.header-cta {
  background: var(--tl); color: #fff; border: none;
  border-radius: var(--rm); padding: 7px 14px;
  font-size: 13px; font-weight: 500; transition: background .15s;
}
.header-cta:hover  { background: var(--dk); color: #fff; }

/* Hamburger */
.mobile-menu-toggle {
  background: none; border: none; padding: 4px;
  display: flex; flex-direction: column; gap: 5px;
}
.mobile-menu-toggle .bar {
  width: 20px; height: 1.5px; background: var(--dk);
  transition: transform .2s, opacity .2s; display: block;
}
.mobile-menu-toggle.open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Dropdown nav ────────────────────────────────────────── */
.dropdown-nav {
  background: #fff; border-bottom: 0.5px solid var(--bd);
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.dropdown-nav.open { max-height: 700px; }
.dropdown-inner    { padding: 16px; }
.dd-section        { margin-bottom: 16px; }
.dd-section-title  {
  font-size: 10px; font-weight: 500; color: var(--tl);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 8px; padding-bottom: 6px;
  border-bottom: 0.5px solid var(--bd);
}
.dd-links          { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dd-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 8px; border-radius: var(--rm);
  font-size: 13px; color: #556;
  transition: background .12s, color .12s;
}
.dd-link:hover, .dd-link:active { background: var(--tll); color: var(--tl); }
.dd-link i         { font-size: 14px; color: var(--tl); flex-shrink: 0; }
.dd-cta {
  background: var(--dk); border-radius: var(--rm);
  padding: 14px; margin-top: 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.dd-cta-text       { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }
.dd-cta-text strong { display: block; color: #fff; font-size: 13px; margin-bottom: 4px; }
.dd-cta-btn {
  background: var(--gd); color: var(--dk); border: none;
  border-radius: var(--rm); padding: 8px 14px;
  font-size: 12px; font-weight: 500; white-space: nowrap;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero              { background: var(--dk); padding: 40px 16px 32px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(220,180,40,.18); color: var(--gd);
  font-size: 11px; font-weight: 500;
  padding: 4px 11px; border-radius: 20px; margin-bottom: 18px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; font-weight: 400; line-height: 1.25;
  color: #fff; margin-bottom: 14px;
}
.hero h1 em        { font-style: normal; color: var(--gd); }
.hero-sub          { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 24px; }
.hero-btns         { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero-illo         { display: flex; justify-content: center; padding-top: 8px; }

/* ── Stats strip ─────────────────────────────────────────── */
.stats-strip       { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--bd); }
.stat              { padding: 16px; border-right: 0.5px solid var(--bd); border-bottom: 0.5px solid var(--bd); }
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
.stat-n            { font-size: 24px; font-weight: 500; color: var(--tl); margin-bottom: 3px; }
.stat-l            { font-size: 11px; color: var(--mu); line-height: 1.4; }

/* ── Service cards ───────────────────────────────────────── */
.svc-grid          { display: grid; grid-template-columns: 1fr; gap: 10px; }
.svc-card {
  background: #fff; border: 0.5px solid var(--bd);
  border-radius: var(--rl); padding: 18px;
  transition: border-color .15s;
}
.svc-card:hover    { border-color: var(--tl); }
.svc-ico {
  width: 36px; height: 36px; border-radius: var(--rm);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-bottom: 12px;
}
.ico-teal          { background: var(--tll); color: var(--tl); }
.ico-gold          { background: var(--gdl); color: var(--gdd); }
.svc-title         { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.svc-desc          { font-size: 13px; color: var(--mu); line-height: 1.6; margin-bottom: 10px; }
.svc-link          { font-size: 12px; color: var(--tl); display: flex; align-items: center; gap: 4px; }

/* ── Split section ───────────────────────────────────────── */
.split             { padding: 32px 16px; border-bottom: 0.5px solid var(--bd); }
.split .illo-wrap {
  border-radius: var(--rl); background: var(--tlx);
  padding: 20px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.split-text h2     { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.split-text p      { font-size: 13px; color: var(--mu); line-height: 1.75; margin-bottom: 14px; }
.split-text ul     { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.split-text li     { font-size: 13px; color: var(--mu); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.split-text li i   { color: var(--tl); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* ── Testimonials ────────────────────────────────────────── */
.testi-strip       { background: var(--dk); padding: 36px 16px; }
.testi-strip h2    { font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 20px; text-align: center; }
.testi-grid        { display: grid; grid-template-columns: 1fr; gap: 12px; }
.testi {
  background: rgba(255,255,255,.07);
  border: 0.5px solid rgba(255,255,255,.12);
  border-radius: var(--rl); padding: 18px;
}
.testi-q           { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.testi-author      { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; }
.testi-role        { font-size: 11px; color: rgba(255,255,255,.3); }

/* ── Proof band ──────────────────────────────────────────── */
.proof-band        { padding: 22px 16px; background: var(--tlx); border-top: 0.5px solid var(--bd); border-bottom: 0.5px solid var(--bd); }
.proof-band p      { font-size: 12px; color: var(--mu); margin-bottom: 12px; }
.pills             { display: flex; flex-wrap: wrap; gap: 7px; }
.pill {
  background: #fff; border: 0.5px solid var(--bd);
  border-radius: 20px; padding: 4px 11px;
  font-size: 12px; color: var(--mu);
}

/* ── Insights grid ───────────────────────────────────────── */
.ins-grid          { display: grid; grid-template-columns: 1fr; gap: 10px; }
.ins-card {
  background: #fff; border: 0.5px solid var(--bd);
  border-radius: var(--rl); padding: 16px;
}
.ins-card h3       { font-size: 14px; font-weight: 500; line-height: 1.5; margin-bottom: 8px; }
.ins-card h3 a     { color: var(--tx); }
.ins-card h3 a:hover { color: var(--tl); }
.ins-meta          { font-size: 11px; color: #999; }
.ins-featured      { border-left: 3px solid var(--gd); border-radius: 0 var(--rl) var(--rl) 0; }
.tag               { display: inline-block; font-size: 11px; font-weight: 500; padding: 3px 8px; border-radius: 20px; margin-bottom: 8px; }
.tag-teal          { background: var(--tll); color: #085041; }
.tag-gold          { background: var(--gdl); color: var(--gdd); }
.tag-purple        { background: #EEEDFE; color: #3C3489; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band          { padding: 40px 16px; text-align: center; background: var(--tlx); border-top: 0.5px solid var(--bd); }
.cta-band h2       { font-family: 'DM Serif Display', serif; font-size: 26px; font-weight: 400; margin-bottom: 10px; }
.cta-band p        { font-size: 14px; color: var(--mu); line-height: 1.7; margin-bottom: 22px; }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero         { background: var(--dk); padding: 32px 16px; }
.page-hero .eyebrow { font-size: 10px; font-weight: 500; color: var(--gd); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.page-hero h1      { font-family: 'DM Serif Display', serif; font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 8px; }
.page-hero p       { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.75; }

/* ── Industry cards ──────────────────────────────────────── */
.ind-grid          { display: grid; grid-template-columns: 1fr; gap: 10px; }
.ind-card          { background: #fff; border: 0.5px solid var(--bd); border-radius: var(--rl); padding: 18px; }
.ind-top           { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ind-ico           { width: 34px; height: 34px; border-radius: var(--rm); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ind-title         { font-size: 14px; font-weight: 500; }
.ind-desc          { font-size: 13px; color: var(--mu); line-height: 1.6; margin-bottom: 12px; }
.ind-pills         { display: flex; flex-wrap: wrap; gap: 5px; }
.ind-pill          { font-size: 11px; padding: 2px 7px; border-radius: 20px; background: #f5f5f5; color: var(--mu); border: 0.5px solid var(--bd); }

/* ── Webinar card ────────────────────────────────────────── */
.webinar-card      { display: flex; gap: 14px; align-items: center; background: #fff; border: 0.5px solid var(--bd); border-radius: var(--rl); padding: 14px; margin-bottom: 10px; }
.wdate             { text-align: center; min-width: 38px; }
.wdate-month       { font-size: 10px; font-weight: 500; color: var(--tl); text-transform: uppercase; }
.wdate-day         { font-size: 22px; font-weight: 500; line-height: 1; }
.webinar-title     { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.webinar-sub       { font-size: 12px; color: var(--mu); }
.webinar-sub a     { color: var(--tl); }

/* ── About page ──────────────────────────────────────────── */
.about-hero        { background: var(--dk); padding: 32px 16px; }
.about-hero h1     { font-family: 'DM Serif Display', serif; font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.about-hero p      { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.75; }
.value-border      { background: #fff; border-left: 3px solid var(--gd); padding: 12px 14px; margin-bottom: 8px; }
.value-border .vt  { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.value-border .vd  { font-size: 12px; color: var(--mu); line-height: 1.5; }
.vals-grid         { display: grid; grid-template-columns: 1fr; gap: 10px; }
.val-card          { background: #fff; border: 0.5px solid var(--bd); border-radius: var(--rl); padding: 16px; }
.val-ico           { font-size: 20px; color: var(--tl); margin-bottom: 8px; }
.val-title         { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.val-desc          { font-size: 13px; color: var(--mu); line-height: 1.6; }
.team-card         { background: #fff; border: 0.5px solid var(--bd); border-radius: var(--rl); padding: 20px; }
.team-top          { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--tll); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 500; color: var(--tl); flex-shrink: 0;
}
.team-name         { font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.team-role         { font-size: 12px; color: var(--tl); font-weight: 500; }
.team-bio          { font-size: 13px; color: var(--mu); line-height: 1.6; margin-bottom: 12px; }
.team-tags         { display: flex; flex-wrap: wrap; gap: 5px; }
.team-tag          { font-size: 11px; padding: 2px 7px; border-radius: 20px; background: var(--tll); color: var(--tl); }

/* ── Contact page ────────────────────────────────────────── */
.contact-top       { background: var(--dk); padding: 28px 16px; }
.contact-top h1    { font-family: 'DM Serif Display', serif; font-size: 24px; font-weight: 400; color: #fff; margin-bottom: 8px; }
.contact-top p     { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; }
.contact-details   { padding: 20px 16px; background: var(--tlx); border-bottom: 0.5px solid var(--bd); }
.det               { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.det-ico           { width: 30px; height: 30px; border-radius: var(--rm); background: var(--tll); display: flex; align-items: center; justify-content: center; color: var(--tl); font-size: 14px; flex-shrink: 0; }
.det-label         { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: .05em; font-weight: 500; margin-bottom: 2px; }
.det-value         { font-size: 13px; color: var(--tx); }
.det-value a       { color: var(--tl); }
.det-sub           { font-size: 11px; color: var(--mu); }
.response-promise  { background: #fff; border: 0.5px solid var(--bd); border-radius: var(--rl); padding: 12px 14px; display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.response-promise i { color: var(--tl); font-size: 16px; flex-shrink: 0; }
.response-promise-text { font-size: 12px; color: var(--mu); line-height: 1.5; }
.response-promise-text strong { color: var(--tx); }
.contact-form-wrap { padding: 24px 16px; }
.contact-form-wrap h2 { font-size: 18px; font-weight: 500; margin-bottom: 18px; }
.form-group        { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label  { font-size: 12px; font-weight: 500; color: var(--mu); }
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 14px; padding: 10px 12px;
  border-radius: var(--rm); border: 0.5px solid #ccc;
  background: #fff; color: var(--tx); width: 100%;
  font-family: 'DM Sans', sans-serif;
  -webkit-appearance: none; transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  { outline: none; border-color: var(--tl); box-shadow: 0 0 0 3px rgba(29,107,107,.1); }
.form-group textarea         { resize: vertical; min-height: 100px; }
.form-req                    { color: var(--gdd); }
.form-opt                    { font-size: 11px; color: #999; font-weight: 400; }
.btn-submit {
  width: 100%; background: var(--tl); color: #fff; border: none;
  border-radius: var(--rm); padding: 13px;
  font-size: 14px; font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 4px; transition: background .15s;
}
.btn-submit:hover    { background: var(--dk); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-note           { font-size: 11px; color: #999; text-align: center; margin-top: 10px; }
.contact-success     { background: var(--tll); border: 1px solid var(--tl); border-radius: var(--rm); padding: 14px 16px; font-size: 14px; color: var(--tl); margin-bottom: 18px; display: none; }
.contact-error       { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--rm); padding: 14px 16px; font-size: 14px; color: #991b1b; margin-bottom: 18px; display: none; }

/* ── Single post / page ──────────────────────────────────── */
.entry-wrap         { max-width: 720px; margin: 0 auto; padding: 40px 16px; }
.entry-eyebrow      { font-size: 11px; font-weight: 500; color: var(--tl); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.entry-title        { font-family: 'DM Serif Display', serif; font-size: 28px; font-weight: 400; margin: 8px 0 6px; line-height: 1.25; }
.entry-meta         { font-size: 13px; color: #999; margin-bottom: 24px; }
.entry-thumbnail    { border-radius: var(--rl); overflow: hidden; margin-bottom: 28px; }
.entry-content      { font-size: 16px; line-height: 1.8; color: var(--tx); }
.entry-content h2   { font-family: 'DM Serif Display', serif; font-size: 24px; font-weight: 400; margin: 28px 0 10px; }
.entry-content h3   { font-size: 18px; font-weight: 500; margin: 22px 0 8px; }
.entry-content p    { margin-bottom: 18px; }
.entry-content ul,
.entry-content ol   { margin: 0 0 18px 22px; }
.entry-content li   { margin-bottom: 6px; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer        { background: var(--dk); padding: 36px 16px 0; }
.footer-logo img    { height: 22px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-tagline     { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 28px; }
.footer-cols        { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.footer-col-title   { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; color: var(--gd); margin-bottom: 12px; }
.footer-col ul      { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col a       { font-size: 12px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,.1);
  padding: 14px 0;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 11px; color: rgba(255,255,255,.3);
}
.footer-bottom a    { color: rgba(255,255,255,.3); }

/* ── Section divider ─────────────────────────────────────── */
.section-divider    { height: 0.5px; background: var(--bd); margin: 0; }
.section-row-title  { font-size: 13px; font-weight: 500; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 0.5px solid var(--bd); }

/* ── Backgrounds ─────────────────────────────────────────── */
.bg-secondary       { background: #f8f8f8; }
.bg-teal-xlight     { background: var(--tlx); }

/* ═══════════════════════════════════════════════════════════
   TABLET — 600px+
═══════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  .wrap               { padding: 0 24px; }
  .header-inner       { padding: 0 24px; }
  .hero               { padding: 48px 24px 36px; }
  .hero h1            { font-size: 34px; }
  .hero-btns          { flex-direction: row; }
  .btn-gold,
  .btn-ghost          { width: auto; }
  .stats-strip        { grid-template-columns: repeat(4, 1fr); }
  .stat               { border-bottom: none; }
  .stat:nth-child(2n) { border-right: 0.5px solid var(--bd); }
  .stat:last-child    { border-right: none; }
  .svc-grid           { grid-template-columns: 1fr 1fr; }
  .ins-grid           { grid-template-columns: 1fr 1fr; }
  .ind-grid           { grid-template-columns: 1fr 1fr; }
  .testi-grid         { grid-template-columns: 1fr 1fr; }
  .vals-grid          { grid-template-columns: 1fr 1fr; }
  .footer-cols        { grid-template-columns: repeat(3, 1fr); }
  .dd-links           { grid-template-columns: repeat(3, 1fr); }
  .contact-details,
  .contact-form-wrap  { padding-left: 24px; padding-right: 24px; }
  .split              { padding: 36px 24px; }
  .page-hero,
  .about-hero,
  .contact-top        { padding: 36px 24px; }
  .section            { padding: 48px 0; }
  .proof-band         { padding: 26px 24px; }
  .cta-band           { padding: 48px 24px; }
  .testi-strip        { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP — 900px+
═══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .wrap               { padding: 0 28px; }
  .header-inner       { padding: 0 28px; height: 64px; max-width: var(--max-w); margin: 0 auto; }
  .site-branding img,
  .custom-logo        { height: 26px; }
  .hero               { padding: 64px 0 52px; }
  .hero-inner         { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 380px; align-items: center; gap: 40px; }
  .hero h1            { font-size: 42px; }
  .hero-btns          { flex-direction: row; }
  .btn-gold,
  .btn-ghost          { width: auto; }
  .hero-illo          { padding-top: 0; }
  .stats-strip        { max-width: 100%; }
  .svc-grid           { grid-template-columns: repeat(3, 1fr); }
  .ins-grid           { grid-template-columns: repeat(3, 1fr); }
  .ind-grid           { grid-template-columns: 1fr 1fr; }
  .testi-grid         { grid-template-columns: repeat(3, 1fr); }
  .vals-grid          { grid-template-columns: repeat(3, 1fr); }
  .split {
    padding: 52px 28px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
  }
  .split .illo-wrap   { margin-bottom: 0; }
  .split.flip         { direction: rtl; }
  .split.flip > *     { direction: ltr; }
  .split-text h2      { font-size: 24px; }
  .contact-layout     { display: grid; grid-template-columns: 1fr 1.4fr; }
  .contact-top        { grid-column: 1 / -1; }
  .contact-details    { border-right: 0.5px solid var(--bd); border-bottom: none; }
  .contact-form-wrap  { padding: 36px 40px; }
  .contact-details    { padding: 36px 40px; }
  .page-hero h1       { font-size: 34px; }
  .about-hero         { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: center; padding: 52px 28px; }
  .about-hero h1      { font-size: 34px; }
  .about-hero p       { font-size: 15px; }
  .cta-band h2        { font-size: 32px; }
  .footer-cols        { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom      { flex-direction: row; justify-content: space-between; }
  .dropdown-inner     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 24px 28px; max-width: var(--max-w); margin: 0 auto; }
  .dd-section         { margin-bottom: 0; }
  .dd-links           { grid-template-columns: 1fr; }
  .dd-cta             { flex-direction: column; align-items: flex-start; }
  .entry-wrap         { padding: 56px 28px; }
  .entry-title        { font-size: 36px; }
  .proof-band .wrap,
  .section .wrap      { max-width: var(--max-w); }
}

/* ── Accessibility ───────────────────────────────────────── */
:focus-visible      { outline: 2px solid var(--tl); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }

/* ── Header scroll behaviour ─────────────────────────────── */
.site-header          { transition: transform .25s ease; }
.site-header.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.site-header.hidden   { transform: translateY(-100%); }

/* ── Two-column form row on tablet+ ─────────────────────── */
@media (min-width: 600px) {
  .form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── Tabler icons in nav ─────────────────────────────────── */
.dd-link i, .svc-ico .ti, .val-ico .ti, .det-ico .ti,
.hero-eyebrow .ti, .split-text li .ti, .btn-gold .ti,
.btn-ghost .ti, .btn-teal .ti, .btn-submit .ti,
.response-promise .ti, .testi-strip h2 + * .ti { font-family: 'tabler-icons'; }

/* ── Additional page template styles ────────────────────── */
.bg-secondary        { background: #f8f8f8; }
.split.bg-secondary  { background: #f8f8f8; }

.ind-grid            { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ind-card            { background: #fff; border: 0.5px solid rgba(0,0,0,.1); border-radius: 12px; padding: 18px; }
.ind-top             { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ind-ico             { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.ind-title           { font-size: 14px; font-weight: 500; }
.ind-desc            { font-size: 13px; color: #556; line-height: 1.6; margin-bottom: 12px; }
.ind-pills           { display: flex; flex-wrap: wrap; gap: 5px; }
.ind-pill            { font-size: 11px; padding: 2px 8px; border-radius: 20px; background: #f5f5f5; color: #556; border: 0.5px solid rgba(0,0,0,.1); }

.vals-grid           { display: grid; grid-template-columns: 1fr; gap: 10px; }
.val-card            { background: #fff; border: 0.5px solid rgba(0,0,0,.1); border-radius: 12px; padding: 18px; }
.val-ico             { font-size: 20px; color: #1D6B6B; margin-bottom: 10px; }
.val-title           { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.val-desc            { font-size: 13px; color: #556; line-height: 1.6; }

.value-border        { background: #fff; border-left: 3px solid #DCB428; padding: 12px 14px; margin-bottom: 8px; }
.value-border .vt    { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.value-border .vd    { font-size: 12px; color: #556; line-height: 1.5; }

.team-card           { background: #fff; border: 0.5px solid rgba(0,0,0,.1); border-radius: 12px; padding: 20px; }
.team-top            { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.avatar              { width: 54px; height: 54px; border-radius: 50%; background: #E4F4F4; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 500; color: #1D6B6B; flex-shrink: 0; }
.team-name           { font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.team-role           { font-size: 12px; color: #1D6B6B; font-weight: 500; }
.team-bio            { font-size: 13px; color: #556; line-height: 1.6; margin-bottom: 12px; }
.team-tags           { display: flex; flex-wrap: wrap; gap: 5px; }
.team-tag            { font-size: 11px; padding: 2px 7px; border-radius: 20px; background: #E4F4F4; color: #1D6B6B; }

.ins-featured        { border-left: 3px solid #DCB428; border-radius: 0 12px 12px 0; }

.eyebrow             { font-size: 10px; font-weight: 500; color: #DCB428; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.about-hero .eyebrow,
.page-hero .eyebrow  { color: #DCB428; }

@media (min-width: 600px) {
  .ind-grid   { grid-template-columns: 1fr 1fr; }
  .vals-grid  { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .ind-grid   { grid-template-columns: 1fr 1fr; }
  .vals-grid  { grid-template-columns: repeat(3, 1fr); }
}
