/* JES Wireframes - Shared Styles
   Imported by all individual wireframe files */

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

:root {
  --grey-50: #fafafa;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-300: #d1d1d1;
  --grey-400: #a0a0a0;
  --grey-500: #6b6b6b;
  --grey-600: #444;
  --grey-700: #333;
  --grey-800: #1a1a1a;
  --grey-900: #0d0d0d;
  --wire-blue: #4a90d9;
  --wire-blue-light: #e8f0fb;
  --white: #fff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Wireframe annotations ── */
.stag { display: inline-block; background: var(--wire-blue); color: white; font-size: 10px; font-weight: 700; width: 18px; height: 18px; line-height: 18px; text-align: center; border-radius: 50%; margin-right: 4px; flex-shrink: 0; }
.section-bar { background: var(--wire-blue-light); border-left: 3px solid var(--wire-blue); padding: 6px 12px; font-size: 11px; color: var(--grey-600); display: flex; align-items: center; gap: 4px; }
.section-bar strong { color: var(--wire-blue); }

/* ── Component annotations (purple = shared/reusable) ── */
.component-bar { background: #f5f0ff; border-left-color: #a855f7; }
.component-bar strong { color: #a855f7; }
.component-stag { background: #a855f7; }
.component-wrapper { border: 1.5px solid #a855f7; border-radius: 2px; position: relative; }

/* ── Shared elements ── */
.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 12px; }
.placeholder-img { background: var(--grey-200); border: 1px dashed var(--grey-300); display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* ── Buttons ── */
.btn-dark { background: var(--grey-800); color: var(--white); border: none; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-ghost { background: transparent; border: 1px solid var(--grey-300); color: var(--grey-800); padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-white { background: var(--white); color: var(--grey-800); border: none; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-ghost-white { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-ghost-light { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: var(--white); padding: 10px 20px; font-size: 13px; font-weight: 600; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-subscribe { background: var(--white); color: var(--grey-800); border: none; padding: 10px 20px; font-size: 13px; font-weight: 600; border-radius: 4px; cursor: pointer; }

/* ── Header ── */
.header { background: var(--white); border-bottom: 1px solid var(--grey-200); height: 64px; display: flex; align-items: center; padding: 0 40px; }
.header-logo { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; margin-right: 48px; }
.header-nav { display: flex; gap: 28px; flex: 1; }
.header-nav a { text-decoration: none; color: var(--grey-600); font-size: 14px; font-weight: 500; cursor: pointer; }
.header-nav .arrow { font-size: 10px; margin-left: 3px; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-login { font-size: 14px; color: var(--grey-500); text-decoration: none; }

/* ── Contact / Pilot Band ── */
.contact-band { background: var(--grey-700); color: var(--white); padding: 48px 40px; }
.contact-band-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-band-text h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.contact-band-text p { font-size: 15px; color: rgba(255,255,255,0.6); }
.contact-band-ctas { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: var(--grey-900); color: var(--white); padding: 56px 40px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-logo { font-size: 20px; font-weight: 800; margin-bottom: 40px; }
.footer-columns { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; padding-bottom: 40px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey-400); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 10px; }
.footer-newsletter { border-top: 1px solid rgba(255,255,255,0.1); padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-newsletter-text { font-size: 14px; color: var(--grey-400); }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 10px 16px; font-size: 14px; color: var(--white); border-radius: 4px; width: 280px; }
.footer-newsletter-form input::placeholder { color: var(--grey-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-legal { display: flex; gap: 24px; font-size: 13px; color: var(--grey-500); }
.footer-legal a { color: var(--grey-500); text-decoration: none; }
.footer-social { display: flex; gap: 12px; }
.footer-social-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--grey-400); }

/* ── Page Header (shared across hub pages) ── */
.page-header { padding: 80px 40px; background: var(--white); }
.page-header-inner { max-width: 1280px; margin: 0 auto; }
.page-header-inner .eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--grey-400); font-weight: 600; margin-bottom: 12px; }
.page-header-inner h1 { font-size: 44px; font-weight: 700; color: var(--grey-900); max-width: 720px; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.15; }
.page-header-inner p { font-size: 18px; color: var(--grey-500); max-width: 640px; line-height: 1.6; }

/* ── CTA Banner (shared across hub pages) ── */
.cta-banner { padding: 64px 40px; text-align: center; background: var(--white); }
.cta-banner-inner { max-width: 640px; margin: 0 auto; }
.cta-banner-inner h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.cta-banner-inner p { font-size: 16px; color: var(--grey-500); margin-bottom: 24px; line-height: 1.6; }
.cta-banner-inner .cta-buttons { display: flex; gap: 12px; justify-content: center; }

/* ── IBM Grid (used by Home trades + Trades Hub) ── */
.ibm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--grey-200); }
.ibm-grid-card { padding: 28px; border-right: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); min-height: 120px; display: flex; flex-direction: column; justify-content: space-between; }
.ibm-grid-card:nth-child(4n) { border-right: none; }
.ibm-grid-card:nth-child(n+5) { border-bottom: none; }
.ibm-grid-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.ibm-grid-card p { font-size: 13px; color: var(--grey-500); line-height: 1.4; }
.ibm-grid-card a { font-size: 12px; color: var(--grey-800); text-decoration: none; font-weight: 600; margin-top: 12px; }
.ibm-grid-card.dark { background: var(--grey-800); color: var(--white); }
.ibm-grid-card.dark h4 { color: var(--white); }
.ibm-grid-card.dark p { color: rgba(255,255,255,0.6); }
.ibm-grid-card.dark a { color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   CONSIDERATION PAGE PATTERNS
   Shared across: Service, Solution, Industry, Trade, Case Study,
   How We Work pages. Every Consideration page should use these
   classes for consistency.
   ════════════════════════════════════════════════════════════════ */

/* ── Content sections (alternating backgrounds) ── */
.ws { padding: 80px 40px; }
.ws-inner { max-width: 1280px; margin: 0 auto; }
.ws.bg-white { background: var(--white); }
.ws.bg-alt { background: var(--grey-50); }
.ws.bg-dark { background: var(--grey-800); color: var(--white); }
.ws.bg-dark h2 { color: var(--white); }
.ws.bg-dark p { color: rgba(255,255,255,0.6); }
.ws.bg-dark .eyebrow { color: var(--grey-400); }
.ws.bg-dark .ws-link { color: var(--white); }

/* ── Section headings ── */
.ws h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; }
.ws h2 + .ws-subtitle { font-size: 16px; color: var(--grey-500); max-width: 640px; line-height: 1.7; margin-bottom: 40px; }
.ws.bg-dark h2 + .ws-subtitle { color: rgba(255,255,255,0.6); }

/* ── Two-column layout ── */
.ws-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ws-two-col.flipped > :first-child { order: 2; }
.ws-two-col.flipped > :last-child { order: 1; }
.ws-two-col p { font-size: 16px; color: var(--grey-500); line-height: 1.7; margin-bottom: 16px; }
.ws-two-col h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px; }

/* ── Three-column role cards ── */
.ws-roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ws-role-card { border: 1px solid var(--grey-200); border-radius: 8px; padding: 32px; }
.ws-role-card .eyebrow { color: var(--grey-400); }
.ws-role-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.ws-role-card ul { list-style: none; padding: 0; }
.ws-role-card li { font-size: 14px; color: var(--grey-500); line-height: 1.6; padding: 6px 0; padding-left: 20px; position: relative; }
.ws-role-card li::before { content: "-"; position: absolute; left: 0; color: var(--grey-300); }
.ws-role-card .ws-note { font-size: 12px; color: var(--grey-400); margin-top: 16px; font-style: italic; }

/* ── Item grids (deliverables, pain points, features) ── */
.ws-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ws-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ws-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.ws-item { display: flex; gap: 16px; }
.ws-item-icon { width: 40px; height: 40px; background: var(--grey-200); border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 10px; }
.ws-item-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.ws-item-text p { font-size: 13px; color: var(--grey-500); line-height: 1.5; }

/* ── Cards (case studies, sub-types, general) ── */
.ws-card { border: 1px solid var(--grey-200); border-radius: 8px; overflow: hidden; background: var(--white); }
.ws-card-img { height: 200px; background: var(--grey-200); display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.ws-card-body { padding: 24px; }
.ws-card-body .ws-badge { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey-400); margin-bottom: 8px; }
.ws-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.ws-card-body h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.ws-card-body p { font-size: 14px; color: var(--grey-500); line-height: 1.5; }

/* ── Links ── */
.ws-link { font-size: 14px; font-weight: 600; color: var(--grey-800); text-decoration: none; display: inline-block; margin-top: 12px; }
.ws-view-all { text-align: center; margin-top: 32px; }
.ws-view-all a { font-size: 14px; font-weight: 600; color: var(--grey-800); text-decoration: none; }

/* ── Dark CTA section ── */
.ws-dark-cta { background: var(--grey-800); padding: 80px 40px; text-align: center; color: var(--white); }
.ws-dark-cta-inner { max-width: 640px; margin: 0 auto; }
.ws-dark-cta h2 { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.ws-dark-cta p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.6; }
.ws-dark-cta .cta-buttons { display: flex; gap: 12px; justify-content: center; }

/* ── Step cards (process, timeline) ── */
.ws-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ws-step { background: var(--white); border: 1px solid var(--grey-200); border-radius: 8px; padding: 28px; }
.ws-step-num { width: 32px; height: 32px; background: var(--grey-800); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.ws-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.ws-step p { font-size: 13px; color: var(--grey-500); line-height: 1.6; }

/* ── Overview bar (metadata strip) ── */
.ws-overview { background: var(--grey-50); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); padding: 24px 40px; }
.ws-overview-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 40px; flex-wrap: wrap; }
.ws-overview-item { }
.ws-overview-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--grey-400); font-weight: 600; margin-bottom: 4px; }
.ws-overview-value { font-size: 15px; font-weight: 600; color: var(--grey-800); }

/* ── Stats row ── */
.ws-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ws-stat { text-align: center; }
.ws-stat-num { font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.ws-stat-label { font-size: 14px; color: var(--grey-500); }

/* ── Table (LOD, frameworks) ── */
.ws-table { width: 100%; border-collapse: collapse; }
.ws-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey-400); font-weight: 600; padding: 12px 20px; border-bottom: 2px solid var(--grey-200); }
.ws-table td { padding: 16px 20px; border-bottom: 1px solid var(--grey-200); font-size: 14px; color: var(--grey-600); line-height: 1.5; vertical-align: top; }
.ws-table tr:last-child td { border-bottom: none; }
.ws-table tr:nth-child(even) td { background: var(--grey-50); }
.ws-table .lod-badge { display: inline-block; background: var(--grey-800); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; min-width: 60px; text-align: center; }

/* ── Engagement model cards (white cards on dark bg) ── */
.ws-model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ws-model-card { background: var(--white); border-radius: 8px; padding: 32px; color: var(--grey-800); }
.ws-model-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.ws-model-card p { font-size: 14px; color: var(--grey-500); line-height: 1.6; margin-bottom: 12px; }
.ws-model-meta { font-size: 13px; color: var(--grey-400); }
.ws-model-meta strong { color: var(--grey-600); }

/* ── Callout / quote ── */
.ws-callout { background: var(--white); border-left: 3px solid var(--grey-300); padding: 20px 24px; margin-top: 24px; border-radius: 0 6px 6px 0; }
.ws-callout p { font-size: 14px; color: var(--grey-600); line-height: 1.6; font-style: italic; }

/* ── Hero image overlay (case studies) ── */
.ws-hero-img { position: relative; height: 400px; background: var(--grey-200); display: flex; align-items: flex-end; overflow: hidden; }
.ws-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%); }
.ws-hero-content { position: relative; z-index: 1; padding: 40px; color: var(--white); width: 100%; }
.ws-hero-content h1 { font-size: 48px; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.ws-hero-badges { display: flex; gap: 8px; }
.ws-hero-badge { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; background: rgba(255,255,255,0.2); color: var(--white); padding: 6px 14px; border-radius: 4px; }

/* ── Placeholder diagram/table ── */
.ws-placeholder { background: var(--grey-100); border: 1px dashed var(--grey-300); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* ════════════════════════════════════════════════════════════════
   AUDIT-DRIVEN ADDITIONS - New shared components
   ════════════════════════════════════════════════════════════════ */

/* ── Split Hero (text left, image right - white bg) ── */
.ws-hero-split { padding: 80px 40px 64px; background: var(--white); }
.ws-hero-split-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ws-hero-split .eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--grey-400); font-weight: 600; margin-bottom: 12px; }
.ws-hero-split h1 { font-size: 44px; font-weight: 700; color: var(--grey-900); letter-spacing: -1px; margin-bottom: 16px; line-height: 1.15; }
.ws-hero-split p { font-size: 18px; color: var(--grey-500); line-height: 1.6; margin-bottom: 16px; }
.ws-hero-split .ws-hero-stat { font-size: 14px; color: var(--grey-800); font-weight: 600; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--grey-200); }
.ws-hero-split .ws-hero-stat span { font-size: 28px; font-weight: 800; letter-spacing: -1px; margin-right: 8px; }
.ws-hero-split-img { background: var(--grey-100); border: 1px dashed var(--grey-300); border-radius: 8px; min-height: 400px; display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* ── Full-width Image Hero (industry, case study) ── */
.ws-hero-full { position: relative; min-height: 440px; background: var(--grey-200); display: flex; align-items: flex-end; overflow: hidden; }
.ws-hero-full-img { position: absolute; inset: 0; background: var(--grey-200); border: 1px dashed var(--grey-300); display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.ws-hero-full .ws-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 100%); }
.ws-hero-full .ws-hero-content { position: relative; z-index: 1; padding: 48px 40px; color: var(--white); width: 100%; }
.ws-hero-full .ws-hero-content .ws-inner { max-width: 1280px; margin: 0 auto; }
.ws-hero-full h1 { font-size: 48px; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; color: var(--white); }
.ws-hero-full p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 640px; line-height: 1.6; margin-bottom: 16px; }

/* ── Breadcrumb ── */
.ws-breadcrumb { padding: 12px 40px; background: var(--white); border-bottom: 1px solid var(--grey-200); }
.ws-breadcrumb-inner { max-width: 1280px; margin: 0 auto; font-size: 12px; color: var(--grey-400); display: flex; gap: 6px; align-items: center; }
.ws-breadcrumb a { color: var(--grey-500); text-decoration: none; font-weight: 500; }
.ws-breadcrumb .sep { color: var(--grey-300); }
.ws-breadcrumb .current { color: var(--grey-700); font-weight: 600; }

/* ── Social Proof Strip - Dark Ticker (Variant A) ── */
.ws-proof-strip { padding: 40px 0; background: var(--grey-800); overflow: hidden; }
.ws-proof-strip-text { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--grey-400); font-weight: 600; text-align: center; margin-bottom: 28px; }
.ws-proof-strip-track { display: flex; width: max-content; animation: ws-marquee 25s linear infinite; }
.ws-proof-strip-set { display: flex; gap: 48px; align-items: center; padding: 0 24px; }
.ws-proof-logo { width: 100px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; flex-shrink: 0; }
.ws-proof-strip-count { text-align: center; margin-top: 24px; font-size: 13px; color: var(--grey-400); }
.ws-proof-strip-count span { color: rgba(255,255,255,0.7); font-weight: 600; }
@keyframes ws-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Stat Strip (horizontal row of large stats) ── */
.ws-stat-strip { padding: 48px 40px; background: var(--white); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.ws-stat-strip-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.ws-stat-strip .ws-stat-num { font-size: 40px; font-weight: 800; letter-spacing: -1.5px; color: var(--grey-800); line-height: 1; margin-bottom: 6px; }
.ws-stat-strip .ws-stat-label { font-size: 13px; color: var(--grey-400); }
.ws-stat-strip.bg-dark { background: var(--grey-800); border: none; }
.ws-stat-strip.bg-dark .ws-stat-num { color: var(--white); }
.ws-stat-strip.bg-dark .ws-stat-label { color: var(--grey-400); }

/* ── Process Teaser Strip (link to How We Work) ── */
.ws-process-teaser { padding: 20px 40px; background: var(--grey-800); }
.ws-process-teaser-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 24px; font-size: 14px; color: rgba(255,255,255,0.6); }
.ws-process-teaser strong { color: var(--white); margin-right: 8px; }
.ws-process-teaser .ws-teaser-steps { display: flex; gap: 8px; align-items: center; flex: 1; }
.ws-process-teaser .ws-teaser-step { font-size: 12px; color: rgba(255,255,255,0.5); }
.ws-process-teaser .ws-teaser-arrow { color: rgba(255,255,255,0.3); font-size: 10px; }
.ws-process-teaser a { color: var(--white); font-weight: 600; text-decoration: none; white-space: nowrap; }

/* ── Engagement Model Nudge ── */
.ws-engage-nudge { padding: 48px 40px; background: var(--grey-50); border-top: 1px solid var(--grey-200); text-align: center; }
.ws-engage-nudge-inner { max-width: 560px; margin: 0 auto; }
.ws-engage-nudge h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.ws-engage-nudge p { font-size: 15px; color: var(--grey-500); margin-bottom: 20px; line-height: 1.6; }

/* ── Pull Quote / Testimonial ── */
.ws-pull-quote { padding: 56px 40px; text-align: center; background: var(--white); }
.ws-pull-quote-inner { max-width: 720px; margin: 0 auto; }
.ws-pull-quote blockquote { font-size: 22px; font-weight: 500; color: var(--grey-700); line-height: 1.5; letter-spacing: -0.3px; margin: 0 0 20px; font-style: italic; }
.ws-pull-quote cite { font-size: 14px; color: var(--grey-400); font-style: normal; font-weight: 600; }

/* ── Section lead-in paragraph ── */
.ws-lead { font-size: 18px; color: var(--grey-500); line-height: 1.7; max-width: 640px; margin-bottom: 40px; }
.ws.bg-dark .ws-lead { color: rgba(255,255,255,0.6); }

/* ── Transition text (narrative bridges) ── */
.ws-transition { padding: 32px 40px; text-align: center; }
.ws-transition-inner { max-width: 640px; margin: 0 auto; font-size: 16px; color: var(--grey-500); line-height: 1.7; font-style: italic; }

/* ── Highlighted model card (start-here badge) ── */
.ws-model-card.ws-highlight { border: 2px solid var(--grey-800); position: relative; }
.ws-model-card .ws-start-badge { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; background: var(--grey-800); color: var(--white); padding: 4px 10px; border-radius: 3px; margin-bottom: 12px; }

/* ── Pain Point Cards (icon + text, bordered) ── */
.ws-pain-card { border: 1px solid var(--grey-200); border-radius: 8px; padding: 28px; background: var(--white); }
.ws-pain-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--grey-800); }
.ws-pain-card p { font-size: 14px; color: var(--grey-500); line-height: 1.6; margin: 0; }
.ws-pain-card .ws-pain-icon { width: 40px; height: 40px; background: var(--grey-100); border-radius: 8px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 16px; }

/* ── Category Group (grouped deliverables with label) ── */
.ws-category { margin-bottom: 40px; }
.ws-category:last-child { margin-bottom: 0; }
.ws-category-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey-400); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--grey-200); }

/* ── Horizontal Process Flow (connected steps) ── */
.ws-flow { display: flex; align-items: flex-start; gap: 0; position: relative; }
.ws-flow-step { flex: 1; text-align: center; position: relative; padding: 0 16px; }
.ws-flow-dot { width: 36px; height: 36px; background: var(--grey-800); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; margin: 0 auto 16px; position: relative; z-index: 1; }
.ws-flow-step:not(:last-child)::after { content: ""; position: absolute; top: 18px; left: calc(50% + 18px); right: calc(-50% + 18px); height: 2px; background: var(--grey-300); z-index: 0; }
.ws-flow-step h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.ws-flow-step p { font-size: 12px; color: var(--grey-500); line-height: 1.5; }
.ws-flow-step.ws-flow-highlight .ws-flow-dot { background: var(--wire-blue); }
.ws-flow-step.ws-flow-loop { position: relative; }
.ws-flow-loop-arrow { font-size: 11px; color: var(--grey-400); margin-top: 8px; }

/* ── Coordination Diagram (central node + spokes) ── */
.ws-coord-diagram { position: relative; width: 100%; height: 300px; display: flex; align-items: center; justify-content: center; }
.ws-coord-center { width: 140px; height: 140px; background: var(--grey-800); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 13px; font-weight: 700; z-index: 2; position: relative; }
.ws-coord-spoke { position: absolute; display: flex; align-items: center; justify-content: center; }
.ws-coord-node { width: 100px; height: 100px; background: var(--white); border: 2px solid var(--grey-300); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 11px; font-weight: 600; color: var(--grey-600); }
.ws-coord-spoke.top { top: 0; left: 50%; transform: translateX(-50%); }
.ws-coord-spoke.right { right: 40px; top: 50%; transform: translateY(-50%); }
.ws-coord-spoke.bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.ws-coord-spoke.left { left: 40px; top: 50%; transform: translateY(-50%); }

/* ── Full-width gallery strip ── */
.ws-gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ws-gallery-strip-item { position: relative; }
.ws-gallery-strip-item .ws-placeholder { min-height: 280px; border-radius: 0; border: none; }
.ws-gallery-strip-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); color: var(--white); font-size: 13px; font-weight: 500; }

/* ── Role Selector Tabs ── */
.ws-role-tabs { display: flex; gap: 0; margin-bottom: 24px; }
.ws-role-tab { flex: 1; padding: 14px 20px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }
.ws-role-tab:first-child { border-radius: 4px 0 0 4px; }
.ws-role-tab:last-child { border-radius: 0 4px 4px 0; }
.ws-role-tab.active { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ── Featured Case Study Card ── */
.ws-featured-case { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--grey-200); border-radius: 8px; overflow: hidden; background: var(--white); margin-bottom: 24px; }
.ws-featured-case-img { background: var(--grey-200); min-height: 260px; display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.ws-featured-case-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.ws-featured-case-body .ws-badge { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey-400); margin-bottom: 8px; }
.ws-featured-case-body h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.ws-featured-case-body p { font-size: 15px; color: var(--grey-500); line-height: 1.6; margin-bottom: 16px; }
.ws-featured-case-body .ws-outcome { font-size: 13px; font-weight: 600; color: var(--grey-700); padding-top: 16px; border-top: 1px solid var(--grey-200); }

/* ── Social Proof Strip (alternate class names from linter variants) ── */
.ws-social-proof-strip { padding: 28px 40px; background: var(--grey-50); border-bottom: 1px solid var(--grey-200); }
.ws-social-proof-strip .ws-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.ws-social-proof-logos { display: flex; gap: 32px; align-items: center; flex: 1; }
.ws-logo-placeholder { width: 80px; height: 32px; background: var(--grey-200); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.5px; }
.ws-social-proof-text { font-size: 13px; color: var(--grey-400); white-space: nowrap; }

/* ── Social Proof (alternate layout - used by trade pages) ── */
.ws-social-proof { padding: 48px 40px; background: var(--grey-50); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.ws-social-proof-inner { max-width: 1280px; margin: 0 auto; }
.ws-social-proof-logo { height: 48px; background: var(--grey-200); border-radius: 4px; flex: 1; display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 12px; }

/* ── Card Stats (outcome line on case study cards) ── */
.ws-card-stats { font-size: 12px; color: var(--grey-400); font-style: italic; margin-top: 8px; }
.ws-card-label { font-size: 12px; color: var(--grey-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 8px; }

/* ── Item List (checkmark list for case study deliverables) ── */
ul.ws-item-list { list-style: none; padding: 0; }
ul.ws-item-list li { font-size: 15px; color: var(--grey-700); margin-bottom: 16px; line-height: 1.6; padding-left: 20px; position: relative; }
ul.ws-item-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--grey-400); font-weight: 600; }

/* ── Transition text (alternate class) ── */
.ws-transition-text { max-width: 640px; margin: 0 auto; font-size: 16px; color: var(--grey-500); line-height: 1.7; font-style: italic; }

/* ── ISO Pack CTA (Variant B - dark cinematic band) ── */
.ws-iso-cta { background: var(--grey-800); padding: 64px 40px; color: var(--white); }
.ws-iso-cta-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 55% 45%; gap: 48px; align-items: center; }
.ws-iso-cta-text .eyebrow { color: var(--grey-400); }
.ws-iso-cta-text h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; color: var(--white); line-height: 1.2; }
.ws-iso-cta-text p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 8px; max-width: 480px; }
.ws-iso-cta-includes { margin-bottom: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.ws-iso-cta-includes span { display: inline-block; font-size: 12px; color: rgba(255,255,255,0.4); margin-right: 16px; font-weight: 500; }
.ws-iso-cta-img { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; height: 280px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* ── Discipline Tabs (case study filter) ── */
.ws-disc-tabs { display: flex; gap: 0; margin-bottom: 32px; border-bottom: 2px solid var(--grey-200); }
.ws-disc-tab { padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--grey-400); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.ws-disc-tab.active { color: var(--grey-800); border-bottom-color: var(--grey-800); }

/* ── Stage Tabs (service overview by project stage) ── */
.ws-stage-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--grey-200); margin-bottom: 40px; }
.ws-stage-tab { padding: 14px 32px; font-size: 15px; font-weight: 600; color: var(--grey-400); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.ws-stage-tab.active { color: var(--grey-800); border-bottom-color: var(--grey-800); }
.ws-stage-tab .ws-stage-badge { font-size: 10px; font-weight: 700; background: var(--grey-100); color: var(--grey-400); padding: 2px 6px; border-radius: 3px; margin-left: 8px; vertical-align: middle; }
.ws-stage-tab.active .ws-stage-badge { background: var(--grey-800); color: var(--white); }

.ws-stage-panel { display: none; }
.ws-stage-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.ws-stage-left h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.ws-stage-left p { font-size: 15px; color: var(--grey-500); line-height: 1.7; margin-bottom: 24px; }
.ws-stage-left .ws-stage-who { font-size: 13px; color: var(--grey-400); padding-top: 16px; border-top: 1px solid var(--grey-200); }
.ws-stage-left .ws-stage-who strong { color: var(--grey-600); }
.ws-stage-link { display: inline-block; font-size: 13px; font-weight: 600; color: var(--grey-800); text-decoration: none; margin-top: 12px; }
.ws-stage-img { background: var(--grey-100); border: 1px dashed var(--grey-300); border-radius: 8px; min-height: 240px; display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }

.ws-stage-deliverables { list-style: none; padding: 0; }
.ws-stage-deliverables li { font-size: 14px; color: var(--grey-700); padding: 12px 0; border-bottom: 1px solid var(--grey-100); display: flex; align-items: center; gap: 12px; }
.ws-stage-deliverables li:last-child { border-bottom: none; }
.ws-stage-deliverables .ws-del-dot { width: 6px; height: 6px; background: var(--grey-300); border-radius: 50%; flex-shrink: 0; }

/* ── Industry / Trade link cards ── */
.ws-link-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ws-link-card { border: 1px solid var(--grey-200); border-radius: 8px; padding: 24px; background: var(--white); text-decoration: none; color: var(--grey-800); display: block; }
.ws-link-card:hover { border-color: var(--grey-400); }
.ws-link-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.ws-link-card p { font-size: 13px; color: var(--grey-500); line-height: 1.5; margin-bottom: 12px; }
.ws-link-card .ws-link-arrow { font-size: 13px; font-weight: 600; color: var(--grey-400); }

/* ── Process Pipeline (chevron headers + activity grid) ── */
.ws-pipeline { padding: 80px 40px; background: var(--white); }
.ws-pipeline-inner { max-width: 1280px; margin: 0 auto; }
.ws-pipeline h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; text-align: center; }
.ws-pipeline-sub { font-size: 16px; color: var(--grey-500); margin-bottom: 48px; line-height: 1.7; text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

.ws-pipeline-headers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 0; }
.ws-pipeline-header { padding: 16px 24px; text-align: left; font-size: 15px; font-weight: 700; color: var(--white); background: var(--grey-800); display: flex; align-items: center; gap: 10px; position: relative; }
.ws-pipeline-header:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-top: 24px solid transparent; border-bottom: 24px solid transparent; border-left: 12px solid var(--grey-800); z-index: 1; }
.ws-pipeline-header:not(:first-child) { padding-left: 28px; }
.ws-pipeline-num { width: 24px; height: 24px; background: rgba(255,255,255,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.8); flex-shrink: 0; }

.ws-pipeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ws-pipeline-col { padding: 24px; border-right: 1px solid var(--grey-100); border-bottom: 1px solid var(--grey-100); }
.ws-pipeline-col:last-child { border-right: none; }
.ws-pipeline-activity { margin-bottom: 20px; }
.ws-pipeline-activity:last-child { margin-bottom: 0; }
.ws-pipeline-activity h4 { font-size: 13px; font-weight: 600; color: var(--grey-800); margin-bottom: 4px; }
.ws-pipeline-activity p { font-size: 12px; color: var(--grey-400); line-height: 1.5; }

.ws-pipeline-footer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 2px solid var(--grey-200); }
.ws-pipeline-tools { padding: 16px 24px; border-right: 1px solid var(--grey-100); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.ws-pipeline-tools:last-child { border-right: none; }
.ws-pipeline-tool { font-size: 10px; font-weight: 600; color: var(--grey-400); background: var(--grey-50); padding: 4px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

.ws-pipeline-solution { padding: 12px 24px; border-right: 1px solid var(--grey-100); border-top: 1px solid var(--grey-100); }
.ws-pipeline-solution:last-child { border-right: none; }
.ws-pipeline-solution a { font-size: 12px; font-weight: 600; color: var(--grey-800); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.ws-pipeline-solution a:hover { color: var(--wire-blue); }
.ws-pipeline-solution .ws-sol-label { font-size: 10px; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 2px; }

.ws-pipeline-cta { text-align: center; margin-top: 32px; }
.ws-pipeline-cta a { font-size: 14px; font-weight: 600; color: var(--grey-800); text-decoration: none; }

/* ── Context Finder (tabbed: Industry / Trade / Role) ── */
.ws-context { padding: 80px 40px; background: var(--grey-50); }
.ws-context-inner { max-width: 1280px; margin: 0 auto; }
.ws-context-inner h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
.ws-context-sub { font-size: 16px; color: var(--grey-500); max-width: 560px; line-height: 1.7; margin-bottom: 32px; }
.ws-context-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--grey-200); margin-bottom: 32px; }
.ws-context-tab { padding: 12px 28px; font-size: 15px; font-weight: 600; color: var(--grey-400); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.ws-context-tab.active { color: var(--grey-800); border-bottom-color: var(--grey-800); }
.ws-context-panel { display: none; }
.ws-context-panel.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ws-context-panel.three-col.active { grid-template-columns: repeat(3, 1fr); }

/* ── How We Work (reusable) ── */
.how-we-work-section { padding: 80px 40px; background: var(--grey-50); }
.how-we-work-inner { max-width: 1280px; margin: 0 auto; }
.hww-header { margin-bottom: 40px; }
.hww-header h2 { font-size: 28px; font-weight: 700; }
.hww-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.hww-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: 8px; padding: 36px; }
.hww-card .eyebrow { color: var(--grey-400); margin-bottom: 8px; }
.hww-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.hww-card p { font-size: 15px; color: var(--grey-500); line-height: 1.6; margin-bottom: 16px; }
.hww-card a { font-size: 14px; font-weight: 600; color: var(--grey-800); text-decoration: none; }

/* ── Portfolio Gallery ── */
.ws-gallery { padding: 48px 40px; background: var(--grey-50); }
.ws-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ws-gallery-grid .placeholder-img { margin: 0; border-radius: 4px; }

/* ── Hide wireframe annotations ── */
.stag, .section-bar, .component-bar { display: none !important; }
.component-wrapper { border: none !important; }

/* ── Mobile responsive ── */
@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .header-nav { display: none; }
  .header-right .header-login { display: none; }
  .hero-content { padding: 60px 20px 0; }
  .hero-text h1 { font-size: 32px; }
  .segment-cards { grid-template-columns: 1fr; }
  .wj-header { grid-template-columns: 1fr; }
  .wj-points { grid-template-columns: 1fr 1fr; }
  .cap-two-col, .ws-two-col, .ws-hero-split-inner, .capability-inner { grid-template-columns: 1fr; gap: 32px; }
  .cs-slide { flex: 0 0 260px; }
  .industry-grid, .ws-grid-4, .ws-link-cards { grid-template-columns: 1fr 1fr; }
  .ws-grid-3, .ws-roles, .ws-context-panel.active { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .ct-page { grid-template-columns: 1fr; }
  .ct-offices-inner { grid-template-columns: 1fr; }
  .ws-pipeline-headers, .ws-pipeline-grid, .ws-pipeline-footer { grid-template-columns: 1fr 1fr; }
  .hww-grid, .specialist-cards, .ws-model-grid { grid-template-columns: 1fr; }
  .ibm-grid { grid-template-columns: 1fr 1fr; }
  .ibm-row { grid-template-columns: 1fr; }
  .ibm-row.cols-4 { grid-template-columns: 1fr 1fr; }
  .ws-steps { grid-template-columns: 1fr 1fr; }
  .ws-stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .ws-flow { flex-direction: column; align-items: center; }
  .ws-flow-step:not(:last-child)::after { display: none; }
  .ws-featured-case { grid-template-columns: 1fr; }
  .ws-iso-cta-inner { grid-template-columns: 1fr; }
  .page-header-inner h1 { font-size: 32px; }
  .segment-routing { padding: 0 20px 32px; }
  body { overflow-x: hidden; }
  section, div { max-width: 100vw; }
}

/* ── Hamburger menu ── */
.mobile-menu-btn { display: none; width: 40px; height: 40px; border: none; background: none; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--grey-800); transition: 0.2s; }
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
}

/* ── Mobile nav overlay ── */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); z-index: 1000; padding: 24px; transition: right 0.3s; box-shadow: -4px 0 20px rgba(0,0,0,0.1); overflow-y: auto; }
.mobile-nav.open { right: 0; }
.mobile-nav-close { width: 40px; height: 40px; border: none; background: none; cursor: pointer; font-size: 24px; margin-bottom: 24px; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 16px; color: var(--grey-800); text-decoration: none; border-bottom: 1px solid var(--grey-100); font-weight: 500; }
.mobile-nav-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 999; display: none; }
.mobile-nav-overlay.open { display: block; }

/* ── Header dropdowns ── */
.nav-item { position: relative; }
.nav-item > a { text-decoration: none; color: var(--grey-600); font-size: 14px; font-weight: 500; cursor: pointer; }
.nav-dropdown { display: none; position: absolute; top: 100%; left: -16px; background: var(--white); border: 1px solid var(--grey-200); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 12px 0; min-width: 220px; z-index: 100; margin-top: 12px; }
.nav-dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown a { display: block; padding: 10px 20px; font-size: 14px; color: var(--grey-600); text-decoration: none; font-weight: 500; white-space: nowrap; }
.nav-dropdown a:hover { background: var(--grey-50); color: var(--grey-800); }
.nav-dropdown.show { display: block; }

/* ── Hide wireframe annotations ── */
.section-bar, .component-bar { display: none !important; }
.component-wrapper { border: none !important; }

/* ── Modal System ── */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--white); border-radius: 12px; max-width: 520px; width: 100%; padding: 40px; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: none; background: var(--grey-100); border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; color: var(--grey-500); }
.modal-close:hover { background: var(--grey-200); }
.modal-box h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.modal-box p { font-size: 15px; color: var(--grey-500); line-height: 1.6; margin-bottom: 24px; }
.modal-box label { display: block; font-size: 13px; font-weight: 600; color: var(--grey-600); margin-bottom: 6px; }
.modal-box input, .modal-box select { width: 100%; padding: 12px 16px; border: 1px solid var(--grey-300); border-radius: 6px; font-size: 14px; margin-bottom: 16px; box-sizing: border-box; font-family: inherit; }
.modal-box .modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-box .btn-dark { width: 100%; text-align: center; padding: 14px 24px; font-size: 15px; border: none; cursor: pointer; }
.modal-success { text-align: center; padding: 20px 0; }
.modal-success h3 { font-size: 20px; font-weight: 700; color: var(--grey-800); margin-bottom: 8px; }
.modal-success p { font-size: 15px; color: var(--grey-500); }
@media (max-width: 768px) {
  .modal-box { padding: 28px 20px; }
  .modal-box .modal-row { grid-template-columns: 1fr; }
}
