/* ──────────────────────────────────────────
   WHY AIGENSYS — full-screen two-column list
────────────────────────────────────────── */
#why {
  background: #111111;
  padding: 0 0 150px;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 2;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 100vh;
  align-items: start;
}

/* Left sticky title */
.why-title-col {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 100px 60px;
}

.why-title-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-section-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
  display: block;
  margin-bottom: 28px;
}

.why-section-heading {
  font-family: 'Satoshi', sans-serif;
  font-weight: 650;
  font-size: clamp(36px, 3.8vw, 57px);
  color: #ffffff;
  line-height: 1.00;
  text-transform: uppercase;
  margin: 0;
}

.why-divider {
  display: none;
}

/* Right items column */
.why-items-col {
  display: flex;
  flex-direction: column;
  background: #111111;
  padding-top: 120px;
}

.why-cover {
  background: #111111;
  min-height: 120px;
  flex-shrink: 0;
}


.why-item {
  padding: 0;
  background: #111111;
}


.why-item-strip {
  padding: 60px 60px 22px;
  border-top: 1px solid #2a2a2a;
}

.why-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.why-item-meta-label,
.why-item-meta-num {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  font-weight: 400;
  color: #555555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-item-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  letter-spacing: 0.05em;
}

.why-item-nav {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  letter-spacing: 0.05em;
}

.why-item-content {
  padding: 32px 60px 80px 260px;
  max-width: 910px;
}


.why-item-headline {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 560;
  color: #ffffff;
  line-height: 1.0;
  margin: 0;
}

.why-item-body {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 15px);
  color: rgba(255,255,255,0.5);
  line-height: 1.10;
  max-width: 600px;
  margin: 0;
  text-align: left;
}

/* ──────────────────────────────────────────
   ETHOS VALUE CARDS — 2×2 grid
────────────────────────────────────────── */
.ethos-value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 40px;
}

.val-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 24px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: none;
}

.val-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.val-card-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.val-card-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dk);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.val-card-body {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--text-md);
  line-height: 1.6;
}

/* ──────────────────────────────────────────
   METRIC BADGES — split service panels
────────────────────────────────────────── */
.metric-badge {
  display: inline-block;
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-md);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

/* ──────────────────────────────────────────
   TESTIMONIALS — 3 dark cards on cream
────────────────────────────────────────── */
#testimonials {
  background: var(--cream);
  padding: 100px 48px;
}

.test-label {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-md);
  text-align: center;
  display: block;
  margin-bottom: 32px;
}

.test-intro-quote {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  color: #1a1a1a;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.6;
  opacity: 0.8;
}

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

.test-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 36px;
  transition: border-color 0.4s;
  cursor: none;
}

.test-card:hover { border-color: rgba(255,255,255,0.15); }

.test-quote-mark {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
}

.test-card:nth-child(1) .test-quote-mark { color: var(--teal); }
.test-card:nth-child(2) .test-quote-mark { color: var(--orange); }
.test-card:nth-child(3) .test-quote-mark { color: var(--grey-c); }

.test-text {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 28px;
}

.test-author {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
