/* ============================================================
   CONTINUOUS DEVELOPMENT PAGE — page-continuous-development.css
   Depends on global: wrap, section-white, section-cream,
   section-dark, btn-primary, btn-dark, btn-outline-dark,
   btn-outline-light, eyebrow, section-head, callout-lime,
   checklist, card-white, faq-list, faq-item, faq-q, faq-a,
   faq-toggle, icon-badge, cta-band
   ============================================================ */

/* ─────────────────────────────────────────────────────────
   1. HERO
   ───────────────────────────────────────────────────────── */
   :root {
    --navy: #06061a;
    --cobalt: #1414c8;
    --mid: #0a0a50;
    --panel: #11112e;
    --lime: #3dffb0;
    --lime-dim: #2bcf8e;
    --cream: #f5f4f0;
    --ink: #111827;
    --soft: #374151;
    --muted: #6b7280;
    --line-lt: #e8e6e0;
    --line-dk: rgba(255, 255, 255, 0.08);
    --mono: 'SF Mono', 'Courier New', monospace;
    --grad: linear-gradient(180deg, #1414c8 0%, #0a0a50 50%, #06061a 100%);
}
.cd-top-block {
  background: var(--grad);
}

.cd-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 48px 72px;
}
@media (max-width: 768px) {
  .cd-hero-inner {
    padding: 56px 20px 48px;
  }
}

.cd-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.cd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .cd-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cd-hero-h1 {
  color: #fff;
  margin-bottom: 20px;
}
.cd-hero-h1 .accent {
  color: #3dffb0;
}

.cd-hero-p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 540px;
}
.cd-hero-p-gap {
  margin-bottom: 32px;
}

.cd-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right panel */
.cd-hero-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
}

.cd-panel-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.cd-panel-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cd-panel-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cd-panel-arrow {
  color: #3dffb0;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cd-panel-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────
   2. LIME STRIP
   ───────────────────────────────────────────────────────── */
.cd-strip {
  background: #3dffb0;
  padding: 24px 48px;
}
@media (max-width: 768px) {
  .cd-strip {
    padding: 24px 20px;
  }
}

.cd-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cd-strip-heading {
  font-size: 20px;
  font-weight: 800;
  color: #06061a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cd-strip-sub {
  font-size: 14px;
  color: rgba(6, 6, 26, 0.55);
  margin-top: 4px;
}

.cd-strip-btn {
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   3. WHAT WE DO — dev card grid
   ───────────────────────────────────────────────────────── */
.cd-dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .cd-dev-grid {
    grid-template-columns: 1fr;
  }
}

.dev-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.dev-card:hover {
  border-color: #3dffb0;
}

.cd-icon-badge {
  margin-bottom: 18px;
}

.cd-dev-card-h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cd-dev-card-p {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   4. COMMERCIALLY MINDED (dark)
   ───────────────────────────────────────────────────────── */
.cd-com-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .cd-com-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.cd-com-h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cd-com-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Stat cards column */
.cd-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cd-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}

.cd-stat-card-lime {
  background: rgba(61, 255, 176, 0.07);
  border-color: rgba(61, 255, 176, 0.2);
}

.cd-stat-value {
  font-size: 42px;
  font-weight: 800;
  color: #3dffb0;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.cd-stat-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.cd-stat-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   5. GROWTH ADVISORY (cream)
   ───────────────────────────────────────────────────────── */
.cd-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cd-adv-grid {
    grid-template-columns: 1fr;
  }
}

.cd-adv-card {
  border-left: 3px solid #3dffb0;
}

.cd-adv-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2bcf8e;
  margin-bottom: 14px;
  font-weight: 600;
}

.cd-adv-h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.cd-adv-p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cd-adv-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0;
}

.cd-adv-list li {
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.cd-adv-arrow {
  color: #3dffb0;
  font-weight: 700;
  flex-shrink: 0;
}

/* Founder quote + consultancy box */
.cd-quote-grid {
  background: var(--grad);
  border-radius: 20px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .cd-quote-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 32px;
  }
}

.cd-quote-mark {
  font-size: 48px;
  color: rgba(61, 255, 176, 0.2);
  line-height: 1;
  margin-bottom: 4px;
}

.cd-quote-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cd-quote-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.cd-quote-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.cd-quote-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.cd-consult-box {
  background: rgba(61, 255, 176, 0.1);
  border: 1px solid rgba(61, 255, 176, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.cd-consult-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cd-consult-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────────────────
   6. HOW IT WORKS — 4-step grid
   ───────────────────────────────────────────────────────── */
.cd-hiw-head {
  text-align: center;
  margin: 0 auto 40px;
}

.cd-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .cd-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .cd-steps-grid {
    grid-template-columns: 1fr;
  }
}

.cd-step {
  background: #f5f4f0;
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  padding: 24px;
}

.cd-step-dark {
  background: #06061a;
  border-color: rgba(61, 255, 176, 0.2);
}

.cd-step-badge {
  width: 32px;
  height: 32px;
  background: #06061a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #3dffb0;
  margin-bottom: 16px;
}

.cd-step-badge-dark {
  background: rgba(61, 255, 176, 0.15);
}

.cd-step-title {
  margin-bottom: 8px;
  color: #111827;
}
.cd-step-title-light {
  color: #fff;
}

.cd-step-desc {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
}
.cd-step-desc-light {
  color: rgba(255, 255, 255, 0.85);
}

/* ─────────────────────────────────────────────────────────
   7. CASE STUDIES
   ───────────────────────────────────────────────────────── */
.cd-cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .cd-cs-grid {
    grid-template-columns: 1fr;
  }
}

.cd-cs-card {
  border-top: 3px solid #3dffb0;
}

.cd-cs-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 14px;
}

.cd-cs-client {
  font-size: 18px;
  margin-bottom: 8px;
}

.cd-cs-desc {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cd-cs-quote {
  font-size: 14px;
  font-style: italic;
  color: #6b7280;
  border-left: 3px solid #e8e6e0;
  padding-left: 14px;
  line-height: 1.6;
}

.cd-cs-cite {
  font-style: normal;
  font-weight: 600;
  color: #111827;
  display: block;
  margin-top: 6px;
  font-size: 12px;
}

.cd-cs-cta {
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   8. FAQ FOOTER
   ───────────────────────────────────────────────────────── */
.cd-faq-footer {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e8e6e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cd-faq-footer-text {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  font-weight: 700;
}

.cd-faq-footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────
   9. CTA BAND
   ───────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────
   10. DISCLAIMER BAR
   ───────────────────────────────────────────────────────── */
.cd-disclaimer-bar {
  background: #f5f4f0;
  border-top: 1px solid #e8e6e0;
  padding: 14px 48px;
}
@media (max-width: 768px) {
  .cd-disclaimer-bar {
    padding: 14px 20px;
  }
}

.cd-disclaimer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.cd-disclaimer-bar p {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}


.icon-badge {
  width: 48px;
  height: 48px;
  background: #06061a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .dev-card, .cd-hero-panel, .cd-stat-card, .card-white.cd-adv-card, .cd-consult-box, .cd-step-dark, .card-white {
      padding: 20px;
  }
}
@media (max-width: 767px) {
  .cd-stat-value {
    font-size: 32px;
  }
  .icon-badge {
      width: 35px;
      height: 35px;
      border-radius: 8px;
  }
}