/* =====================================================================
   DocClix About page — a full, multi-section layout built ON TOP of the
   homepage design system. Loaded AFTER home-redesign.css and reuses its
   .dc-home tokens (--dc-teal, --dc-ink, fonts, etc.). All rules scoped
   under .dc-home so navbar/footer and other pages stay unaffected.
   ===================================================================== */

/* ── HERO: framed image + decorative backdrop + floating stat badges ── */
.dc-home .ab-hero-visual { position: relative; }
.dc-home .ab-hero-visual::after {
  content: ''; position: absolute; z-index: 0;
  right: -26px; bottom: -26px; width: 180px; height: 180px;
  border-radius: 36px; background: var(--dc-teal-light);
}
.dc-home .ab-hero-img {
  position: relative; z-index: 1;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--dc-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}
.dc-home .ab-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dc-home .ab-badge { gap: 8px; }
.dc-home .ab-badge .ab-badge-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--dc-teal-light); color: var(--dc-teal); font-size: 13px;
}
.dc-home .ab-badge strong { font-family: 'Literata', Georgia, serif; font-weight: 400; }
.dc-home .ab-badge-1 { top: 26px; left: -24px; }
.dc-home .ab-badge-2 { bottom: 30px; right: -22px; animation-delay: .45s; }

/* ── Centered section header ── */
.dc-home .ab-head-center { text-align: center; max-width: 680px; margin: 0 auto; }
.dc-home .ab-head-center .dc-section-sub { margin: 12px auto 0; }

/* ── Two-column split (image + copy): Who We Are, Why Choose Us ── */
.dc-home .ab-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.dc-home .ab-media { position: relative; }
.dc-home .ab-media img { width: 100%; border-radius: 18px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10); }
.dc-home .ab-float-ico {
  position: absolute; bottom: -18px; right: -18px;
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--dc-teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 10px 26px rgba(35, 147, 158, 0.42);
}
.dc-home .ab-split-rev .ab-float-ico { left: -18px; right: auto; background: var(--dc-accent); box-shadow: 0 10px 26px rgba(232, 168, 58, 0.42); }

/* ── "What makes us different" callout (real, specific copy) ── */
.dc-home .ab-callout {
  margin-top: 48px;
  background: var(--dc-surface);
  border: 1px solid var(--dc-border);
  border-left: 4px solid var(--dc-teal);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.dc-home .ab-callout-ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--dc-teal-light); color: var(--dc-teal);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.dc-home .ab-callout-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--dc-teal); margin-bottom: 8px;
}
.dc-home .ab-callout p { font-size: 16px; color: var(--dc-ink2); line-height: 1.7; }
.dc-home .ab-callout strong { color: var(--dc-ink); font-weight: 600; }

/* ── Check-mark feature list ── */
.dc-home .ab-features { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.dc-home .ab-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--dc-ink2); font-weight: 500; }
.dc-home .ab-feature .ms { color: var(--dc-teal); font-size: 22px; }

/* ── Statistics band (sits inside a teal-light results section) ── */
.dc-home .ab-stats-section { background: var(--dc-teal-light); padding: 72px 40px; }
.dc-home .ab-stats-inner { max-width: 1140px; margin: 0 auto; }
.dc-home .ab-stats-section .dc-stat-band { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) {
  .dc-home .ab-stats-section .dc-stat-band { grid-template-columns: 1fr; }
  .dc-home .ab-stats-section .dc-stat-item { border-right: none; border-bottom: 1px solid var(--dc-border); }
  .dc-home .ab-stats-section .dc-stat-item:last-child { border-bottom: none; }
}

/* ── Generic light card grid: Mission & Vision, Why Choose Us, services-light ── */
.dc-home .ab-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.dc-home .ab-grid-2 { grid-template-columns: repeat(2, 1fr); }
.dc-home .ab-card {
  background: var(--dc-surface); border: 1px solid var(--dc-border);
  border-radius: 16px; padding: 32px 28px; transition: transform .2s, box-shadow .2s;
}
.dc-home .ab-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07); }
.dc-home .ab-card-ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--dc-teal-light); color: var(--dc-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.dc-home .ab-card-ico.is-accent { background: var(--dc-accent-light); color: #B8640A; }
.dc-home .ab-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; color: var(--dc-ink); }
.dc-home .ab-card p { font-size: 14.5px; color: var(--dc-ink2); line-height: 1.65; }

/* ── Our Services on the dark band (mirrors home's AI-platforms section) ── */
.dc-home .ab-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.dc-home .ab-value-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px; padding: 30px 26px; transition: background .2s, transform .2s;
}
.dc-home .ab-value-card:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); }
.dc-home .ab-value-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.08); color: var(--dc-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.dc-home .ab-value-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.dc-home .ab-value-card p { font-size: 14px; color: #9A9A94; line-height: 1.6; }

/* ── Ghost button on the closing CTA banner ── */
.dc-home .ab-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.dc-home .ab-btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .dc-home .ab-split { grid-template-columns: 1fr; gap: 44px; }
  .dc-home .ab-split-rev .ab-media { order: -1; }
  .dc-home .ab-card-grid, .dc-home .ab-value-grid { grid-template-columns: 1fr 1fr; }
  .dc-home .ab-grid-2 { grid-template-columns: 1fr; }
  .dc-home .ab-hero-visual::after { display: none; }
  .dc-home .ab-stats-section { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 560px) {
  .dc-home .ab-card-grid, .dc-home .ab-value-grid { grid-template-columns: 1fr; }
  .dc-home .ab-badge-1, .dc-home .ab-badge-2 { display: none; }
  .dc-home .ab-stats-section { padding-left: 18px; padding-right: 18px; }
  .dc-home .ab-callout { flex-direction: column; gap: 14px; padding: 24px; }
}
