/* ==========================================================================
   About Us Clone Test (post 15571, clone of live post 6355).
   Lightest clone in the series — no dynamic widgets, mostly static text.
   ========================================================================== */

.abt-page { overflow-x: clip; background: #fff; }

.abt-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .abt-inner { padding: 0 20px; }
}

.abt-page .abt-h2 {
  font-family: 'Public Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #233963;
  text-transform: capitalize;
  margin: 0;
}
@media (max-width: 767px) {
  .abt-page .abt-h2 { font-size: 30px; }
}

/* ---------- Hero ---------- */
.abt-hero {
  position: relative;
  min-height: 114vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}
/* Measured on live: a teal->green gradient overlay at opacity 0.72 via a
   raw ::before custom_css rule, not a standard Elementor overlay control —
   same gradient tokens as this project's CTA banner component. */
.abt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6AC2B7 0%, #8AD6C0 50%, #8ADBBB 75%, #86DCAF 87.5%, #84DDA5 93.75%, #95E091 96.88%, #9FDD5F 100%);
  opacity: 0.72;
}
.abt-hero-h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  font-size: 100px;
  color: #fff;
}
@media (max-width: 1024px) {
  .abt-hero-h1 { font-size: 68px; }
}
@media (max-width: 767px) {
  .abt-hero-h1 { font-size: 60px; }
}

/* ---------- Mission + "What You Get with Us" ---------- */
.abt-mission { padding: 72px 0; }

.abt-page .abt-mission-text {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
  font-family: 'Public Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #233963;
}

.abt-page .abt-features-heading { text-align: center; margin-bottom: 24px; }

.abt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .abt-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .abt-features-grid { grid-template-columns: 1fr; }
}

/* Measured on live: white, sharp corners, soft shadow, 24px padding. */
.abt-feature-card {
  background: #fff;
  box-shadow: 0 2px 6px rgba(35, 57, 99, 0.22);
  padding: 24px;
}
.abt-page .abt-feature-title {
  margin: 0 0 12px;
  font-family: 'Public Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #233963;
}
.abt-page .abt-feature-text {
  margin: 0;
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1E2E4C;
}

/* ==========================================================================
   "Why It Works" — DELIBERATE REDESIGN (see section-2-why-it-works.php's
   docblock for the full before/after reasoning). Soft shadow card, no hard
   border; every statement gets its own icon badge instead of 6 statements
   sharing one repeated icon / no icon at all.
   ========================================================================== */
.abt-why { padding: 24px 0 72px; }

.abt-why-panel {
  background: #F4F6F9;
  box-shadow: 0 4px 28px rgba(35, 57, 99, 0.1);
  padding: 56px;
}
@media (max-width: 767px) {
  .abt-why-panel { padding: 32px 20px; }
}

.abt-why-row + .abt-why-row { margin-top: 0; }

.abt-page .abt-why-heading { text-align: center; margin-bottom: 40px; }

.abt-page .abt-why-subheading {
  text-align: center;
  margin: 0 0 40px;
  font-family: 'Public Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #233963;
}
@media (max-width: 767px) {
  .abt-page .abt-why-subheading { font-size: 22px; }
}

.abt-why-divider {
  height: 1px;
  background: #D4DAE5;
  margin: 48px 0;
}
@media (max-width: 767px) {
  .abt-why-divider { margin: 32px 0; }
}

.abt-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .abt-why-grid { grid-template-columns: 1fr; }
}

.abt-why-card {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.abt-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(35, 57, 99, 0.14);
}

.abt-why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #6AC2B7 0%, #8AD6C0 50%, #9FDD5F 100%);
  flex: 0 0 auto;
}
/* img AND svg: these icons are inlined as <svg aria-hidden> (see
   intoneccm_the_svg_icon) — an img-only selector silently stopped
   sizing them. Both listed so either form works. */
.abt-why-badge img,
.abt-why-badge svg { display: block; width: 26px; height: 26px; }

.abt-page .abt-why-card-text {
  margin: 0;
  font-family: 'Public Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #233963;
}

@media (prefers-reduced-motion: reduce) {
  .abt-why-card { transition: none; }
}

/* ---------- CTA ---------- */
.abt-cta { padding: 0 0 96px; }
@media (max-width: 767px) {
  .abt-cta { padding: 0 0 56px; }
}
