/* ============================================================
   ADALOT — Main Stylesheet
   Brand: Navy #162b46 | Teal #38b6ab | Orange #ef774c
   Fonts: Space Grotesk (headings) | Inter (body) | Barlow Condensed (logo)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #162b46;
  --navy-dark: #0d1e33;
  --navy-light: #1e3a5f;
  --blue: #1a3a5c;
  --teal: #38b6ab;
  --teal-dark: #2a9990;
  --teal-light: #4ecdc4;
  --orange: #ef774c;
  --orange-dark: #d9623a;
  --white: #ffffff;
  --light: #f5f7fa;
  --light-2: #eef1f6;
  --text-dark: #162b46;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: rgba(22, 43, 70, 0.1);
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 4px 20px rgba(22, 43, 70, 0.08);
  --shadow-md: 0 8px 32px rgba(22, 43, 70, 0.12);
  --shadow-lg: 0 16px 48px rgba(22, 43, 70, 0.16);
  --font-title: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', 'Space Grotesk', sans-serif;
  --font-logo: 'Barlow Condensed', 'Arial Black', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* ---- Progress Bar ---- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  z-index: 9999;
  width: 0;
  transition: width 0.1s linear;
}

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Sections ---- */
.section {
  padding: 96px 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.85rem; font-weight: 600; }

p { line-height: 1.7; color: var(--text-mid); }

/* ---- Section Headers ---- */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(56, 182, 171, 0.08);
  border-radius: 100px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.7;
}
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 16px rgba(56, 182, 171, 0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 182, 171, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 16px rgba(22, 43, 70, 0.3);
}
.btn-dark:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap var(--transition);
}
.btn-link:hover { gap: 10px; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: var(--navy);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-logo svg { height: 36px; width: auto; }
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.navbar-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.navbar-menu a:hover,
.navbar-menu a.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-switcher button {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  transition: all var(--transition);
}
.lang-switcher button.active {
  background: white;
  color: var(--navy);
}
.navbar-cta { padding: 10px 22px; font-size: 0.85rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- Mobile Menu ---- */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  padding: 4px;
}
.mobile-lang {
  display: flex;
  gap: 8px;
}
.mobile-lang button {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.mobile-lang button.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all var(--transition);
}
.mobile-menu ul a:hover { background: rgba(255,255,255,0.1); color: white; }

/* ---- Page System ---- */
.page { display: block; }

/* ---- Page Hero ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(56,182,171,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 800px;
  margin-bottom: 16px;
}
.page-hero .subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
}
.page-hero .section-label { margin-bottom: 16px; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--blue) 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(56,182,171,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(239,119,76,0.08) 0%, transparent 50%);
}
#neural-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,182,171,0.15);
  border: 1px solid rgba(56,182,171,0.3);
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Proof Strip ---- */
.proof-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 24px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
}
.proof-number {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--teal);
  letter-spacing: 0.05em;
}
.proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.04em;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ---- Private AI Section ---- */
.private-ai-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}
.private-ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(56,182,171,0.08) 0%, transparent 42%),
    linear-gradient(315deg, rgba(239,119,76,0.07) 0%, transparent 38%);
  pointer-events: none;
}
.private-ai-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}
.private-ai-visual {
  position: relative;
}
.private-ai-visual::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 58%;
  height: 58%;
  border: 1px solid rgba(56,182,171,0.32);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.private-ai-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(22,43,70,0.18);
}
.private-ai-content {
  max-width: 620px;
}
.private-ai-definition {
  font-family: var(--font-title);
  font-size: clamp(1.18rem, 2.1vw, 1.65rem);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 22px;
}
.private-ai-definition strong {
  color: var(--teal-dark);
}
.private-ai-content .section-subtitle {
  margin-bottom: 30px;
}

/* ---- Pain Section ---- */
.pain-section { background: var(--light); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pain-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 32px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 16px;
  font-size: 3rem;
  color: var(--teal);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.pain-card p {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
}
.pain-footer {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- Services Section ---- */
.services-section { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-top: 3px solid var(--teal);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56,182,171,0.3);
}
.service-number {
  font-family: var(--font-title);
  font-size: 3rem;
  color: rgba(56,182,171,0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.service-icon {
  width: 44px; height: 44px;
  background: rgba(56,182,171,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-what {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-outputs {
  background: var(--light);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}
.service-outputs h5 {
  color: var(--teal);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.service-outputs ul { display: flex; flex-direction: column; gap: 6px; }
.service-outputs li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.service-outputs li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
}
.service-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(56,182,171,0.1);
  color: var(--teal);
}
.service-tag.orange {
  background: rgba(239,119,76,0.1);
  color: var(--orange);
}
.services-footer {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius-lg);
  color: white;
}
.services-footer p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ---- Sectors Section ---- */
.sectors-section { background: var(--light); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.sector-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.sector-card-image {
  height: 200px;
  overflow: hidden;
}
.sector-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sector-card:hover .sector-card-image img { transform: scale(1.05); }
.sector-card-body { padding: 28px; }
.sector-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(56,182,171,0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.sector-card-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.sector-subtitle {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}
.sector-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sector-examples {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.sector-examples li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.sector-examples li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.7rem;
}

/* ---- Grants Section ---- */
.grants-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.grants-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(56,182,171,0.15) 0%, transparent 60%);
}
.grants-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.grants-content .section-label { color: var(--teal-light); }
.grants-content .section-title { color: white; }
.grants-content .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.grants-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.grants-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}
.check-icon {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.grants-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.grants-visual img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  width: 100%;
}

/* ---- How Section ---- */
.how-section { background: white; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 56px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange), var(--navy));
  z-index: 0;
}
.process-step {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: white;
}
.step-number-wrap {
  width: 56px; height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(56,182,171,0.3);
}
.step-number-wrap span {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: white;
}
.process-step h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step > p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.step-outputs {
  background: white;
  border-radius: 10px;
  padding: 16px;
}
.step-outputs h5 {
  color: var(--teal);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.step-outputs ul { display: flex; flex-direction: column; gap: 6px; }
.step-outputs li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
}
.step-outputs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.7rem;
}
.process-footer {
  text-align: center;
  padding: 40px;
  background: var(--light);
  border-radius: var(--radius-lg);
}
.process-footer p {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 24px;
}

/* ---- Credibility Section ---- */
.credibility-section { background: var(--light); }
.credibility-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--teal);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.3;
  text-align: center;
}
/* ---- Testimonials ---- */
.testimonials-section { background: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-title);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-info .name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.testimonial-info .role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(56,182,171,0.15) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-title { color: white; margin-bottom: 16px; }
.cta-section .section-subtitle {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 32px;
}
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ---- Sector Detail (Tabs) ---- */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--light);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--navy); background: var(--light-2); }
.tab-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.sector-detail { display: none; }
.sector-detail.active { display: block; }

/* ---- Case Study Card ---- */
.case-study-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.case-study-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.case-study-badge {
  display: inline-block;
  background: rgba(56,182,171,0.2);
  color: var(--teal-light);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.case-study-header h3 {
  color: white;
  font-size: 1rem;
}
.case-study-body {
  padding: 24px 28px;
}
.case-study-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}
.case-study-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.result-item { text-align: center; }
.result-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--teal);
  letter-spacing: 0.05em;
}
.result-lbl {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* ---- Team Section ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(56,182,171,0.5);
  flex-shrink: 0;
}
.team-card-header-info h3 { color: white; font-size: 1.2rem; margin-bottom: 4px; }
.team-card-header-info .role { color: var(--teal-light); font-size: 0.8rem; }
.team-card-body { padding: 28px; }
.team-card-body > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.team-when {
  background: var(--light);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.team-when h5 {
  color: var(--teal);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.team-when ul { display: flex; flex-direction: column; gap: 6px; }
.team-when li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
}
.team-when li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.7rem;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.team-stat { text-align: center; }
.team-stat .num {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--teal);
}
.team-stat .lbl {
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.3;
}
.team-network {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.team-network h3 { color: white; margin-bottom: 12px; }
.team-network p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 24px; font-size: 0.9rem; }
.network-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.network-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ---- Contact Section ---- */
.contact-section { background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-grid h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-grid > div > p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.contact-option:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.contact-option-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-option-icon.teal { background: rgba(56,182,171,0.1); color: var(--teal); }
.contact-option-icon.orange { background: rgba(239,119,76,0.1); color: var(--orange); }
.contact-option-info .label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-option-info .value {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.contact-option-info .desc {
  font-size: 0.78rem;
  color: var(--text-light);
}
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--light);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(56,182,171,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.radio-option:has(input:checked) {
  border-color: var(--teal);
  background: rgba(56,182,171,0.08);
  color: var(--teal);
}
.radio-option input { display: none; }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ---- Accordion ---- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.accordion-header:hover { color: var(--teal); }
.accordion-header::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  transition: transform var(--transition);
}
.accordion-item.open .accordion-header::after { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body-inner { padding-bottom: 20px; color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text {
  font-family: var(--font-title);
  font-size: 2rem;
  color: white;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--teal);
  color: white;
}
.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(56,182,171,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 500;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-4px); }

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(56,182,171,0.3);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .credibility-stats { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .private-ai-inner { grid-template-columns: 1fr; gap: 40px; }
  .private-ai-visual { max-width: 560px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .grants-inner { grid-template-columns: 1fr; }
  .grants-visual { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sector-detail > div { grid-template-columns: 1fr !important; }
  .how-section > .container > div:first-of-type { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar-menu, .navbar-right { display: none; }
  .hamburger { display: flex; }
  .proof-strip .container { gap: 0; }
  .proof-item { padding: 0 16px; }
  .proof-divider { height: 28px; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .credibility-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .tabs { flex-direction: column; }
  .tab-btn { text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .cta-group { flex-direction: column; align-items: center; }
  .grants-cta-group { flex-direction: column; }
  .credibility-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.6rem; }
}

/* ============================================================
   CASE STUDY SLIDER
   ============================================================ */
.cs-slider {
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--navy);
}

.cs-slider-track {
  position: relative;
  width: 100%;
}

.cs-slide {
  display: none;
  width: 100%;
}

.cs-slide.active {
  display: block;
}

.cs-slide-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  position: relative;
}

.cs-slide-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cline x1='10' y1='30' x2='50' y2='30' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cline x1='30' y1='10' x2='30' y2='50' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") center/60px;
  opacity: 0.5;
}

.cs-slide-label {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.cs-prev, .cs-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.cs-prev { left: 10px; }
.cs-next { right: 10px; }

.cs-prev:hover, .cs-next:hover {
  background: rgba(56,182,171,0.6);
}

.cs-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.cs-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}

/* ============================================================
   CONTACT PERSON CARDS (WhatsApp + Calendly)
   ============================================================ */
.contact-person-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-person-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-person-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.contact-person-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
  flex-shrink: 0;
}

.contact-person-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font-title);
}

.contact-person-role {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 500;
}

.contact-person-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-person-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.contact-action-btn.whatsapp {
  background: #25D366;
  color: white;
}

.contact-action-btn.whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
}

.contact-action-btn.calendly {
  background: var(--navy);
  color: white;
}

.contact-action-btn.calendly:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ============================================================
   TESTIMONIAL ENHANCEMENTS (stars + company)
   ============================================================ */
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-info .company {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: 2px;
}

/* ============================================================
   MOBILE FIX: Remove duplicate text in CTA sections
   ============================================================ */
@media (max-width: 768px) {
  /* On mobile, hide the subtitle in CTA section if it duplicates the title */
  .cta-section .section-subtitle {
    display: none;
  }

  /* Contact person cards stack nicely */
  .contact-person-actions {
    flex-direction: column;
  }

  .contact-action-btn {
    justify-content: center;
  }

  /* Slider height on mobile */
  .cs-slide-placeholder {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .contact-person-card {
    padding: 18px;
  }
}

/* ============================================================
   RADAR BLOG
   ============================================================ */
.radar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.radar-filter {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.radar-filter:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.radar-filter.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

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

.radar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.radar-card.hidden {
  display: none;
}

.radar-card-image {
  position: relative;
}

.radar-card-img-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.radar-card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.radar-tag {
  background: rgba(22, 43, 70, 0.75);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.radar-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.radar-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.radar-card-meta time {
  font-size: 0.78rem;
  color: var(--text-light);
}

.radar-read-time {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 500;
}

.radar-read-time::before {
  content: '· ';
}

.radar-card-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}

.radar-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.radar-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
  text-decoration: none;
}

.radar-read-more::after {
  content: '→';
  transition: transform var(--transition);
}

.radar-read-more:hover {
  color: var(--teal-dark);
  gap: 10px;
}

/* ============================================================
   RADAR PAGINATION
   ============================================================ */
.radar-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-bottom: 16px;
}

.radar-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(56, 182, 171, 0.3);
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.radar-page-btn:hover:not(.disabled):not(.active) {
  background: rgba(56, 182, 171, 0.1);
  border-color: var(--teal);
}

.radar-page-btn.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.radar-page-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.article-page {
  padding: 150px 24px 88px;
  background: var(--light);
}

.article-container,
.article-page > .breadcrumb {
  width: min(100%, 920px);
  margin-inline: auto;
}

.article-page > .breadcrumb {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.92rem;
}

.article-page > .breadcrumb a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
}

.article-container {
  padding: 56px clamp(24px, 5vw, 72px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-header {
  display: grid;
  gap: 18px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-header h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--text-mid);
  font-size: 0.98rem;
}

.article-meta time,
.article-meta span:last-child {
  color: var(--navy);
  font-weight: 600;
}

.article-meta .radar-read-time {
  font-size: inherit;
}

.article-hero-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  margin: 20px 0 28px;
  border-radius: 8px;
  background: var(--navy);
}

.article-content {
  color: var(--text-dark);
  font-size: 1.06rem;
  line-height: 1.82;
}

.article-content p + p {
  margin-top: 16px;
}

.article-content h3 {
  margin: 38px 0 12px;
  color: var(--navy);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.article-final-cta,
.related-articles {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.article-final-cta h2,
.related-articles h2 {
  color: var(--navy);
  font-size: 1.5rem;
  letter-spacing: 0;
}

.article-final-cta p {
  margin: 10px 0 20px;
}

.related-articles ul {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.related-articles a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
}

.related-articles a:hover {
  color: var(--navy);
}

/* ============================================================
   ARTICLE MODAL
   ============================================================ */
.article-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.article-modal.open {
  display: flex;
}

.article-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 43, 70, 0.7);
  backdrop-filter: blur(4px);
}

.article-modal-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: calc(100% - 32px);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.article-modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  z-index: 10;
}

.article-modal-close:hover {
  background: var(--border);
}

.article-modal-inner {
  padding: 32px 40px 40px;
  clear: both;
}

.article-modal-inner h2 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-modal-inner .article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.article-modal-inner .article-meta time {
  font-size: 0.82rem;
  color: var(--text-light);
}

.article-modal-inner .article-meta .article-tags {
  display: flex;
  gap: 6px;
}

.article-modal-inner p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.article-modal-inner h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 24px 0 12px;
}

.article-modal-cta {
  margin-top: 32px;
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius);
  text-align: center;
}

.article-modal-cta p {
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--navy);
}

/* ============================================================
   COMPREHENSIVE MOBILE FIX
   ============================================================ */

/* Utility class for responsive 2-col grids */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.grid-2col-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.grid-2col-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  /* Fix all inline 2-column grids in How We Work and About pages */
  .page [style*="grid-template-columns:1fr 1fr"],
  .page [style*="grid-template-columns: 1fr 1fr"],
  .page [style*="grid-template-columns:1fr 1fr;"],
  .page [style*="grid-template-columns: 1fr 1fr;"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .grid-2col,
  .grid-2col-center {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .grid-2col-sm {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Radar grid */
  .radar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Article modal */
  .article-modal-inner {
    padding: 24px;
  }

  /* Proof points card on mobile */
  .proof-points-card {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  /* Fix all inline 2-column grids everywhere */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Radar grid */
  .radar-grid {
    grid-template-columns: 1fr;
  }

  /* Radar filters */
  .radar-filters {
    gap: 8px;
    margin-bottom: 32px;
  }

  .radar-filter {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .radar-pagination {
    gap: 6px;
    margin-top: 32px;
  }

  .radar-page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .article-page {
    padding: 116px 16px 64px;
  }

  .article-page > .breadcrumb {
    margin-bottom: 18px;
    font-size: 0.84rem;
  }

  .article-container {
    padding: 30px 18px 36px;
  }

  .article-header h1 {
    font-size: clamp(2rem, 13vw, 3.4rem);
    line-height: 1;
  }

  .article-meta {
    font-size: 0.9rem;
  }

  .article-hero-image {
    margin: 14px 0 22px;
    max-height: 300px;
  }

  /* Article modal full screen on mobile */
  .article-modal-content {
    max-height: 92vh;
    border-radius: var(--radius) var(--radius) 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .article-modal {
    align-items: flex-end;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* How We Work page: hide images on mobile to save space */
  .how-visual-hide-mobile {
    display: none;
  }

  /* Stat cards in about page */
  [style*="grid-template-columns:repeat(2, 1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Mini team cards in contact */
  [style*="display:flex"][style*="gap:16px"][style*="margin-top:32px"] {
    flex-direction: column;
  }

  /* Proof points card */
  [style*="background:linear-gradient(135deg, var(--navy)"] {
    padding: 24px !important;
  }

  /* How page CTA box */
  [style*="text-align:center"][style*="padding:48px"] {
    padding: 32px 24px !important;
  }
}

@media (max-width: 480px) {
  /* Radar card image height */
  .radar-card-img-placeholder {
    height: 140px;
  }

  .radar-card-body {
    padding: 18px;
  }

  /* Article modal */
  .article-modal-inner {
    padding: 20px 16px 32px;
  }

  .article-modal-inner h2 {
    font-size: 1.2rem;
  }

  /* Stat cards 2x2 on small screens */
  .credibility-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Navbar logo size */
  .navbar-logo img {
    height: 32px !important;
  }

  /* Page hero padding */
  .page-hero {
    padding: 80px 0 40px;
  }

  /* Section label font */
  .section-label {
    font-size: 0.7rem;
  }
}

/* ============================================================
   RESPONSIVE GRID — DEFINITIVE MOBILE FIX
   ============================================================ */

/* Base: 2-column grid */
.responsive-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px;
  align-items: start;
}

/* Tablet: single column */
@media (max-width: 900px) {
  .responsive-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Reset order on mobile for alternating layouts */
  .responsive-grid > [style*="order:2"] {
    order: 1 !important;
  }
  .responsive-grid > [style*="order:1"] {
    order: 2 !important;
  }

  /* Inner 2-col grids (like the small info boxes) */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Sector details */
  .sector-detail > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* How page blocks */
  .page#page-how .responsive-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* All 2-col grids become single column */
  .responsive-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Inner small 2-col grids (info boxes) stay 2-col on mobile */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"],
  [style*="grid-template-columns: 1fr 1fr"][style*="gap:16px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Sector details: force single column */
  .sector-detail > [style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* About page: hide proof points card image on mobile */
  .about-visual-mobile-hide {
    display: none;
  }

  /* Team grid: single column */
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact grid: single column */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* How page CTA box */
  [style*="padding:48px"] {
    padding: 28px 20px !important;
  }

  /* Proof points card */
  [style*="background:linear-gradient(135deg, var(--navy)"] {
    padding: 28px 20px !important;
  }

  /* Section title size */
  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }

  /* Hero title */
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 3rem) !important;
  }

  /* Page hero */
  .page-hero h1 {
    font-size: clamp(1.5rem, 5.5vw, 2.5rem) !important;
  }

  /* Stat cards in about */
  [style*="grid-template-columns:repeat(2, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Radar card image */
  .radar-card-img-placeholder {
    height: 150px;
  }
}

@media (max-width: 480px) {
  /* Very small screens: everything single column */
  .responsive-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Inner small grids: also single column on very small screens */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"],
  [style*="grid-template-columns: 1fr 1fr"][style*="gap:16px"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Radar grid */
  .radar-grid {
    grid-template-columns: 1fr !important;
  }

  /* Stat cards: 2x2 */
  [style*="grid-template-columns:repeat(2, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Team stats */
  .team-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  /* Sector tabs */
  .sector-tabs {
    flex-direction: column;
    gap: 8px;
  }

  .sector-tab {
    width: 100%;
    text-align: center;
  }

  /* Contact person cards */
  .contact-person-card {
    padding: 20px !important;
  }

  /* Navbar */
  .navbar-logo img {
    height: 30px !important;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
  }

  /* Hero buttons */
  .hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-cta .btn {
    text-align: center !important;
  }
}

/* ============================================================
   ADDITIONAL MOBILE OVERFLOW PREVENTION
   ============================================================ */

/* Prevent any element from overflowing the viewport */
@media (max-width: 768px) {
  .page,
  .section,
  .container {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure sector detail images don't overflow */
  .sector-detail img {
    width: 100%;
    height: auto;
  }

  /* Fix case study slider on mobile */
  .cs-slider {
    width: 100%;
  }

  .cs-slide-placeholder {
    height: 200px !important;
  }

  /* Fix proof strip */
  .proof-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Fix service steps */
  .service-steps {
    grid-template-columns: 1fr !important;
  }

  /* Fix pain cards */
  .pain-grid {
    grid-template-columns: 1fr !important;
  }

  /* Fix testimonial grid */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  /* Fix grants list */
  .grants-list {
    flex-direction: column;
  }

  /* Fix how steps */
  .how-steps {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Fix step connector */
  .step-connector {
    display: none !important;
  }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-content {
  color: var(--text);
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.privacy-section h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading);
  margin-top: 24px;
  margin-bottom: 10px;
}

.privacy-section p {
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 12px;
  color: var(--text);
}

.privacy-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.privacy-section ul li {
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 6px;
  color: var(--text);
}

.privacy-section a {
  color: var(--accent);
  text-decoration: underline;
}

.privacy-section a:hover {
  color: var(--accent-hover, var(--accent));
}
