/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1240AB;       /* bold assertive royal blue */
  --primary-dark: #0C2F85;  /* hover / deep variant */
  --primary-light: #E5EDFF; /* light blue tint — backgrounds, hover fills */
  --accent: #C41024;        /* bold American red — secondary accent */
  --accent-light: #FDEBEE;  /* light red tint */
  --text: #1a1f2e;
  --text-muted: #576172;
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --border: #dce3f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --nav-height: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ── Utility ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.page-section { padding-top: calc(var(--nav-height) + 64px); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.left { text-align: left; }

.section-header h1,
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-header.left p { margin: 0; }
#problem .section-header p { max-width: none; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(18,64,171,.35); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }

.full-width { width: 100%; justify-content: center; }

/* ── Navbar ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.5px;
}
.logo span { color: var(--primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
}

.hero-photo {
  background-image: url('images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #071830;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 18, 36, 0.90) 0%, rgba(8, 18, 36, 0.80) 45%, rgba(8, 18, 36, 0.58) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: var(--nav-height);
  padding-left: 24px;
  padding-right: 24px;
  min-height: 100vh;
}

.hero-photo .hero-content h1 { color: #ffffff; }
.hero-photo .hero-content h1 span { color: #6AAEFF; }
.hero-photo .hero-content p { color: #ffffff; }
.hero-photo .btn-outline {
  color: #ffffff;
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.13);
}
.hero-photo .btn-outline:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: #ffffff;
  color: #ffffff;
}

.hero-content { flex: 1; }

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--primary); }

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 180px;
  transition: transform .2s;
}
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Services ─────────────────────────────────── */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { color: var(--text-muted); font-size: .95rem; }

.card-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8, 18, 36, 0.08) 0%,
    rgba(8, 18, 36, 0.42) 45%,
    rgba(8, 18, 36, 0.75) 100%);
}
.card-photo > * { position: relative; z-index: 1; }
.card-photo .card-text-panel {
  background: rgba(8, 18, 36, 0.52);
  border-radius: 8px;
  padding: 18px 20px;
}
.card-photo h3  { color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.70); }
.card-photo p   { color: rgba(255, 255, 255, 0.88); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65); }

/* ── Problem Carousel ─────────────────────────── */
.problem-carousel { position: relative; margin-left: auto; margin-right: auto; }

.carousel-track {
  display: grid;
}
.carousel-track > * { grid-area: 1 / 1; }

.carousel-slide {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.carousel-dot.active,
.carousel-dot:hover {
  background: var(--accent);
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ── About ────────────────────────────────────── */
.about-text .section-header {
  margin-bottom: 16px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
}
.value-icon {
  color: var(--primary);
  font-size: 1.1rem;
}

.about-image { display: flex; justify-content: center; }

.about-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
}
.graphic-circle.large  { width: 300px; height: 300px; background: var(--primary); }
.graphic-circle.medium { width: 210px; height: 210px; background: var(--primary); opacity: .2; }
.graphic-circle.small  { width: 130px; height: 130px; background: var(--primary); opacity: .35; }

.graphic-label {
  position: relative;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

/* ── Contact ──────────────────────────────────── */
.contact { background: var(--bg-alt); }

.contact-layout {
  display: flex;
  justify-content: center;
}

.contact-layout .contact-form {
  width: 100%;
  max-width: 640px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 700; margin-bottom: 2px; }
.contact-item p { color: var(--text-muted); font-size: .95rem; margin: 0; }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18,64,171,.12);
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
}
.form-success.visible { display: block; }

/* ── Who We Are — US-Based Belt ──────────────── */
.wwa-us-belt {
  background: var(--bg-alt);
  border-top: 3px solid var(--accent);
  padding: 72px 48px;
  text-align: center;
}
.wwa-us-belt-inner {
  max-width: 720px;
  margin: 0 auto;
}
.wwa-us-belt h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.25;
}
.wwa-us-belt p {
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Contact Info Row (below map + form) ──────── */
.contact-info-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ── Footer ───────────────────────────────────── */
.footer {
  background: #0B1D42;
  color: #cbd5e1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding: 60px 24px 40px;
}

.footer .logo { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: .9rem; color: #8ba3c8; max-width: 280px; }

.footer-links { display: flex; gap: 80px; }

.footer-col h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-sub-cols { display: flex; gap: 28px; }
.footer-col a { font-size: .875rem; color: #8ba3c8; transition: color .15s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1a3060;
  text-align: center;
  padding: 20px 24px;
  font-size: .85rem;
  color: #7a90b5;
}

/* ── Value Creation Timeline ─────────────────── */
.value-timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
}

.timeline-step {
  display: flex;
  gap: 18px;
}

.timeline-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .875rem;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(18,64,171,.3);
  position: relative;
  z-index: 1;
}

.timeline-step.exit .timeline-circle {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(18,64,171,.45);
  margin-left: -4px;
}

.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 16px;
  background: linear-gradient(to bottom, rgba(18,64,171,.3), rgba(18,64,171,.08));
}

.timeline-content {
  padding-bottom: 22px;
  padding-top: 2px;
}

.timeline-step.exit .timeline-content { padding-top: 6px; }

.timeline-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2px;
}

.timeline-content strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.timeline-step.exit .timeline-content strong {
  color: var(--primary);
  font-size: 1rem;
}

.timeline-content p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Blog Listing ─────────────────────────────── */
.blog-hero {
  background: var(--bg-alt);
  padding: calc(var(--nav-height) + 64px) 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.blog-hero h1 span { color: var(--primary); }

.blog-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  width: fit-content;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.blog-card > p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.blog-date { font-size: .8rem; color: var(--text-muted); }

.blog-read-more {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}
.blog-read-more:hover { gap: 8px; }

/* ── Legal Pages ─────────────────────────────── */
.legal-meta { font-size: 14px; color: var(--text-muted); margin-top: 12px; }

.legal-page.post-wrap .post-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.legal-page.post-wrap .post-body h2 {
  font-size: 1.15rem;
  margin: 28px 0 8px;
  color: var(--primary);
}
.legal-page.post-wrap .post-body p { margin-bottom: 12px; }

/* ── Blog Post ────────────────────────────────── */
.post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-header {
  padding: calc(var(--nav-height) + 56px) 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}

.post-header .blog-tag { margin-bottom: 20px; }

.post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: .875rem;
  flex-wrap: wrap;
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 64px;
}

.post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 52px 0 16px;
  color: var(--text);
}

.post-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--text);
}

.post-body p { margin-bottom: 20px; color: var(--text-muted); }

.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
}
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 10px; color: var(--text-muted); }

.post-body strong { color: var(--text); font-weight: 700; }

.post-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(18, 64, 171, 0.35);
  text-underline-offset: 2px;
}
.post-body a:hover { text-decoration-color: var(--primary); }

.post-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 18px 24px;
  margin: 36px 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}

.post-cta {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 44px 48px;
  text-align: center;
  margin-bottom: 80px;
}

.post-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.post-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.post-cta .btn {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: transparent;
}
.post-cta .btn:hover { background: rgba(255,255,255,.15); }

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 28px;
  transition: color .15s;
}
.post-back:hover { color: var(--primary); }

/* ── What We Do Page ─────────────────────────── */
.wwd-hero {
  background-image: linear-gradient(to right, rgba(8,18,36,0.90) 0%, rgba(8,18,36,0.80) 45%, rgba(8,18,36,0.58) 100%), url('images/what-we-do-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: #071830;
  padding: calc(var(--nav-height) + 72px) 48px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wwd-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(196, 16, 36, 0.18);
  pointer-events: none;
}
.wwd-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(196, 16, 36, 0.12);
  pointer-events: none;
}
.wwd-hero-inner { max-width: 800px; margin: 0 auto; }

.ca-hero-bg {
  background-image: linear-gradient(to right, rgba(8,18,36,0.88) 0%, rgba(8,18,36,0.80) 45%, rgba(8,18,36,0.60) 100%), url('images/consulting-advisory-hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
}

.wwd-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196, 16, 36, 0.4);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.wwd-hero h1 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 22px;
}
.wwd-hero h1 span { color: #6AAEFF; font-style: italic; }

.wwd-hero-sub {
  font-size: 17px;
  color: #ffffff;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.wwd-stat-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
  flex-wrap: wrap;
}
.wwd-stat-item { text-align: center; }
.wwd-stat-num {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  display: block;
}
.wwd-stat-label {
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.4px;
  margin-top: 5px;
}

.wwd-section {
  padding: 72px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.wwd-section-tight-bottom { padding-bottom: 24px; }
.wwd-section-tight-top { padding-top: 24px; }
.wwd-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.wwd-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.25;
}
.wwd-section-title.light { color: #fff; }
.wwd-section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.wwd-section-sub.light { color: rgba(255, 255, 255, 0.55); }
.wwd-section > .wwd-section-sub { max-width: none; }

.wwd-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wwd-cap-grid-2 { grid-template-columns: repeat(2, 1fr); }
.wwd-cap-card {
  background: var(--bg);
  padding: 36px 30px;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
}
.wwd-cap-card:hover { background: var(--bg-alt); }

.wwd-cap-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--border);
  margin-bottom: 20px;
  transition: color 0.15s;
}
.wwd-cap-card:hover .wwd-cap-num { color: var(--accent); }

.wwd-cap-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.wwd-cap-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.wwd-cap-body {
  font-size: 14px;
  line-height: 1.68;
  color: var(--text-muted);
}
.wwd-cap-accent {
  display: block;
  margin-top: auto;
  padding: 20px 16px 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
  position: relative;
}
.wwd-cap-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  height: 1.5em;
  width: 2px;
  background: var(--accent);
}

.wwd-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 48px;
}

.wwd-contrast {
  background: var(--bg-alt);
  padding: 72px 48px;
}
.wwd-contrast-inner { max-width: 1200px; margin: 0 auto; }
.wwd-contrast .wwd-section-title { color: var(--primary); }
.wwd-contrast .wwd-section-sub   { color: var(--text-muted); max-width: none; }

.wwd-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.wwd-diff-col           { padding: 32px; background: var(--bg); }
.wwd-diff-col.highlight { background: var(--primary-light); }

.wwd-diff-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.wwd-diff-header.muted  { color: #4b5563; }
.wwd-diff-header.accent { color: var(--accent); }

.wwd-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #4b5563;
  line-height: 1.45;
}
.wwd-diff-item:last-child { border-bottom: none; }
.wwd-diff-item .diff-icon { font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.wwd-diff-item.them .diff-icon { color: #94a3b8; }
.wwd-diff-item.us               { color: var(--primary); }
.wwd-diff-item.us .diff-icon    { color: var(--accent); }

.wwd-tagline {
  background: var(--primary);
  border-top: 3px solid var(--accent);
  text-align: center;
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
}
.wwd-tagline + .wwd-cta-wrap { border-top: none; }

.wwd-hero-cta {
  margin-top: 40px;
  text-align: center;
}

.wwd-cta-wrap {
  background: var(--bg);
  border-top: 3px solid var(--accent);
  padding: 72px 48px;
}
.wwd-cta {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.wwd-cta h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.wwd-cta p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .wwd-cap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; text-align: center; padding: 12px; font-size: .95rem; }

  .hero { min-height: auto; }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 64px;
    min-height: auto;
  }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .hero-card { min-width: 130px; padding: 16px 20px; }

  .services-grid { grid-template-columns: 1fr; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }

  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr; }
  .footer-links { flex-direction: row; gap: 32px; }

  .section { padding: 64px 0; }

  .wwd-hero { padding: calc(var(--nav-height) + 40px) 24px 44px; }
  .wwd-hero h1 { font-size: 28px; }
  .wwd-stat-row { gap: 28px; }
  .wwd-section { padding: 52px 24px; }
  .wwd-cap-grid { grid-template-columns: 1fr; }
  .wwd-divider { margin: 0 24px; }
  .wwd-contrast { padding: 52px 24px; }
  .wwd-diff-grid { grid-template-columns: 1fr; }
  .wwd-tagline { padding: 16px 24px; letter-spacing: 1.5px; }
  .wwd-cta-wrap { padding: 52px 24px; }
  .wwd-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-visual { gap: 10px; }
  .hero-card { min-width: 110px; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-cta { padding: 32px 24px; }
  .post-header { padding-top: calc(var(--nav-height) + 32px); }
}

/* ── Benefits to You Page ─────────────────────── */
.bty-hero {
  background-image:
    linear-gradient(to right, rgba(8,18,36,0.92) 0%, rgba(8,18,36,0.82) 45%, rgba(8,18,36,0.65) 100%),
    url('images/hero-background.jpg');
  background-size: cover;
  background-position: 70% center;
  background-color: #0B1D42;
  padding: calc(var(--nav-height) + 52px) 48px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bty-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(196, 16, 36, 0.15);
  pointer-events: none;
}
.bty-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(196, 16, 36, 0.10);
  pointer-events: none;
}
.bty-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 26px;
}
.bty-hero h1 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.18;
  max-width: 660px;
  margin: 0 auto 20px;
}
.bty-hero h1 em {
  font-style: italic;
  color: #6AAEFF;
}
.bty-hero-sub {
  font-size: 17px;
  color: #ffffff;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.bty-hero-timing {
  font-size: 13px;
  color: #ffffff;
  margin-top: 20px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.bty-urgency {
  background: var(--accent);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bty-urgency span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}
.bty-urgency-dot {
  width: 5px; height: 5px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}
.bty-urgency a {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}
.bty-urgency a:hover { opacity: 0.80; }

.bty-hook {
  padding: 64px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.bty-hook-inner {}
.bty-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.bty-hook h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.bty-hook p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.72;
}

.bty-benefits {
  padding: 56px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.bty-benefits > .bty-section-label { margin-bottom: 24px; }
.bty-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-bottom: 2px;
}
.bty-row:last-of-type { margin-bottom: 0; }
.bty-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.14s;
  display: flex;
  flex-direction: column;
}
.bty-card:hover { background: var(--bg-alt); }
.bty-card:hover .bty-num { color: var(--accent); }
.bty-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--border);
  margin-bottom: 16px;
  transition: color 0.14s;
}
.bty-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.bty-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.bty-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}
.bty-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.bty-proof {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 4px 16px;
  border-left: 2px solid var(--accent);
  margin-top: auto;
  text-align: left;
}
.bty-proof span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.5;
}

.bty-dark-belt {
  background: var(--bg);
  padding: 72px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.bty-dark-belt-inner {}
.bty-dark-belt .bty-section-label { color: var(--accent); }
.bty-dark-belt h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.25;
}
.bty-dark-belt p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 32px;
}
.bty-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.bty-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 13px;
  color: var(--text-muted);
}
.bty-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.bty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}
.bty-btn-primary:hover { opacity: 0.88; }
.bty-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.bty-btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.bty-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.bty-contact-detail {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}
.bty-contact-detail a {
  color: var(--primary);
  text-decoration: none;
}
.bty-contact-detail a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .bty-hero { padding: calc(var(--nav-height) + 32px) 24px 44px; }
  .bty-hero h1 { font-size: 28px; }
  .bty-urgency { padding: 14px 24px; }
  .bty-hook { padding: 48px 24px 0; }
  .bty-benefits { padding: 48px 24px; }
  .bty-row { grid-template-columns: 1fr; }
  .bty-dark-belt { padding: 52px 24px; }
  .bty-cta-right { align-items: flex-start; }
  .bty-contact-detail { text-align: left; }
}

/* ── AI & Cybersecurity Page ──────────────────── */
.aic-hero {
  background-image:
    linear-gradient(to right, rgba(8,18,36,0.94) 0%, rgba(8,18,36,0.86) 50%, rgba(8,18,36,0.78) 100%),
    url('images/ai-cybersecurity-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: #0B1D42;
  padding: calc(var(--nav-height) + 52px) 48px 60px;
  position: relative;
  overflow: hidden;
}
.aic-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(90deg, rgba(196,16,36,0.03) 0px, rgba(196,16,36,0.03) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(180deg, rgba(196,16,36,0.03) 0px, rgba(196,16,36,0.03) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}
.aic-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; text-align: center; }
.aic-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.aic-eyebrow-line { display: none; }
.aic-eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: #fff; text-transform: uppercase; }
.aic-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 24px;
}
.aic-hero h1 em { font-style: italic; color: #6AAEFF; }
.aic-hero-sub {
  font-size: 17px;
  color: #ffffff;
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto 40px;
}
.aic-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.aic-stat-num { font-size: 36px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 4px; }
.aic-stat-label { font-size: 12px; font-weight: 500; color: #ffffff; letter-spacing: 0.05em; text-transform: uppercase; max-width: 140px; line-height: 1.4; }

.aic-alert { background: var(--accent); padding: 14px 48px; }
.aic-alert-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.aic-alert-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; background: #fff; padding: 3px 10px; border-radius: 2px; white-space: nowrap; }
.aic-alert-text { font-size: 13px; font-weight: 600; color: #fff; }

.aic-page-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.aic-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.aic-section-alt { background: var(--bg-alt); }

.aic-section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.aic-section-num {
  width: 28px; height: 28px; border: 1.5px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--accent); flex-shrink: 0;
}
.aic-section-label-text { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; }
.aic-section-title { font-size: 32px; font-weight: 700; line-height: 1.2; color: var(--primary); margin-bottom: 16px; }
.aic-section-intro { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 40px; }

.aic-doctrine-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--border); border: 1px solid var(--border); margin-top: 32px;
}
.aic-doctrine-card { background: var(--bg); padding: 32px 28px; position: relative; }
.aic-doctrine-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--accent); opacity: 0; transition: opacity 0.2s;
}
.aic-doctrine-card:hover::before { opacity: 1; }
.aic-doctrine-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; }
.aic-doctrine-card h3 { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
.aic-doctrine-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.aic-diagram-section { background: #0B1D42; padding: 72px 0; }
.aic-diagram-section .aic-section-title { color: #fff; }
.aic-diagram-section .aic-section-intro { color: #ffffff; }
.aic-diagram-section .aic-section-label-text { color: var(--accent); }
.aic-diagram-section .aic-section-num { border-color: var(--accent); color: var(--accent); }
.aic-diagram-wrapper { margin-top: 40px; overflow-x: auto; }

.aic-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.aic-pillar { border: 1px solid var(--border); padding: 28px 24px; background: var(--bg-alt); }
.aic-pillar h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.3; }
.aic-pillar ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.aic-pillar ul li { font-size: 13px; color: var(--text-muted); line-height: 1.5; padding-left: 14px; position: relative; }
.aic-pillar ul li::before { content: '–'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.aic-align-table { width: 100%; border-collapse: collapse; margin-top: 32px; font-size: 14px; }
.aic-align-table thead tr { background: var(--primary); color: #fff; }
.aic-align-table thead th { padding: 14px 20px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.aic-align-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.aic-align-table tbody tr:nth-child(odd) { background: var(--bg); }
.aic-align-table tbody td { padding: 14px 20px; color: var(--text); border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.6; }
.aic-align-table tbody td:first-child { font-weight: 600; color: var(--primary); white-space: nowrap; }
.aic-check { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: var(--accent); color: #fff; font-weight: 700; font-size: 11px; border-radius: 50%; margin-right: 6px; flex-shrink: 0; }
.aic-td-flex { display: flex; align-items: flex-start; gap: 4px; }

.aic-perf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.aic-perf-card { border: 1px solid var(--border); padding: 28px; }
.aic-perf-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.aic-perf-badge { padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.aic-perf-badge.human { background: var(--primary); color: #fff; }
.aic-perf-badge.agent { background: var(--accent-light); color: var(--accent); }
.aic-perf-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); }
.aic-metric-row { display: flex; align-items: baseline; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.aic-metric-row:last-child { border-bottom: none; }
.aic-metric-label { font-size: 13px; color: var(--text-muted); flex: 1; }
.aic-metric-tag { font-size: 11px; font-weight: 600; color: var(--primary); background: var(--bg-alt); padding: 2px 8px; border: 1px solid var(--border); white-space: nowrap; }

@media (max-width: 768px) {
  .aic-hero { padding: calc(var(--nav-height) + 32px) 24px 44px; }
  .aic-hero h1 { font-size: 28px; }
  .aic-hero-stats { gap: 28px; }
  .aic-alert { padding: 14px 24px; }
  .aic-page-inner { padding: 0 24px; }
  .aic-section { padding: 52px 0; }
  .aic-doctrine-grid { grid-template-columns: 1fr; }
  .aic-pillars { grid-template-columns: 1fr; }
  .aic-perf-grid { grid-template-columns: 1fr; }
  .aic-align-table tbody td:first-child { white-space: normal; }
}
