/**
 * Modern About page — alternating section infographics + centered icon cards.
 */

body.static-page.about-modern {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #18181b;
  -webkit-font-smoothing: antialiased;
}

.about-modern .page-wrap {
  padding-bottom: 0;
}

/* ── Hero ───────────────────────────────────────────────────── */
.about-modern .hero {
  text-align: center;
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 64px);
}

.about-modern .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 24px;
}

.about-modern .hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #09090b;
  margin-bottom: 16px;
}

.about-modern .hero h1 span {
  color: #16a34a;
}

.about-modern .hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: #71717a;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.about-modern .hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.about-modern .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16a34a, #65a30d);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
}

.about-modern .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
  transform: translateY(-1px);
}

.about-modern .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #15803d;
  border: 1.5px solid #bbf7d0;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.about-modern .btn-ghost:hover {
  background: #f0fdf4;
}

.about-modern .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.about-modern .hero-stat {
  background: #fafafa;
  border: 1px solid #f4f4f5;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}

.about-modern .hero-stat i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ecfdf5;
  color: #16a34a;
  font-size: 16px;
  margin-bottom: 10px;
}

.about-modern .hero-stat strong {
  display: block;
  font-size: 16px;
  color: #09090b;
  margin-bottom: 4px;
}

.about-modern .hero-stat span {
  font-size: 13px;
  color: #71717a;
}

@media (max-width: 640px) {
  .about-modern .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* ── Shared section chrome ──────────────────────────────────── */
.about-modern .info-section {
  margin: 0 0 28px;
  padding: clamp(36px, 5vw, 56px) clamp(18px, 3vw, 28px);
  border-radius: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.about-modern .info-section .section-header {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.about-modern .info-section .section-header > i {
  display: none !important;
}

.about-modern .info-section .section-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #09090b;
  margin: 0;
}

.about-modern .section-header h2::after {
  display: none;
}
.about-modern .info-section .section-header p,
.about-modern .info-section > p {
  font-size: 15px;
  color: #71717a;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  text-align: center;
}

/* Balanced centered card grids */
.about-modern .impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  gap: 16px;
}

.about-modern .impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1.5px solid #f4f4f5;
  border-radius: 20px;
  padding: 24px 18px 22px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  min-height: 100%;
}

.about-modern .impact-item:hover {
  border-color: #bbf7d0;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.1);
  transform: translateY(-2px);
}

.about-modern .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(145deg, #ecfdf5, #dcfce7);
  color: #15803d;
  flex-shrink: 0;
}

.about-modern .card-icon i {
  font-size: 20px;
}

.about-modern .impact-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #09090b;
  margin: 0 0 8px;
  line-height: 1.35;
}

.about-modern .impact-item p {
  font-size: 13px;
  color: #71717a;
  margin: 0;
  line-height: 1.5;
}

/* ── Alternating section themes ─────────────────────────────── */

/* 1. Problem — soft rose band, warning icons */
.about-modern .section--problem {
  background: linear-gradient(180deg, #fff7f7 0%, #fff1f2 100%);
  border: 1px solid #fecdd3;
}

.about-modern .section--problem .section-header > i {
  background: #fff1f2;
  color: #e11d48;
}

.about-modern .section--problem .card-icon {
  background: linear-gradient(145deg, #fff1f2, #ffe4e6);
  color: #e11d48;
}

.about-modern .section--problem .impact-item:hover {
  border-color: #fda4af;
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.1);
}

.about-modern .section--problem .impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 800px) {
  .about-modern .section--problem .impact-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* 2. Solution — mint band, dense icon tiles */
.about-modern .section--solution {
  background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 50%, #fff 100%);
  border: 1px solid #bbf7d0;
}

.about-modern .section--solution .impact-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
  gap: 14px;
}

.about-modern .section--solution .impact-item {
  padding: 20px 14px;
}

/* 3. Features — white / outline tiles with top icon badge */
.about-modern .section--features {
  background: #fff;
  border: 1px solid #f4f4f5;
}

.about-modern .section--features .impact-item {
  position: relative;
  overflow: hidden;
  padding-top: 28px;
}

.about-modern .section--features .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #09090b;
  color: #4ade80;
  box-shadow: 0 8px 20px rgba(9, 9, 11, 0.12);
}

.about-modern .section--features .impact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #65a30d);
  opacity: 0.85;
}

/* 4. Remedy — horizontal icon+text cards (infographic rows) */
.about-modern .section--remedy {
  background: #fafafa;
  border: 1px solid #f4f4f5;
}

.about-modern .section--remedy .impact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  gap: 12px;
}

.about-modern .section--remedy .impact-item {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  padding: 18px 16px;
  background: #fff;
}

.about-modern .section--remedy .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  color: #2563eb;
}

.about-modern .section--remedy .impact-item h3,
.about-modern .section--remedy .impact-item p {
  text-align: left;
}

.about-modern .section--remedy .patient-workflow {
  margin-top: 28px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid #e0e7ff;
}

.about-modern .section--remedy .patient-workflow h3 {
  text-align: center;
  margin: 0 0 18px;
  font-size: 16px;
  color: #09090b;
}

/* 5. Principles — numbered / soft indigo strip cards */
.about-modern .section--principles {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  border: 1px solid #e0e7ff;
}

.about-modern .section--principles .section-header > i {
  background: #e0e7ff;
  color: #4f46e5;
}

.about-modern .section--principles .impact-grid {
  counter-reset: principle;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
}

.about-modern .section--principles .impact-item {
  position: relative;
  padding-top: 28px;
}

.about-modern .section--principles .impact-item::after {
  counter-increment: principle;
  content: counter(principle);
  position: absolute;
  top: 12px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #4f46e5;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-modern .section--principles .card-icon {
  background: linear-gradient(145deg, #eef2ff, #e0e7ff);
  color: #4f46e5;
}

/* 6. Patients — mint band + horizontal chips + workflow */
.about-modern .section--patients {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 40%, #fffbeb 100%);
  border: 1px solid #bbf7d0;
}

.about-modern .section--patients .impact-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 230px));
}

.about-modern .section--patients .impact-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.about-modern .section--patients .card-icon {
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #bbf7d0;
  color: #16a34a;
}

.about-modern .section--patients .patient-workflow {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid #bbf7d0;
}

.about-modern .section--patients .patient-workflow h3 {
  text-align: center;
  margin: 0 0 16px;
  font-size: 16px;
}

/* Shared workflow steps */
.about-modern .workflow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-modern .workflow-step {
  min-width: 120px;
  max-width: 160px;
  text-align: center;
  padding: 14px 10px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #f4f4f5;
  font-size: 12px;
  color: #3f3f46;
}

.about-modern .workflow-step i {
  font-size: 18px;
  color: #16a34a;
  margin-bottom: 6px;
}

.about-modern .workflow-arrow {
  color: #a1a1aa;
  font-weight: 700;
}

@media (max-width: 700px) {
  .about-modern .workflow-arrow {
    display: none;
  }
}

/* 7. Why choose — large centered icon spotlight cards */
.about-modern .section--why {
  background: #fff;
  border: 1px solid #f4f4f5;
}

.about-modern .section--why .impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 960px;
    margin: 0 auto;
    justify-content: stretch;
  }
  
  @media (max-width: 900px) {
    .about-modern .section--why .impact-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 560px) {
    .about-modern .section--why .impact-grid {
      grid-template-columns: 1fr;
      max-width: 360px;
    }
}

.about-modern .section--why .impact-item {
  padding: 28px 20px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 55%);
}

.about-modern .section--why .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  font-size: 24px;
  background: linear-gradient(145deg, #16a34a, #65a30d);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28);
}

.about-modern .section--why .card-icon i {
  font-size: 24px;
}

.about-modern .section--why .impact-item h3 {
  font-size: 16px;
}

/* Compare intro — keep light */
.about-modern .section--compare-intro {
  background: transparent;
  padding-bottom: 12px;
  margin-bottom: 0;
}

.about-modern .comparison-table-band {
  margin: 12px calc(-1 * clamp(16px, 4vw, 48px)) 40px;
  padding: 40px clamp(16px, 4vw, 48px);
  background: #fafafa;
  border-top: 1px solid #f4f4f5;
  border-bottom: 1px solid #f4f4f5;
}

.about-modern .comparison-table-band .section-title,
.about-modern .comparison-table-band h2 {
  text-align: center;
}

/* Disclaimer line (no card) */
.about-modern .about-note {
  text-align: center;
  margin: 20px auto 0;
    padding: 0;
    max-width: none;
    font-size: 12px;
    font-weight: 400;
    color: #71717a;
    background: none;
    border: none;
    border-radius: 0;
    line-height: 1.4;
    white-space: nowrap;
  }
  
  @media (max-width: 640px) {
    .about-modern .about-note {
      white-space: normal;
      padding: 0 8px;
      font-size: 11px;
    }
}

/* Free vs paid split */
.about-modern .about-pricing-split .split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.about-modern .split-card {
  background: #fff;
  border: 1.5px solid #f4f4f5;
  border-radius: 20px;
  padding: 24px 22px;
  text-align: left;
  min-width: 0;
}

.about-modern .split-card--free {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 55%);
}

.about-modern .split-card--paid {
  border-color: #fde68a;
  background: linear-gradient(180deg, #fffbeb 0%, #fff 55%);
}

.about-modern .split-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #15803d;
  margin-bottom: 14px;
}

.about-modern .split-card--paid .split-label {
  color: #b45309;
}

.about-modern .split-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-modern .split-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3f3f46;
  margin-bottom: 10px;
  line-height: 1.4;
}

.about-modern .split-card li i {
  color: #16a34a;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-modern .split-cta {
  margin-top: 16px;
}

@media (max-width: 700px) {
  .about-modern .about-pricing-split .split-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.about-modern .section--remedy .patient-workflow {
  margin-top: 8px;
}

.about-modern .section--remedy .patient-workflow h3 {
  display: none;
}
.about-modern .landing-page,
.about-modern .container,
.about-modern .main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
/* ── Pillars: equal 3×3 grid ─────────────────────────────────── */
.about-modern .section--pillars {
  background: #fff;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.about-modern .section--pillars .section-header > i {
  display: none;
}

.about-modern .pillars-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.about-modern .pillar {
  background: #fafafa;
  border: 1.5px solid #f4f4f5;
  border-radius: 20px;
  padding: 22px 20px;
  min-width: 0;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.about-modern .pillar:hover {
  border-color: #bbf7d0;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.1);
  transform: translateY(-2px);
}

.about-modern .pillar--hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(165deg, #052e16 0%, #14532d 55%, #166534 100%);
  border-color: transparent;
  color: #fff;
  padding: 22px 20px;
}

.about-modern .pillar--hero:hover {
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(20, 83, 45, 0.35);
}

.about-modern .pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  color: #15803d;
  margin-bottom: 14px;
}

.about-modern .pillar--hero .pillar-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #86efac;
}

.about-modern .pillar-icon i {
  font-size: 18px;
}

.about-modern .pillar h3 {
  font-size: 16px;
  font-weight: 700;
  color: #09090b;
  margin: 0 0 8px;
}

.about-modern .pillar--hero h3 {
  color: #fff;
  letter-spacing: -0.3px;
}

.about-modern .pillar p {
  font-size: 13px;
  color: #71717a;
  margin: 0;
  line-height: 1.5;
}

.about-modern .pillar--hero p {
  color: #bbf7d0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-modern .pillars-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-modern .pillar--hero {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .about-modern .pillars-bento {
    grid-template-columns: 1fr;
  }
}

/* ── 3-step flow ────────────────────────────────────────────── */
.about-modern .section--flow {
  background: linear-gradient(180deg, #f0fdf4 0%, #fafafa 100%);
  border: 1px solid #bbf7d0;
}

.about-modern .section--flow .section-header > i {
  display: none;
}

.about-modern .flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  counter-reset: none;
}

.about-modern .flow-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, #86efac, #16a34a, #86efac);
  z-index: 0;
}

.about-modern .flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px 8px;
}

.about-modern .flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px #f0fdf4;
}

.about-modern .flow-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #bbf7d0;
  color: #15803d;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.12);
}

.about-modern .flow-icon i {
  font-size: 24px;
}

.about-modern .flow-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #09090b;
  margin: 0 0 8px;
}

.about-modern .flow-step p {
  font-size: 13px;
  color: #71717a;
  margin: 0 auto;
  max-width: 220px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .about-modern .flow-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-modern .flow-steps::before {
    display: none;
  }

  .about-modern .flow-step {
    background: #fff;
    border: 1.5px solid #bbf7d0;
    border-radius: 18px;
    padding: 20px 18px;
  }
}
/* ── Knowledge base ─────────────────────────────────────────── */
.about-modern .section--knowledge {
  background: #fff;
  border: none;
}

.about-modern .kb-subsection {
  max-width: 1080px;
  margin: 0 auto 40px;
}

.about-modern .kb-subsection:last-child {
  margin-bottom: 0;
}

.about-modern .kb-subsection-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.about-modern .kb-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  color: #15803d;
}

.about-modern .kb-subsection-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #09090b;
  letter-spacing: -0.2px;
}

.about-modern .kb-card-badge {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  margin-top: 2px;
}

.about-modern .kb-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-modern .kb-tile {
  background: #fafafa;
  border: 1px solid #f4f4f5;
  border-radius: 14px;
  padding: 16px 14px;
  min-width: 0;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.about-modern .kb-tile:hover {
  border-color: #bbf7d0;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.08);
  transform: translateY(-1px);
}

.about-modern .kb-tile > i {
  color: #16a34a;
  font-size: 14px;
  margin-bottom: 8px;
  display: inline-block;
}

.about-modern .kb-tile h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #09090b;
  line-height: 1.35;
}

.about-modern .kb-author {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 6px;
}

.about-modern .kb-detail {
  margin: 0;
  font-size: 12px;
  color: #71717a;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .about-modern .kb-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .about-modern .kb-tiles {
    grid-template-columns: 1fr;
  }
}