/* ============================
       CSS Variables
    ============================ */
    :root {
      --clr-bg:       #F6F6F6;
      --clr-dark:     #062D1F;
      --clr-green:    #21A55E;
      --clr-lime:     #CCFC00;
      --clr-label-bg: #F2F2F2;
      --clr-white:    #ffffff;
      --clr-border:   #E5E7EB;
      --clr-text:     #1a1a1a;
      --clr-muted:    #999999;
      --clr-hover:    #FAFAFA;
      --radius:       12px;
    }

    /* ============================
       Section Wrapper
    ============================ */
    .service-section {
      background: var(--clr-bg);
      padding: 56px 0 0;
       
    }

    /* ============================
       Section Header
    ============================ */
    .service-section__label {
      color: var(--clr-green);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .service-section__title {
      color: var(--clr-dark);
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin: 0 0 48px 0;
    }

    .service-section__title span {
      color: var(--clr-green);
    }

    /* ============================
       Custom Table
    ============================ */
    .scope-table {
      border: 1px solid var(--clr-border);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--clr-white);
    }

    /* --- Grid Row --- */
    .scope-table__row {
      display: grid;
      grid-template-columns: 250px 1fr 1fr;
    }

    @media (max-width: 991.98px) {
      .scope-table__row {
        grid-template-columns: 200px 1fr 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .scope-table__row {
        grid-template-columns: 1fr;
      }
    }

    /* ============================
       Header Row
    ============================ */
    .scope-table__row--header {
      background: var(--clr-dark);
    }

    .scope-table__row--header .scope-table__cell {
      background: var(--clr-dark);
      border-top: none;
    }

    /* Corner (empty) */
    .scope-table__corner {
      background: var(--clr-dark);
      min-height: 86px;
    }

    @media (max-width: 767.98px) {
      .scope-table__corner {
        display: none;
      }
    }

    /* Header Cell */
    .scope-table__header {
      background: var(--clr-dark);
      padding: 24px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .scope-table__header-title {
      color: var(--clr-white);
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 6px;
      line-height: 1.35;
    }

    .scope-table__header-sub {
      color: var(--clr-lime);
      font-size: 13.5px;
      font-weight: 400;
      line-height: 1.4;
    }

    /* ============================
       Data Row
    ============================ */
    .scope-table__row--data {
      border-top: 1px solid var(--clr-border);
      transition: background 0.15s ease;
    }

    .scope-table__row--data:first-of-type {
      border-top: none;
    }

    .scope-table__row--data:hover .scope-table__cell--value {
      background: var(--clr-hover);
    }

    /* ============================
       Cells
    ============================ */
    .scope-table__cell {
      padding: 20px 24px;
      font-size: 14px;
      line-height: 1.55;
      display: flex;
      align-items: center;
      min-height: 62px;
      transition: background 0.15s ease;
    }

    /* Label cell (left column) */
    .scope-table__cell--label {
      background: var(--clr-label-bg);
      font-weight: 700;
      color: #000;
    }

    @media (max-width: 767.98px) {
      .scope-table__cell--label {
        padding-bottom: 8px;
        min-height: auto;
        border-bottom: none;
      }
    }

    /* Value cells */
    .scope-table__cell--value {
      background: var(--clr-white);
      color: var(--clr-text);
      border-left: 1px solid var(--clr-border);
    }

    @media (max-width: 767.98px) {
      .scope-table__cell--value {
        border-left: none;
        padding-top: 8px;
        min-height: auto;
      }

      .scope-table__cell--value::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--clr-green);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        display: block;
        margin-bottom: 4px;
      }

      .scope-table__cell--value {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* Dash / empty state */
    .scope-table__cell--empty {
      color: var(--clr-muted);
    }

    /* ============================
       Staggered entrance animation
    ============================ */
    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .scope-table__row--data {
      animation: fadeSlideUp 0.45s ease both;
    }

    .scope-table__row--data:nth-child(2)  { animation-delay: 0.04s; }
    .scope-table__row--data:nth-child(3)  { animation-delay: 0.08s; }
    .scope-table__row--data:nth-child(4)  { animation-delay: 0.12s; }
    .scope-table__row--data:nth-child(5)  { animation-delay: 0.16s; }
    .scope-table__row--data:nth-child(6)  { animation-delay: 0.20s; }
    .scope-table__row--data:nth-child(7)  { animation-delay: 0.24s; }
    .scope-table__row--data:nth-child(8)  { animation-delay: 0.28s; }
    .scope-table__row--data:nth-child(9)  { animation-delay: 0.32s; }
    .scope-table__row--data:nth-child(10) { animation-delay: 0.36s; }

     /* ── Table container ─────────────────────────────── */
  .review-table {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(11, 31, 15, 0.04), 0 8px 24px rgba(11, 31, 15, 0.04);
  }
 
  /* ── Header row (dark green) ─────────────────────── */
  .review-header {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    background: #0B2818;
  }
 
  .review-header__cell {
    padding: 28px 32px;
  }
 
  .review-header__title {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 4px;
  }
 
  .review-header__meta {
    font-size: 14px;
    font-weight: 500;
    color: #C6F04A;
    line-height: 1.4;
  }
 
  /* ── Body rows ───────────────────────────────────── */
  .review-row {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    border-top: 1px solid #EAEDEA;
  }
 
  .review-row__label {
    padding: 22px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #0B1F0F;
    display: flex;
    align-items: center;
  }
 
  .review-row__cell {
    padding: 22px 32px;
    font-size: 15px;
    color: #2B3A2F;
    line-height: 1.5;
    display: flex;
    align-items: center;
  }
 
  .review-row__cell--empty {
    color: #9AA39C;
  }
 
  /* ── Responsive ──────────────────────────────────── */
  @media (max-width: 900px) {
    body { padding: 32px 18px; }
    .review-heading { font-size: 30px; margin-bottom: 28px; }
 
    .review-header,
    .review-row {
      grid-template-columns: 1fr;
    }
 
    .review-header__cell:first-child { display: none; }
 
    .review-row__label {
      background: #0B2818;
      color: #FFFFFF;
      padding: 14px 20px;
      font-size: 13px;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }
 
    .review-row__cell {
      padding: 16px 20px;
      border-top: 1px solid #EAEDEA;
    }
 
    .review-row__cell:first-of-type {
      border-top: none;
    }
  }

  section.ai-soc-table {
    padding: 0px 0px 60px 0px;
    background: #f6f6f6;
}

    /*  */
    .transformation-section {
  background: var(--text-color);
  padding: 80px 0;
}
 
/* ── Heading ── */
.transformation-section .section--Title {
  margin-bottom: 42px;
}
.transformation-section .section--Title h5 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.transformation-section .section--Title h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  margin: 0 0 12px;
}
.transformation-section .section--Title h2 span.highlighted {
  color: var(--primary-color);
  font-weight: 400;
}
 
/* ── Cards layout ── */
.transformation-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
 
/* ── Individual card ── */
.transform-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  width: 100%;
}
 
.transform-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1;
}
.transform-card__title--before { color: #EF4444; }
.transform-card__title--after  { color: var(--primary-color); }
 
/* ── List items ── */
.transform-card__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}
 
.transform-card__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
 
.transform-card__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/* × icon (before) */
.transform-card__icon--x svg {
  width: 16px;
  height: 16px;
}
 
/* ✓ icon (after) */
.transform-card__icon--check svg {
  width: 20px;
  height: 20px;
}
 
.transform-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
 
/* ── Arrow in the middle ── */
.transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
 
.transformation-arrow svg {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.5);
}
 
/* ── Responsive ── */
@media (max-width: 991.98px) {
  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
 
  .transformation-arrow {
    padding: 8px 0;
    transform: rotate(90deg);
  }
 
  .transform-card {
    padding: 32px 24px;
  }
}
 
@media (max-width: 768px) {
  .transformation-section {
    padding: 48px 0;
  }
  .transformation-section .section--Title h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .transformation-section .section--Title {
    margin-bottom: 20px;
  }
  .transform-card__text {
    font-size: 15px;
  }
}

.section--Title h2 span {font-weight: 400;color: var(--primary-color);}