/* ═══════════════════════════════════════════════════════
   DWS V3 STYLESHEET
   Dynamic Workforce Solutions · Carol Hirsch
   Brand: Navy #1A2B52 · Teal #028090 · Gold #C9A84C
   Light-background-primary design philosophy
   Font: Arial
═══════════════════════════════════════════════════════ */

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

:root {
  --navy:       #1A2B52;
  --navy2:      #243B6E;
  --navy-dk:    #111D38;
  --teal:       #028090;
  --teal-lt:    #5EC8D4;
  --teal-bg:    #D4EEF2;
  --gold:       #C9A84C;
  --gold-lt:    #E8C96A;
  --gold-warm:  #E8924A;
  --off:        #F4F8F9;
  --cream:      #FAFAF8;
  --white:      #FFFFFF;
  --text:       #1E293B;
  --gray:       #4A5568;
  --gray-lt:    #94A3B8;
  --border:     #E2E8F0;
  --nav-h:      72px;
  --font:       Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}

/* ─── ANNOUNCEMENT BANNER ─────────────────────────────── */
.announce-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 11px 80px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 200;
  animation: fadeIn 0.6s ease;
}
.announce-bar strong { font-weight: 700; }
.announce-bar a { color: var(--gold-lt); font-weight: 700; text-decoration: underline; }
.announce-close {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.6); cursor: pointer;
  font-size: 20px; line-height: 1; padding: 4px 8px;
  transition: color 0.2s;
}
.announce-close:hover { color: var(--white); }
.announce-bar.hidden { display: none; }

/* ─── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: sticky; top: 0;
  height: var(--nav-h);
  background: var(--navy);
  display: flex; align-items: center;
  padding: 0 60px;
  z-index: 100;
  border-bottom: 3px solid var(--teal);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 28px rgba(17,29,56,0.35); }

.nav-brand {
  text-decoration: none; margin-right: auto;
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1;
}
.nav-brand .logo-dws {
  font-family: var(--font); font-size: 22px; font-weight: 900;
  color: var(--white); letter-spacing: -0.5px; text-transform: uppercase;
}
.nav-brand .logo-dws .logo-w { color: var(--gold); }
.nav-brand .logo-rule { width: 100%; height: 1.5px; background: linear-gradient(90deg, var(--teal-lt), transparent); margin: 4px 0 5px; }
.nav-brand .logo-full { font-size: 8px; font-weight: 400; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  text-decoration: none; position: relative; padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--teal-lt); transition: width 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { background: var(--gold); width: 100%; }

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft  { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(3deg); } }
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes tealPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(2,128,144,0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(2,128,144,0); }
}

/* Page entrance */
.page-wrap { opacity: 0; animation: fadeIn 0.5s ease 0.05s forwards; }

/* Scroll-reveal classes (driven by IntersectionObserver) —
   scoped under html.js so content is visible by default and only
   hidden-then-revealed when JavaScript actually runs. If JS is
   blocked or fails, .reveal elements simply render normally instead
   of staying invisible forever. */
.js .reveal        { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal-left   { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal-right  { opacity: 0; transform: translateX(28px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ─── TYPOGRAPHY ──────────────────────────────────────── */
.eyebrow {
  display: block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-lt   { color: var(--teal-lt); }

.section-title { font-size: 40px; font-weight: 900; color: var(--navy); line-height: 1.1; }
.section-title .accent { color: var(--teal); }
.section-title .gold   { color: var(--gold); }
.section-sub { font-size: 15px; color: var(--gray); line-height: 1.75; margin-top: 14px; max-width: 640px; }

.gold-rule { width: 56px; height: 3px; background: var(--gold); margin: 18px 0; }
.teal-rule { width: 56px; height: 3px; background: var(--teal); margin: 18px 0; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 30px;
  font-family: var(--font); font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; cursor: pointer;
  transition: all 0.22s; border: 2px solid transparent;
}
.btn-navy   { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy2); border-color: var(--navy2); transform: translateY(-1px); }
.btn-gold   { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); }
.btn-teal   { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-lt); border-color: var(--teal-lt); transform: translateY(-1px); animation: tealPulse 1s ease-out; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ─── HERO V3 — HOME (light-primary) ─────────────────── */
.hero-v3 {
  min-height: calc(100vh - var(--nav-h));
  background: var(--white);
  display: flex; align-items: center;
  padding: 80px 60px;
  position: relative; overflow: hidden;
}
/* Corner-bracket accents (geometric, not gradient blobs) */
.hero-v3 .blob-1 {
  position: absolute; right: 60px; top: 60px;
  width: 200px; height: 200px;
  border-top: 2px solid rgba(94,200,212,0.4);
  border-right: 2px solid rgba(94,200,212,0.4);
  pointer-events: none;
}
.hero-v3 .blob-2 {
  position: absolute; left: 40px; bottom: 40px;
  width: 140px; height: 140px;
  border-bottom: 2px solid rgba(201,168,76,0.35);
  border-left: 2px solid rgba(201,168,76,0.35);
  pointer-events: none;
}
.hero-v3 .blob-3 { display: none; }

.hero-v3-inner {
  max-width: 1150px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 47% 53%;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}

.hero-eyebrow {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--teal); margin-bottom: 22px;
  animation: slideInLeft 0.7s ease 0.2s both;
}
.hero-h1 {
  font-size: 60px; font-weight: 900; color: var(--navy); line-height: 1.03; margin-bottom: 8px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-h1 .hero-gold { color: var(--gold); display: block; }
.hero-tagline {
  font-size: 16px; font-style: italic; color: var(--teal);
  line-height: 1.5; margin: 18px 0 20px;
  padding-left: 18px; border-left: 3px solid var(--gold);
  animation: fadeInUp 0.7s ease 0.45s both;
}
.hero-sub {
  font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 38px;
  animation: fadeInUp 0.7s ease 0.55s both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.65s both; }

/* Stat cards panel */
.hero-stats { display: flex; flex-direction: column; gap: 16px; animation: slideInRight 0.7s ease 0.4s both; }

/* Methodology wheel (hero right column) */
.hero-process { width: 100%; display: flex; align-items: center; justify-content: center; }
.hero-process svg { display: block; width: 100%; height: auto; max-width: 600px; }

/* Staged sequential fade-in of the methodology cycle, once the graphic
   scrolls into view: AI Readiness Diagnostic first, then each step in
   order, then the arrow that closes the loop back to Cost-Benefit
   Analysis. Scoped under html.js so the artwork is fully visible by
   default if JavaScript never runs. */
.js .hero-process svg .stage-0,
.js .hero-process svg .stage-1,
.js .hero-process svg .stage-2,
.js .hero-process svg .stage-3,
.js .hero-process svg .stage-4,
.js .hero-process svg .stage-5,
.js .hero-process svg .stage-6 { opacity: 0; }

@keyframes dwsStageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-process.visible svg .stage-0 { animation: dwsStageIn 0.6s ease forwards; animation-delay: 0.1s; }
.hero-process.visible svg .stage-1 { animation: dwsStageIn 0.6s ease forwards; animation-delay: 0.6s; }
.hero-process.visible svg .stage-2 { animation: dwsStageIn 0.6s ease forwards; animation-delay: 1.1s; }
.hero-process.visible svg .stage-3 { animation: dwsStageIn 0.6s ease forwards; animation-delay: 1.6s; }
.hero-process.visible svg .stage-4 { animation: dwsStageIn 0.6s ease forwards; animation-delay: 2.1s; }
.hero-process.visible svg .stage-5 { animation: dwsStageIn 0.6s ease forwards; animation-delay: 2.6s; }
.hero-process.visible svg .stage-6 { animation: dwsStageIn 0.6s ease forwards; animation-delay: 3.1s; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stats-row .stat-card:hover { transform: translateY(-4px); }

.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--teal); padding: 24px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-left-color 0.25s;
}
.stat-card:nth-child(2) { border-left-color: var(--gold); }
.stat-card:nth-child(3) { border-left-color: var(--navy); }
.stat-card:hover { box-shadow: 0 8px 28px rgba(26,43,82,0.12); transform: translateX(-4px); }
.stat-card .stat-num {
  font-size: 50px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px;
  display: flex; align-items: baseline; gap: 2px;
}
.stat-card .stat-num .pre { font-size: 28px; font-weight: 700; }
.stat-card .stat-num .suf { font-size: 28px; font-weight: 700; color: var(--teal); }
.stat-card .stat-num .suf-gold { font-size: 28px; font-weight: 700; color: var(--gold); }
.stat-card .stat-label { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* ─── SECTION CONTAINERS ──────────────────────────────── */
.section       { padding: 80px 60px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-hdr   { margin-bottom: 56px; }

.bg-white  { background: var(--white); }
.bg-off    { background: var(--off); }
.bg-cream  { background: var(--cream); }
.bg-teal-s { background: var(--teal-bg); }
.bg-navy   { background: var(--navy); }
.bg-navy-dk{ background: var(--navy-dk); }

/* ─── FEATURE LIST (What We Do) ───────────────────────── */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-list  { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 22px; background: var(--white);
  border: 1px solid var(--border); border-left: 3px solid var(--teal);
  transition: box-shadow 0.2s, border-left-color 0.2s, transform 0.2s;
}
.feature-item:nth-child(even) { border-left-color: var(--gold); }
.feature-item:hover { box-shadow: 0 4px 20px rgba(26,43,82,0.09); transform: translateX(4px); }
.feature-num { font-size: 26px; font-weight: 900; color: var(--border); min-width: 28px; line-height: 1.1; }
.feature-item strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.feature-item p  { font-size: 12.5px; color: var(--gray); line-height: 1.55; }

/* ─── PROPRIETARY IP SECTION ──────────────────────────── */
.ip-section {
  background: var(--navy); padding: 80px 60px; position: relative; overflow: hidden;
}
.ip-section .ip-blob-1 {
  position: absolute; right: 40px; top: 40px;
  width: 160px; height: 160px;
  border-top: 2px solid rgba(94,200,212,0.25);
  border-right: 2px solid rgba(94,200,212,0.25);
  pointer-events: none;
}
.ip-section .ip-blob-2 {
  position: absolute; left: 40px; bottom: 40px;
  width: 120px; height: 120px;
  border-bottom: 2px solid rgba(201,168,76,0.2);
  border-left: 2px solid rgba(201,168,76,0.2);
  pointer-events: none;
}
.ip-section-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.ip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.ip-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--teal-lt); padding: 36px 30px;
  transition: background 0.25s, transform 0.25s;
}
.ip-card:nth-child(2) { border-top-color: var(--gold); }
.ip-card:nth-child(3) { border-top-color: var(--teal); }
.ip-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.ip-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal-lt); margin-bottom: 16px; display: block;
}
.ip-card:nth-child(2) .ip-badge { color: var(--gold-lt); }
.ip-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.25; }
.ip-card p  { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.65; }
.ip-stat { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }
.ip-stat-num { font-size: 30px; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
.ip-stat-label { font-size: 11px; color: rgba(255,255,255,0.42); }

/* ─── CTA STRIPS ──────────────────────────────────────── */
.cta-strip { padding: 72px 60px; text-align: center; background: var(--teal-bg); border-top: 4px solid var(--teal); }
.cta-strip h2 { font-size: 34px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.cta-strip p  { font-size: 15px; color: var(--gray); margin-bottom: 34px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-strip-navy { background: var(--navy); border-top: 4px solid var(--teal); }
.cta-strip-navy h2 { color: var(--white); }
.cta-strip-navy p  { color: rgba(255,255,255,0.6); }

/* ─── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--navy); padding: 60px 60px 56px;
  position: relative; overflow: hidden;
}
.page-hero-blob {
  position: absolute; right: 40px; top: 40px;
  width: 160px; height: 160px;
  border-top: 2px solid rgba(94,200,212,0.3);
  border-right: 2px solid rgba(94,200,212,0.3);
  pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 46px; font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 16px; max-width: 640px;
}
.page-hero h1 .accent { color: var(--teal-lt); }
.page-hero h1 .gold   { color: var(--gold); }
.page-hero p  { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.7; max-width: 560px; font-style: italic; }

/* ─── SERVICES PAGE ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--border); }
.service-card {
  background: var(--white); padding: 48px 44px;
  border-top: 4px solid transparent;
  transition: border-top-color 0.25s, box-shadow 0.25s;
}
.service-card:hover { border-top-color: var(--teal); box-shadow: 0 8px 32px rgba(26,43,82,0.1); }
.service-card-num { font-size: 52px; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 20px; }
.service-card-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block;
}
.service-card h3  { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.service-divider  { width: 40px; height: 2px; background: var(--gold); margin: 16px 0; }
.service-card p   { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.service-card p + p { margin-top: 14px; }
.service-tool {
  margin-top: 22px; padding: 12px 16px;
  background: var(--off); border-left: 3px solid var(--teal-lt);
  font-size: 11.5px; color: var(--teal); font-weight: 700; letter-spacing: 0.4px;
}
.service-tool span { color: var(--gray); font-weight: 400; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--border); margin-top: 48px; }
.process-step { background: var(--off); padding: 36px 28px; border-top: 3px solid transparent; transition: border-top-color 0.25s; }
.process-step:nth-child(odd)  { border-top-color: var(--teal); }
.process-step:nth-child(even) { border-top-color: var(--gold); }
.process-step-num { font-size: 40px; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 16px; }
.process-step h4  { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.process-step p   { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* ─── MARKETS PAGE ────────────────────────────────────── */
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.market-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--navy); padding: 26px 24px;
  transition: box-shadow 0.2s, border-left-color 0.2s;
}
.market-card:hover { box-shadow: 0 4px 20px rgba(26,43,82,0.1); border-left-color: var(--teal); }
.market-card.gold-accent { border-left-color: var(--gold); }
.market-card.teal-accent { border-left-color: var(--teal); }
.market-card h4  { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.market-card p   { font-size: 12.5px; color: var(--gray); line-height: 1.6; }
.market-signal   { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: baseline; gap: 8px; }
.signal-num      { font-size: 22px; font-weight: 900; color: var(--teal); }
.signal-num.gold { color: var(--gold); }
.signal-label    { font-size: 11px; color: var(--gray-lt); }

/* Contact page: two-path chooser */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.path-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 4px solid var(--gold); padding: 40px 36px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.path-card.path-alt { border-top-color: var(--navy); }
.path-card:hover { box-shadow: 0 8px 32px rgba(26,43,82,0.1); transform: translateY(-2px); }
.path-card-badge { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 12px; }
.path-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.path-card p { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }

.tier-section   { margin-bottom: 64px; }
.tier-header    { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.tier-badge { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; }
.tier-badge.primary  { background: var(--teal); color: var(--white); }
.tier-badge.secondary{ background: var(--navy); color: var(--white); }
.tier-badge.emerging { background: var(--off); color: var(--gray); border: 1px solid var(--border); }
.tier-header h3 { font-size: 21px; font-weight: 700; color: var(--navy); }
.tier-header p  { font-size: 13px; color: var(--gray); }

.pos-strip { background: var(--navy); padding: 64px 60px; }
.pos-strip-inner { max-width: 1100px; margin: 0 auto; }
.pos-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; margin-top: 40px; }
.pos-col { background: rgba(255,255,255,0.04); padding: 32px 28px; }
.pos-dws { background: var(--teal-bg); padding: 32px 28px; position: relative; border-top: 3px solid var(--teal); }
.pos-dws::before { content: '★ DWS ★'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); font-size: 8.5px; font-weight: 700; letter-spacing: 2px; padding: 4px 14px; white-space: nowrap; }
.pos-col h4  { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.pos-dws h4  { color: var(--navy); }
.pos-col p   { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; }
.pos-dws p   { color: var(--text); }
.pos-vs      { display: flex; align-items: center; justify-content: center; padding: 0 20px; color: rgba(255,255,255,0.2); font-size: 10px; font-weight: 700; letter-spacing: 2px; }

/* ─── ABOUT PAGE ──────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-lead {
  font-size: 19px; font-style: italic; color: var(--navy);
  line-height: 1.65; border-left: 3px solid var(--gold);
  padding-left: 24px; margin-bottom: 30px;
}
.about-body p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-body p:last-child { margin-bottom: 0; }

.certs-list { display: flex; flex-direction: column; gap: 12px; }
.cert-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; background: var(--white);
  border: 1px solid var(--border); border-left: 3px solid var(--teal);
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.cert-item:hover { border-left-color: var(--gold); box-shadow: 0 2px 12px rgba(26,43,82,0.07); }
.cert-icon { width: 34px; height: 34px; flex-shrink: 0; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.cert-icon svg { width: 16px; height: 16px; }
.cert-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.cert-text span   { font-size: 11.5px; color: var(--gray-lt); }

.cred-bar { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 60px; }
.cred-bar-inner { max-width: 1100px; margin: 0 auto; }
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.cred-item { text-align: center; }
.cred-num   { font-size: 46px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.cred-num .accent { color: var(--teal); }
.cred-num .gold   { color: var(--gold); }
.cred-label { font-size: 12.5px; color: var(--gray); line-height: 1.5; }

.speaking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.speaking-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--teal); padding: 28px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.speaking-card:hover { box-shadow: 0 4px 20px rgba(26,43,82,0.09); transform: translateY(-2px); }
.event-label { font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.speaking-card h4     { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.speaking-card .topic { font-size: 13px; font-style: italic; color: var(--teal); margin-bottom: 8px; }
.speaking-card p      { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.diff-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 32px 28px; background: var(--off);
  border-top: 3px solid var(--teal);
  transition: box-shadow 0.2s;
}
.diff-card:nth-child(even) { border-top-color: var(--gold); }
.diff-card:hover { box-shadow: 0 4px 20px rgba(26,43,82,0.08); }
.diff-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.diff-icon svg { width: 18px; height: 18px; }
.diff-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.diff-card p  { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ─── CONTACT PAGE ────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3     { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-info .sub   { font-size: 13.5px; color: var(--gray); margin-bottom: 36px; }
.contact-item        { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-icon   { width: 42px; height: 42px; flex-shrink: 0; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-label  { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.contact-item-value  { font-size: 14px; color: var(--text); }
.contact-item-value a { color: var(--navy); text-decoration: none; font-weight: 600; }
.contact-item-value a:hover { color: var(--teal); }

.contact-form-box { background: var(--white); padding: 44px 40px; border-top: 4px solid var(--teal); box-shadow: 0 4px 40px rgba(26,43,82,0.08); }
.diagnostic-embed { background: var(--white); border-top: 4px solid var(--gold); box-shadow: 0 4px 40px rgba(26,43,82,0.08); overflow: hidden; }
.contact-form-box h3 { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 2px;
  font-family: var(--font); font-size: 14px;
  color: var(--text); background: var(--off);
  transition: border-color 0.2s; outline: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--teal); background: var(--white); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; background: var(--navy); color: var(--white); border: none; border-radius: 2px; font-family: var(--font); font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--teal); }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dk); padding: 36px 60px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 3px solid var(--teal);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .logo-dws { font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; text-transform: uppercase; }
.footer-brand .logo-dws .logo-w { color: var(--gold); }
.footer-brand .logo-rule { width: 100%; height: 1.5px; background: linear-gradient(90deg, var(--teal-lt), transparent); margin: 4px 0 5px; }
.footer-brand .logo-full { font-size: 8px; font-weight: 400; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.footer-tagline { font-size: 10.5px; color: rgba(255,255,255,0.3); margin-top: 5px; font-style: italic; }
.footer-contact { text-align: right; font-size: 11.5px; color: rgba(255,255,255,0.4); line-height: 1.9; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.2); margin-top: 4px; }

/* ─── SHARED REVEAL SCRIPT ────────────────────────────── */
/* Loaded via inline <script> in each page                  */

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Nav */
  .nav { padding: 0 28px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 0.8px; }

  /* Sections */
  .section { padding: 60px 28px; }
  .cred-bar { padding: 48px 28px; }
  .cta-strip { padding: 56px 28px; }
  .ip-section { padding: 60px 28px; }
  .page-hero { padding: 48px 28px 44px; }
  .pos-strip { padding: 56px 28px; }
  .site-footer { padding: 32px 28px; }

  /* 2-col grids → 1-col */
  .hero-v3-inner    { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid     { grid-template-columns: 1fr; gap: 40px; }
  .about-grid       { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
  .path-grid        { grid-template-columns: 1fr; gap: 24px; }
  .diff-grid        { grid-template-columns: 1fr; }
  .speaking-grid    { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .stats-row        { grid-template-columns: 1fr; gap: 16px; }

  /* 3-col grids → 2-col */
  .markets-grid     { grid-template-columns: 1fr 1fr; }
  .ip-grid          { grid-template-columns: 1fr 1fr; }
  .cred-grid        { grid-template-columns: 1fr 1fr; }

  /* 4-col → 2-col */
  .process-grid     { grid-template-columns: 1fr 1fr; }

  /* Hero */
  .hero-v3 { padding: 60px 28px; min-height: auto; }
  .hero-h1  { font-size: 44px; }
  .hero-stats { gap: 12px; }

  /* Section titles */
  .section-title { font-size: 32px; }
  .page-hero h1  { font-size: 36px; }

  /* Positioning grid */
  .pos-grid { grid-template-columns: 1fr; }
  .pos-vs   { display: none; }

  /* Service card 05 full-width inner grid */
  .service-card:last-child > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Announcement bar */
  .announce-bar { padding: 10px 44px 10px 16px; font-size: 12px; text-align: left; }

  /* Nav — hide text links, show hamburger-less compact version */
  .nav { padding: 0 20px; height: 60px; }
  .nav-brand .logo-dws  { font-size: 18px; }
  .nav-brand .logo-full { display: none; }
  .nav-brand .logo-rule { display: none; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.5px; }

  /* Page wrapper offset */
  :root { --nav-h: 60px; }

  /* Hero */
  .hero-v3  { padding: 44px 20px; }
  .hero-h1  { font-size: 36px; }
  .hero-tagline { font-size: 14px; }
  .hero-sub     { font-size: 14px; }
  .stat-card .stat-num { font-size: 38px; }
  .stat-card .stat-num .pre,
  .stat-card .stat-num .suf,
  .stat-card .stat-num .suf-gold { font-size: 22px; }

  /* Sections */
  .section   { padding: 48px 20px; }
  .cred-bar  { padding: 40px 20px; }
  .cta-strip { padding: 48px 20px; }
  .ip-section{ padding: 48px 20px; }
  .page-hero { padding: 40px 20px 36px; }
  .pos-strip { padding: 48px 20px; }
  .announce-bar { font-size: 11.5px; }

  /* All grids → single column */
  .markets-grid  { grid-template-columns: 1fr; }
  .ip-grid       { grid-template-columns: 1fr; }
  .cred-grid     { grid-template-columns: 1fr 1fr; gap: 20px; }
  .process-grid  { grid-template-columns: 1fr; }

  /* Typography */
  .section-title { font-size: 28px; }
  .page-hero h1  { font-size: 30px; }
  .cta-strip h2  { font-size: 26px; }
  .cred-num      { font-size: 36px; }

  /* Footer */
  .site-footer {
    flex-direction: column; gap: 24px; text-align: center;
    padding: 32px 20px;
  }
  .footer-contact { text-align: center; }

  /* Contact form */
  .contact-form-box { padding: 28px 20px; }

  /* Buttons */
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }

  /* IP cards */
  .ip-card { padding: 28px 22px; }

  /* Service card pricing block */
  .service-card { padding: 32px 24px; }

  /* About lead quote */
  .about-lead { font-size: 16px; }
}
