@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Raleway:wght@500;600;700;800;900&display=swap');

:root {
  --primary-purple: #6A0DAD;
  --primary-purple-dark: #4E0A80;
  --primary-purple-tint: #F3E8FB;
  --secondary-lilac: #C8A2C8;
  --secondary-lilac-soft: #E6D5E6;
  --accent-gold: #FFD700;
  --accent-gold-dark: #D4AF37;
  --dark-charcoal: #1A1A2E;
  --dark-mid: #25253E;
  --light-grey: #F0F0F0;
  --bg-soft: #F8F7FB;
  --text: #2A2A3D;
  --text-muted: #5A5A70;
  --border: #E2DEEA;
  --white: #FFFFFF;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark-charcoal); line-height: 1.2; font-weight: 700; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark-charcoal);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}
.topbar a { color: var(--accent-gold); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar-sep { color: rgba(255,255,255,0.35); margin: 0 0.6rem; }

/* ===== NAV ===== */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(106,13,173,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(106,13,173,0.25);
}
.logo-text { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--dark-charcoal); letter-spacing: -0.2px; }
.logo-text span { color: var(--primary-purple); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-purple); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.nav-phone svg { color: var(--primary-purple); }
.btn-nav {
  background: var(--primary-purple);
  color: var(--white);
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-body);
}
.btn-nav:hover { background: var(--primary-purple-dark); color: var(--white); transform: translateY(-1px); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-charcoal);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-mobile a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 0;
  display: block;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn-nav { margin-top: 1rem; display: inline-block; }
.nav-mobile .mobile-phone {
  display: block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--primary-purple);
  text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--primary-purple);
  color: var(--white);
  padding: 0.95rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(106,13,173,0.25);
}
.btn-primary:hover { background: var(--primary-purple-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(106,13,173,0.35); }

.btn-secondary {
  background: var(--accent-gold);
  color: var(--dark-charcoal);
  padding: 0.95rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255,215,0,0.3);
}
.btn-secondary:hover { background: var(--accent-gold-dark); color: var(--dark-charcoal); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.95rem 2.2rem;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent-gold); background: rgba(255,215,0,0.1); color: var(--accent-gold); }

.btn-outline {
  background: transparent;
  color: var(--primary-purple);
  padding: 0.95rem 2.2rem;
  border-radius: 6px;
  border: 1.5px solid var(--primary-purple);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--primary-purple); color: var(--white); }

/* ===== HERO with visual treatment ===== */
.hero {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2D1B4E 55%, var(--primary-purple-dark) 100%);
  color: var(--white);
  padding: 110px 1.5rem 100px;
  position: relative;
  overflow: hidden;
}
/* Dot grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,215,0,0.18) 1.4px, transparent 1.4px);
  background-size: 34px 34px;
  pointer-events: none;
  opacity: 0.7;
}
/* Geometric glow shape */
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200,162,200,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.3rem;
  letter-spacing: -0.6px;
  color: var(--white);
}
.hero h1 em { color: var(--secondary-lilac); font-style: normal; font-weight: 800; }
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero side panel */
.hero-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,162,200,0.2);
  border-radius: 12px;
  padding: 1.85rem;
  backdrop-filter: blur(6px);
}
.hero-panel h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-lilac);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}
.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.panel-row:last-child { border-bottom: none; }
.panel-row .label { font-size: 0.88rem; color: rgba(255,255,255,0.78); font-weight: 500; }
.panel-row .badge {
  background: rgba(255,215,0,0.2);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark-mid);
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(200,162,200,0.1);
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-block {
  padding: 0.5rem 0.75rem;
  border-right: 1px solid rgba(200,162,200,0.12);
}
.stat-block:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.15;
  letter-spacing: -0.2px;
}
.stat-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
  letter-spacing: 0.2px;
}

/* ===== SECTIONS ===== */
.section { padding: 90px 1.5rem; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--dark-charcoal); color: var(--white); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--primary-purple);
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
}
.section-dark .eyebrow { color: var(--accent-gold); }
.section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--dark-charcoal);
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 0.85rem;
}
.section-dark h2 { color: var(--white); }
.section p.lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.section-dark p.lead { color: rgba(255,255,255,0.78); }

/* ===== INDUSTRIES / SERVICE GRID ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.85rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple), var(--secondary-lilac));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(106,13,173,0.13);
  border-color: var(--secondary-lilac);
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-purple-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--primary-purple);
}
.icon { width: 32px; height: 32px; }
.industry-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark-charcoal); margin-bottom: 0.55rem; }
.industry-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.85rem; }
.industry-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.6rem;
}
.role-chip {
  background: var(--primary-purple-tint);
  color: var(--primary-purple);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.why-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(106,13,173,0.08);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon .icon { width: 28px; height: 28px; }
.why-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark-charcoal); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== HOW WE WORK / PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--secondary-lilac) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.p-step {
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}
.p-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 14px rgba(106,13,173,0.18);
}
.p-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark-charcoal); margin-bottom: 0.5rem; }
.p-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ABOUT TWO-COL ===== */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4.5rem; align-items: center; }
.about-text h2 { font-size: 2rem; font-weight: 800; color: var(--dark-charcoal); margin-bottom: 1rem; letter-spacing: -0.3px; }
.about-text p { font-size: 0.96rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.about-panel {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(106,13,173,0.06);
}
.about-panel h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-purple);
  font-weight: 800;
  margin-bottom: 1.3rem;
  font-family: var(--font-body);
}
.kv {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.kv:last-child { border-bottom: none; }
.kv .k { color: var(--text-muted); }
.kv .v { font-weight: 700; color: var(--dark-charcoal); }

/* Values row */
.values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.val-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent-gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.val-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(106,13,173,0.1); }
.val-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-purple-tint);
  color: var(--primary-purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}
.val-icon .icon { width: 24px; height: 24px; }
.val-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark-charcoal); margin-bottom: 0.45rem; }
.val-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== SERVICES PAGE LARGE BLOCKS ===== */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.75rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-row:hover { border-color: var(--secondary-lilac); box-shadow: 0 6px 20px rgba(106,13,173,0.1); }
.service-row .industry-icon { margin-bottom: 0; width: 64px; height: 64px; }
.service-row .industry-icon .icon { width: 36px; height: 36px; }
.service-row h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark-charcoal); margin-bottom: 0.5rem; }
.service-row p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.85rem; }
.service-row .industry-roles { margin-top: 0.5rem; }

/* ===== SECONDARY CTA BANNER ===== */
.cta-section {
  background: linear-gradient(120deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,215,0,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-section h2 {
  color: var(--white);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}
.cta-section p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2D1B4E 100%);
  color: var(--white);
  padding: 70px 1.5rem 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,215,0,0.14) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--secondary-lilac); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.85rem;
  color: var(--white);
}
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 620px; line-height: 1.7; }

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover { border-color: var(--secondary-lilac); box-shadow: 0 4px 14px rgba(106,13,173,0.08); }
.contact-card h4 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-purple);
  font-weight: 800;
  margin-bottom: 0.55rem;
  font-family: var(--font-body);
}
.contact-card p { font-size: 0.92rem; color: var(--text); line-height: 1.65; }
.contact-card a { color: var(--primary-purple); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-form-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  min-height: 680px;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(106,13,173,0.06);
}
.ghl-wrap { width: 100%; min-height: 680px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-charcoal);
  color: rgba(255,255,255,0.75);
  padding: 4rem 1.5rem 1.75rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
}
.footer-brand .footer-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
}
.footer-brand .footer-hours strong { color: var(--white); display: block; margin-bottom: 0.25rem; font-family: var(--font-heading); font-weight: 700; }
.footer-logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.footer-logo .logo-mark { background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%); }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-text span { color: var(--secondary-lilac); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.15rem;
  font-family: var(--font-heading);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 0.6rem; }
.footer-col p a { color: var(--secondary-lilac); text-decoration: none; }
.footer-col p a:hover { color: var(--accent-gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; margin-left: 1rem; }
.footer-bottom a:hover { color: var(--accent-gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-panel { max-width: 480px; }
  .hero h1 { font-size: 2.5rem; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  .topbar { font-size: 0.72rem; padding: 0.45rem 1rem; }
  .topbar-sep { display: none; }
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 64px; }
  .hero { padding: 70px 1.5rem 60px; }
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 1rem; }
  .industry-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; padding: 0.75rem 0.5rem; border-bottom: 1px solid rgba(200,162,200,0.12); }
  .stat-block:nth-last-child(-n+2) { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin-left: 0; margin-right: 1rem; }
  .page-hero h1 { font-size: 2rem; }
  .section { padding: 60px 1.25rem; }
  .section h2 { font-size: 1.85rem; }
  .cta-section h2 { font-size: 1.85rem; }
  .hero-btns, .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost, .btn-secondary, .btn-outline { text-align: center; }
}

@media (max-width: 480px) {
  .values-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-block { border-bottom: 1px solid rgba(200,162,200,0.12); }
  .stat-block:last-child { border-bottom: none; }
  .hero h1 { font-size: 1.85rem; }
  .page-hero h1 { font-size: 1.7rem; }
  .section h2 { font-size: 1.65rem; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================ */
/* ===== HOMEPAGE EXPANSION (v2) — additions below existing  === */
/* ============================================================ */

/* Hero sub-bullets */
.hero-bullets {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.5rem;
  max-width: 540px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-weight: 500;
}
.hb-tick {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,215,0,0.18);
  border: 1px solid rgba(255,215,0,0.55);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 2px;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  max-width: 560px;
}

/* Tighten hero panel rows for 10 entries */
.hero-panel .panel-row { padding: 0.62rem 0; }

/* ===== SECTORS AT A GLANCE ===== */
.glance-section { padding-bottom: 60px; }
.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem 1rem;
}
.glance-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary-purple);
  border-radius: 6px;
  transition: border-left-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.glance-item:hover {
  border-left-color: var(--accent-gold);
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(106,13,173,0.08);
}
.glance-item strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--dark-charcoal);
  font-weight: 700;
  letter-spacing: -0.1px;
}
.glance-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== INDUSTRY GRID — extend to 12 cards (existing .industry-grid keeps 3 cols) ===== */

/* ===== INDUSTRY DEEP DIVE ===== */
.deep-dive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.deep-dive-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2rem 1.85rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.deep-dive-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-purple), var(--secondary-lilac));
}
.deep-dive-card:hover {
  border-color: var(--secondary-lilac);
  box-shadow: 0 12px 32px rgba(106,13,173,0.12);
  transform: translateY(-3px);
}
.deep-dive-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.deep-dive-head .industry-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.deep-dive-head h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-charcoal);
  margin-bottom: 0.2rem;
  letter-spacing: -0.2px;
}
.dd-tag {
  font-size: 0.78rem;
  color: var(--primary-purple);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0 !important;
}
.deep-dive-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.deep-dive-card .industry-roles {
  margin-top: 1rem;
  gap: 0.4rem;
}

/* ===== WHY GRID — 6 cards version ===== */
.why-grid-six {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== HOW WE WORK — outputs row ===== */
.outputs-divider {
  margin: 3.5rem auto 2rem;
  text-align: center;
  position: relative;
  max-width: 700px;
}
.outputs-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.outputs-divider span {
  position: relative;
  display: inline-block;
  padding: 0 1.25rem;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--primary-purple);
}
.section-alt .outputs-divider span { background: var(--bg-soft); }

.outputs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.output-card {
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-top: 3px solid var(--accent-gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.output-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(106,13,173,0.08);
}
.output-card h5 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.1px;
}
.output-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== LOCATIONS GRID ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.location-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.location-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(106,13,173,0.1);
  border-color: var(--secondary-lilac);
}
.loc-pin {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-purple-tint);
  color: var(--primary-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  transition: background 0.2s, color 0.2s;
}
.location-tile:hover .loc-pin {
  background: var(--primary-purple);
  color: var(--white);
}
.location-tile strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--dark-charcoal);
  font-weight: 700;
  letter-spacing: -0.1px;
}
.location-tile span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ===== FAQ ACCORDION ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--secondary-lilac); }
.faq-item[open] {
  border-color: var(--primary-purple);
  box-shadow: 0 6px 18px rgba(106,13,173,0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--primary-purple); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary-purple);
  border-bottom: 2px solid var(--primary-purple);
  transform: rotate(45deg);
  transition: transform 0.25s;
  margin-top: -4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-item p {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== HERO BUTTON LAYOUT TWEAKS ===== */
.hero-btns .btn-secondary,
.hero-btns .btn-ghost { padding: 0.95rem 1.85rem; }

/* ===== RESPONSIVE — homepage v2 ===== */
@media (max-width: 1024px) {
  .glance-grid { grid-template-columns: repeat(3, 1fr); }
  .deep-dive-grid { grid-template-columns: 1fr; }
  .why-grid-six { grid-template-columns: repeat(2, 1fr); }
  .outputs-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-bullets { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 768px) {
  .glance-grid { grid-template-columns: 1fr 1fr; }
  .why-grid-six { grid-template-columns: 1fr; }
  .outputs-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .deep-dive-card { padding: 1.6rem 1.4rem 1.4rem; }
  .deep-dive-head { gap: 0.75rem; }
  .deep-dive-head h3 { font-size: 1.15rem; }
  .outputs-divider { margin: 2.5rem auto 1.5rem; }
  .faq-item summary { padding: 0.95rem 1.15rem; font-size: 0.94rem; }
  .faq-item p { padding: 0 1.15rem 1rem; font-size: 0.88rem; }
  .hero-bullets { gap: 0.45rem; }
  .hero-bullets li { font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .glance-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER LIST CONTRAST FIX (10 sector links visible on dark bg) ===== */
.footer-col ul li a { color: rgba(255,255,255,0.78); }
.footer-col ul li a:hover { color: var(--accent-gold); }
