/* ============================================================
   AI DEVELOPMENT PAGE — page-ai-development.css
   Depends on global: wrap, topnav, eyebrow, accent, section-head,
   btn-primary, btn-secondary, btn-dark, btn-outline-light,
   icon-badge, faq-list, faq-item, faq-q, faq-a, faq-toggle, footer
   ============================================================ */

/* ─────────────────────────────────────────────────────────
   1. HERO trust line + stat bar
   ───────────────────────────────────────────────────────── */
.aid-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 255, 176, 0.1);
  border: 1px solid rgba(61, 255, 176, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.aid-hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #3dffb0;
  border-radius: 50%;
}

.aid-hero-badge-text {
  font-size: 11px;
  color: #3dffb0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aid-hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.aid-hero-trust-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.aid-hero-trust-item strong {
  color: #fff;
}


/* ─────────────────────────────────────────────────────────
   2. OUR APPROACH — dot points + contrast panels
   ───────────────────────────────────────────────────────── */
.aid-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .aid-approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.aid-dot-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aid-dot-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.aid-dot {
  width: 8px;
  height: 8px;
  background: #3dffb0;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.aid-dot-text {
  color: rgba(255, 255, 255, 0.8);
}

.aid-panels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aid-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
}
.aid-panel-positive {
  background: rgba(61, 255, 176, 0.07);
  border-color: rgba(61, 255, 176, 0.2);
}

.aid-panel-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(255, 107, 107, 0.8);
}
.aid-panel-positive .aid-panel-label {
  color: #2bcf8e;
}

.aid-panel-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.aid-panel-positive .aid-panel-text {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────
   3. CAPABILITIES — 3x3 card grid
   ───────────────────────────────────────────────────────── */
.aid-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .aid-cap-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .aid-cap-grid {
    grid-template-columns: 1fr;
  }
}

.aid-cap-card {
  background: #fff;
  border: 1px solid var(--line-lt);
  border-radius: 16px;
  padding: 28px;
}

.aid-cap-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.aid-cap-desc {
  color: var(--muted);
  margin-bottom: 14px;
}

/* Reusable arrow list — capability cards, tech stack columns, platform cards */
.aid-arrow-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}
.aid-arrow-list li {
  color: var(--soft);
  display: flex;
  gap: 8px;
}
.aid-arrow-list li::before {
  content: '\2192';
  color: #3dffb0;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   4. RAG FEATURE
   ───────────────────────────────────────────────────────── */
.aid-rag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .aid-rag-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.aid-rag-highlight {
  background: rgba(61, 255, 176, 0.07);
  border: 1px solid rgba(61, 255, 176, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.aid-rag-highlight em {
  font-style: italic;
}

.aid-rag-process-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.aid-rag-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aid-rag-step {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #11112e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
}
.aid-rag-step-featured {
  background: rgba(61, 255, 176, 0.08);
  border-color: rgba(61, 255, 176, 0.2);
}

.aid-rag-step-num {
  width: 32px;
  height: 32px;
  background: #3dffb0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #06061a;
  flex-shrink: 0;
}

.aid-rag-step-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.aid-rag-step-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────
   5. TECH STACK
   ───────────────────────────────────────────────────────── */
.aid-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .aid-tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .aid-tech-grid {
    grid-template-columns: 1fr;
  }
}

.aid-tech-col {
  background: #fff;
  border: 1px solid var(--line-lt);
  border-radius: 14px;
  padding: 24px;
}

.aid-tech-col-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.aid-tech-col .aid-arrow-list {
  gap: 10px;
}
.aid-tech-col .aid-arrow-list li {
  font-size: 14px;
  align-items: center;
}

.aid-tech-strip {
  background: #06061a;
  border-radius: 16px;
  padding: 28px 36px;
}

.aid-tech-strip-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.aid-tech-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.aid-tech-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ─────────────────────────────────────────────────────────
   6. AI BY PLATFORM
   ───────────────────────────────────────────────────────── */
.aid-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .aid-platform-grid {
    grid-template-columns: 1fr;
  }
}
.aid-platform-grid-full {
  margin-bottom: 40px;
}

.aid-platform-card {
  background: #11112e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}
.aid-platform-card-featured {
  background: rgba(61, 255, 176, 0.06);
  border-color: rgba(61, 255, 176, 0.2);
}

.aid-platform-head {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.aid-platform-card-featured .aid-platform-head {
  background: rgba(61, 255, 176, 0.08);
  border-bottom-color: rgba(61, 255, 176, 0.15);
}

.aid-platform-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.aid-platform-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.aid-platform-card-featured .aid-platform-tag {
  color: rgba(255, 255, 255, 0.8);
}

.aid-platform-link {
  font-size: 11px;
  color: #3dffb0;
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.aid-platform-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aid-platform-body .aid-arrow-list {
  gap: 10px;
}
.aid-platform-body .aid-arrow-list li {
  color: rgba(255, 255, 255, 0.8);
}
.aid-platform-card-featured .aid-arrow-list li {
  color: rgba(255, 255, 255, 0.8);
}

.aid-platform-callout {
  margin: 0 24px 20px;
  background: rgba(61, 255, 176, 0.1);
  border: 1px solid rgba(61, 255, 176, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.aid-nudge-bar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}

.aid-nudge-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.aid-nudge-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.aid-nudge-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   7. SECURITY
   ───────────────────────────────────────────────────────── */
.aid-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .aid-sec-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.aid-sec-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .aid-sec-cards {
    grid-template-columns: 1fr;
  }
}

.aid-sec-card {
  background: #11112e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
}

.aid-sec-card-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.aid-sec-card-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────
   8. CTA BAND (dark gradient variant)
   ───────────────────────────────────────────────────────── */
.cta-band p.aid-cta-phone-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.cta-band p.aid-cta-phone-line a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  text-decoration: none;
}
/* ── Breadcrumb ── */
.aid-breadcrumb {
	font-size: 11px;
	letter-spacing: .04em;
	margin-bottom: 20px;
}
.aid-breadcrumb-link {
	color: inherit;
	text-decoration: none;
}

/* ── Hero ── */
.aid-hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.aid-hero-title {
	color: #fff;
	margin-bottom: 24px;
}
.aid-hero-subtext {
	font-size: 19px;
	color: rgba(255, 255, 255, .62);
	line-height: 1.7;
	margin-bottom: 40px;
}
.aid-hero-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 32px;
	justify-content: center;
}
.aid-hero-btn-primary {
	font-size: 15px;
	padding: 16px 32px;
}

/* ── Section background helpers ── */
.aid-section-dark {
	background: #06061a;
}
.aid-section-cream {
	background: #f5f4f0;
}
.aid-section-white {
	background: #fff;
}
.aid-wrap-flush {
	padding-top: 0;
	padding-bottom: 0;
}

/* ── Dark-section heading / paragraph helpers (Approach, RAG, Security) ── */
.aid-heading-dark-20 {
	color: #fff;
	margin-bottom: 20px;
}
.aid-heading-dark-16 {
	color: #fff;
	margin-bottom: 16px;
}
.section-head p.text-light-8 {
	color: rgba(255, 255, 255, 0.8);
}
.text-light-8 {
	color: rgba(255, 255, 255, 0.8);
}

/* ── Capabilities button row ── */
.aid-btn-row-center {
	text-align: center;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── By Platform section ── */
.aid-white-text {
	color: #fff;
}
.aid-eyebrow-mono-green {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 16px;
	color: #3dffb0;
}

@media (max-width: 991px) {
  .aid-cap-card,
  .aid-tech-col,
  .aid-tech-strip,
  .aid-platform-head,
  .aid-platform-body,
  .aid-nudge-bar {
    padding: 20px;
  }
  .aid-platform-callout {
    padding: 15px;
  }
  .aid-sec-grid {
    gap: 40px;
  }
  .aid-sec-cards {
    grid-template-columns: 1fr;
  }
}