﻿/* ===== Section heading sizes â€” use clamp so mobile looks right ===== */
      /* ===== Problem (pain) cards â€” matches company-structure cs-pain-card ===== */
      /* ===== Solutions cards ===== */
      .ep-sol-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }
      @media (max-width: 991.98px) {
        .ep-sol-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 575.98px) {
        .ep-sol-grid {
          grid-template-columns: 1fr;
        }
      }
      .ep-sol-card {
        background: #fff;
        border: 1px solid #f0e3da;
        border-radius: 18px;
        padding: 28px 24px;
        position: relative;
        transition: all 0.25s ease;
        overflow: hidden;
      }
      .ep-sol-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        /* background: linear-gradient(90deg, transparent 0%, #eb5017 50%, transparent 100%); */
        opacity: 0;
        transition: opacity 0.25s;
      }
      .ep-sol-card:hover {
        transform: translateY(-4px);
        border-color: rgba(235, 80, 23, 0.3);
        box-shadow: 0 18px 40px rgba(235, 80, 23, 0.08);
      }
      .ep-sol-card:hover::before {
        opacity: 1;
      }
      .ep-sol-ico {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        font-size: 1.4rem;
        margin-bottom: 18px;
        color: #eb5017;
        background: #fff1ea;
      }
      .ep-sol-card.is-lime .ep-sol-ico {
        background: #f1fcc8;
        color: #3a4112;
      }
      .ep-sol-card.is-gold .ep-sol-ico {
        background: #fff3cd;
        color: #7a5a00;
      }
      .ep-sol-card h6 {
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 8px;
        font-size: 1rem;
        letter-spacing: -0.01em;
      }
      .ep-sol-card p {
        color: #6b7280;
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.55;
      }
      .ep-sol-num {
        position: absolute;
        top: 18px;
        right: 22px;
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: rgba(235, 80, 23, 0.12);
        letter-spacing: -0.02em;
      }

      /* ===== Features grid (highlights) â€” matches company-structure cs-hl2 ===== */
      .ep-hl-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }
      @media (max-width: 991.98px) {
        .ep-hl-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 575.98px) {
        .ep-hl-grid {
          grid-template-columns: 1fr;
        }
      }
      .ep-hl-card {
        background: #fff;
        border: 1px solid #f0e3da;
        border-radius: 18px;
        padding: 24px 22px;
        transition: all 0.25s ease;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .ep-hl-card:hover {
        transform: translateY(-3px);
        border-color: rgba(235, 80, 23, 0.3);
        box-shadow: 0 14px 32px rgba(235, 80, 23, 0.07);
      }
      .ep-hl-head {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .ep-hl-ico {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        font-size: 1.05rem;
        background: #fff1ea;
        color: #eb5017;
      }
      .ep-hl-card.tone-l .ep-hl-ico {
        background: #f1fcc8;
        color: #3a4112;
      }
      .ep-hl-card.tone-g .ep-hl-ico {
        background: #fff3cd;
        color: #7a5a00;
      }
      .ep-hl-card h6 {
        margin: 0;
        font-weight: 600;
        color: #1a1a1a;
        font-size: 1rem;
        letter-spacing: -0.01em;
      }
      .ep-hl-card p {
        margin: 0;
        color: #6b7280;
        font-size: 0.9rem;
        line-height: 1.55;
      }
      .ep-hl-card.is-hidden {
        display: none;
      }
      .ep-hl-more-wrap {
        display: flex;
        justify-content: center;
        margin-top: 28px;
      }
      .ep-hl-more {
        background: #fff;
        border: 1.5px solid #eb5017;
        color: #eb5017;
        font-weight: 700;
        padding: 10px 28px;
        border-radius: 999px;
        font-size: 0.92rem;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .ep-hl-more:hover {
        background: #eb5017;
        color: #fff;
      }
      .ep-hl-more .bi {
        transition: transform 0.25s ease;
      }
      .ep-hl-more.is-open .bi {
        transform: rotate(180deg);
      }

      /* ===== Split sections: text col + image/infographic col ===== */
      .ep-split-row {
        padding: 8px 0;
      }
      .ep-split-title {
        font-weight: 600;
        font-size: clamp(1.6rem, 3.2vw, 2.4rem);
        letter-spacing: -0.015em;
        margin: 14px 0 8px;
        text-wrap: pretty;
        color: #1a1a1a;
      }
      .ep-split-desc {
        color: #6b7280;
        font-size: clamp(0.98rem, 1.4vw, 1.05rem);
        line-height: 1.65;
        margin-bottom: 18px;
      }
      .ep-split-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .ep-split-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.96rem;
        color: #1a1a1a;
        line-height: 1.5;
      }
      .ep-split-list .pi {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        border-radius: 6px;
        background: #fff1ea;
        color: #eb5017;
        display: grid;
        place-items: center;
        font-size: 0.7rem;
        margin-top: 2px;
      }
      .ep-split-list strong {
        color: #1a1a1a;
        font-weight: 500;
      }
      .ep-split-list span {
        color: #6b7280;
        font-weight: 400;
        display: block;
        font-size: 0.88rem;
        margin-top: 2px;
      }

      .ep-split-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 18px;
      }
      .ep-split-chip {
        font-size: 0.8rem;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid rgba(235, 80, 23, 0.18);
        color: #eb5017;
      }

      /* Image / infographic placeholder slot */
      .ep-media-slot {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }
      .ep-media-slot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      /* Hierarchy / Teams stage */
      .ep-hierarchy-stage {
        background: linear-gradient(180deg, #fff9f5 0%, #fdeee7 100%);
        border: 1px solid var(--border-color-light, #f0e3da);
        border-radius: 24px;
        padding: 30px 20px;
        position: relative;
        overflow: hidden;
      }
      .ep-hierarchy-stage svg {
        width: 100%;
        height: auto;
        display: block;
      }

      /* Why-choose stats (kept) */
      .ep-stat-card {
        background: #fff;
        border: 1px solid var(--border-color-light, #f0e3da);
        border-radius: 18px;
        padding: 24px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }
      .ep-stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(235, 80, 23, 0.1);
      }
      .ep-stat-num {
        font-size: 40px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 8px;
        color: #eb5017;
      }
      .ep-stat-label {
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 4px;
      }
      .ep-stat-sub {
        color: #6b7280;
        font-size: 0.88rem;
      }

      /* Solve band (problem -> solution stat strip) */
      .ep-solve-band {
        background: linear-gradient(135deg, #fff7f2 0%, #fff 60%);
        border: 1px solid #ffd9c6;
        border-radius: 24px;
        padding: 32px 28px;
        margin-top: 28px;
      }
      .ep-solve-stat {
        text-align: center;
        padding: 8px 6px;
      }
      .ep-solve-stat .num {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: clamp(1.5rem, 2.8vw, 1.9rem);
        color: #eb5017;
        line-height: 1;
      }
      .ep-solve-stat .lbl {
        font-size: 0.8rem;
        color: #1a1a1a;
        font-weight: 600;
        margin-top: 6px;
        display: block;
        line-height: 1.3;
      }
      .why-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 18px;
        padding: 22px 22px 24px;
        height: 100%;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;
        position: relative;
      }
      .why-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(235, 80, 23, 0.1);
        border-color: rgba(235, 80, 23, 0.28);
      }
      .why-card .reason-title {
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 4px;
      }
      .why-card .reason-text {
        color: #6b7280;
        font-size: 0.88rem;
      }

      /* ===== Pain Points (infographic v2) ===== */
      .cs-pp-stage {
        position: relative;
        display: grid;
        grid-template-columns: 1fr minmax(220px, 360px) 1fr;
        gap: 28px;
        align-items: center;
        margin-top: 40px;
      }
      .cs-pp-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      /* Background dashed org-chart behind center */
      .cs-pp-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        opacity: 0.55;
      }
      .cs-pp-bg svg {
        width: 100%;
        height: 100%;
        display: block;
      }
      /* Card */
      .cs-pp-card {
        position: relative;
        z-index: 1;
        background: #fff;
        border: 1px solid #f0e3da;
        border-radius: 16px;
        padding: 18px 20px;
        box-shadow: 0 10px 28px rgba(235, 80, 23, 0.06);
        display: grid;
        grid-template-columns: 52px 1fr auto;
        column-gap: 14px;
        align-items: start;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;
      }
      .cs-pp-card:hover {
        transform: translateY(-3px);
        border-color: rgba(235, 80, 23, 0.3);
        box-shadow: 0 16px 36px rgba(235, 80, 23, 0.12);
      }
      .cs-pp-ico {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: #fff1ea;
        color: #eb5017;
        display: grid;
        place-items: center;
        font-size: 1.5rem;
      }
      .cs-pp-body {
        min-width: 0;
        grid-column: 2 / 3;
      }
      .cs-pp-tag {
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #eb5017;
        margin-bottom: 4px;
      }
      .cs-pp-card h6 {
        margin: 0 0 6px;
        font-weight: 600;
        margin: 6px 0 8px;
        line-height: 1.3;
        color: #1a1a1a;
      }
      .cs-pp-card p {
        margin: 0;
        font-size: 0.86rem;
        line-height: 1.5;
        color: #6b7280;
      }
      /* Center column */
      .cs-pp-center {
        position: relative;
        z-index: 1;
        display: grid;
        place-items: center;
        align-self: stretch;
      }
      /* Closing CTA band */
      .cs-pp-band {
        position: relative;
        z-index: 1;
        margin-top: 36px;
        background: #f7fce1;
        border: 1px solid #e5ee9b;
        border-radius: 18px;
        padding: 18px 24px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 18px;
      }
      .cs-pp-band-ico {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: #fff1ea;
        color: #eb5017;
        display: grid;
        place-items: center;
        font-size: 1.4rem;
      }
      .cs-pp-band-text {
        font-size: 1rem;
        color: #1a1a1a;
        line-height: 1.45;
      }
      .cs-pp-band-text .accent {
        color: #eb5017;
        font-weight: 700;
      }
      .cs-pp-band-mascot {
        width: 200px;
        height: 56px;
        display: grid;
        place-items: center;
      }
      .cs-pp-band-mascot svg {
        width: 100%;
        height: 100%;
      }
      /* Mobile / tablet */
      @media (max-width: 991.98px) {
        .cs-pp-stage {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .cs-pp-center {
          order: -1;
          min-height: 0;
          margin-bottom: 8px;
        }
        .cs-pp-bg {
          display: none;
        }
      }
      @media (max-width: 575.98px) {
        .cs-pp-card {
          grid-template-columns: 44px 1fr;
          padding: 16px;
        }
        .cs-pp-ico {
          width: 44px;
          height: 44px;
          font-size: 1.25rem;
        }
        .cs-pp-card h6 {
          font-size: 0.98rem;
        }
        .cs-pp-band {
          grid-template-columns: auto 1fr;
          row-gap: 10px;
        }
        .cs-pp-band-mascot {
          grid-column: 1 / -1;
          justify-self: center;
        }
      }
