/* assets/pages.css — Inner-page components */

/* ===== SUBHERO ===== */
.subhero {
  background: var(--forest-night);
  padding: 140px 0 80px;
  color: #fff;
}
.subhero-inner { max-width: 760px; }
.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px;
  color: rgba(237,255,236,0.45);
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.crumbs a { color: rgba(237,255,236,0.45); transition: color 0.15s; }
.crumbs a:hover { color: var(--teal-signal); }
.crumbs span { opacity: 0.35; }
.tag {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-signal);
  background: rgba(29,120,116,0.18);
  padding: 5px 10px; border-radius: 4px;
  margin-bottom: 20px;
}
.subhero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08; color: #fff;
  margin-bottom: 20px;
}
.subhero .lead {
  font-family: var(--font-body); font-weight: 300;
  font-size: 18px; color: rgba(237,255,236,0.75);
  line-height: 1.65; max-width: 600px;
  margin-bottom: 32px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== STEPS SECTION ===== */
.steps-section { background: var(--bg); padding: 100px 0; }
[data-theme="dark"] .steps-section { background: var(--forest-night); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
[data-theme="dark"] .step { background: var(--forest-night-3); border-color: transparent; }
.step:hover { transform: translateY(-4px); border-color: var(--teal-signal); }

/* Old text step labels */
.step-num {
  font-family: var(--font-body); font-weight: 700;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
/* C2: New typographic numbered circles */
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-signal);
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 0;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; } }
.split h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.split > div > p { font-size: 15px; color: var(--text-soft); line-height: 1.7; margin-bottom: 10px; }

/* ===== DELIVERABLES LIST ===== */
.deliv-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.deliv-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-soft); line-height: 1.55;
}
.dot {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: rgba(29,120,116,0.12);
  color: var(--teal-signal);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.dot svg { width: 12px; height: 12px; }
[data-theme="dark"] .dot { background: rgba(29,120,116,0.20); }

/* ===== A3 — PULL QUOTE ===== */
.pull-quote { padding: 80px 0; background: var(--bg); }
[data-theme="dark"] .pull-quote { background: var(--forest-night-2); }
.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  border-left: 4px solid #1D7874;
  padding: 20px 24px;
  margin: 0 auto;
  max-width: 760px;
  background: rgba(237,255,236,0.60);
  color: #0D1F1E;
  border-radius: 0 6px 6px 0;
}
[data-theme="dark"] .pull-quote blockquote {
  background: rgba(29,120,116,0.08);
  color: rgba(255,255,255,0.90);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--mint-ground);
  padding: 100px 0;
  text-align: center;
}
[data-theme="dark"] .cta-strip { background: var(--forest-night-2); }
.cta-strip h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 12px 0 16px; }
.cta-strip p {
  font-size: 16px; color: var(--text-soft); font-weight: 300;
  margin-bottom: 28px; max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* ===== SPOTLIGHT — AI & Automation ===== */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
  padding: 40px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}
[data-theme="dark"] .spotlight { background: var(--forest-night-3); border-color: transparent; }
@media (max-width: 760px) { .spotlight { grid-template-columns: 1fr; gap: 32px; padding: 28px; } }
.big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--teal-signal);
  line-height: 1; letter-spacing: -0.02em;
}
.big-sub {
  font-family: var(--font-body); font-weight: 300;
  font-size: 13px; color: var(--text-muted);
  margin-top: 6px; margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.spotlight h3 { font-size: 22px; margin-bottom: 14px; }
.spotlight p { font-size: 15px; color: var(--text-soft); line-height: 1.65; }
.callout {
  background: rgba(29,120,116,0.08);
  border-left: 3px solid var(--teal-signal);
  padding: 18px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 14px; color: var(--text-soft); line-height: 1.65;
  margin-top: 16px;
}
[data-theme="dark"] .callout { background: rgba(29,120,116,0.14); color: rgba(237,255,236,0.80); }

/* ===== TRI-GRID — EdTech ===== */
.tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 760px) { .tri-grid { grid-template-columns: 1fr; } }
.tri-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
[data-theme="dark"] .tri-card { background: var(--forest-night-3); border-color: transparent; }
.tri-card:hover { transform: translateY(-4px); border-color: var(--teal-signal); }
.tri-num {
  font-family: var(--font-body); font-weight: 700;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-signal); margin-bottom: 14px;
}
/* C2: EdTech pillar circles */
.tri-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-signal); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.tri-card h3 { font-size: 20px; margin-bottom: 10px; }
.tri-card p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ===== STAT STRIP — EdTech ===== */
.stat-strip {
  background: var(--teal-signal);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.stat-strip .big { color: #fff; font-size: clamp(64px, 9vw, 96px); }
.stat-strip .lbl {
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.80); margin-top: 12px;
}

/* ===== PAIN CARDS — Communication ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 760px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
[data-theme="dark"] .pain-card { background: var(--forest-night-3); border-color: transparent; }
.pain-problem {
  font-family: var(--font-display); font-style: italic;
  font-size: 16px; color: var(--terracotta); line-height: 1.4;
}
.pain-arrow { color: var(--teal-signal); display: flex; }
.pain-solution { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ===== ABOUT / FOUNDER (pages.css supplement) ===== */
/* used by about.html page-hero */
.about-hero h1 { font-size: clamp(40px, 5.6vw, 60px); }

/* WhatsApp CTA — contact page */
.whatsapp-cta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(29,120,116,0.08);
  border-radius: 6px;
  font-size: 15px; color: var(--text-soft);
}
[data-theme="dark"] .whatsapp-cta { background: rgba(29,120,116,0.14); }
.whatsapp-cta a {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--teal-signal);
  transition: color 0.15s;
}
.whatsapp-cta a:hover { color: var(--teal-signal-hover); }
