/* =========================================================
   PROCHAT — BUSINESS CHAT DESIGNED FOR EXECUTION
   Full CSS
   HTML remains unchanged
========================================================= */

.prochat-execution {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  overflow: hidden;
  background: #f7fffe;
}

.prochat-execution__inner {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.prochat-execution__header {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.prochat-execution__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 7px 14px;

  border: 1px solid rgba(5, 59, 47, 0.15);
  border-radius: 50px;

  background: rgba(5, 59, 47, 0.04);

  color: #053b2f;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.prochat-execution__eyebrow-dot {
  width: 7px;
  height: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f7c948;

  box-shadow:
    0 0 0 5px rgba(247, 201, 72, 0.12),
    0 0 14px rgba(247, 201, 72, 0.45);
}


/* =========================================================
   MAIN TITLE
========================================================= */

.prochat-execution__title {
  margin: 15px 0 12px;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;
}

.prochat-title-line {
  display: block;
}

.prochat-title-line--accent {
  color: #0b5d47;
}


/* =========================================================
   INTRO
========================================================= */

.prochat-execution__intro {
  max-width: 680px;

  margin: 0 auto;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.65;
}


/* =========================================================
   MESSAGE → EXECUTION FLOW
========================================================= */

.prochat-flow {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);

  align-items: center;

  margin-bottom: 50px;
}


/* =========================================================
   FLOW CARDS
========================================================= */

.prochat-flow__card {
  position: relative;

  min-height: 165px;

  padding: 24px;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e5e7eb;
  border-radius: 20px;

  box-shadow:
    0 15px 40px rgba(5, 59, 47, 0.06);

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.prochat-flow__card:hover {
  transform: translateY(-3px);

  border-color: rgba(247, 201, 72, 0.45);

  box-shadow:
    0 20px 45px rgba(5, 59, 47, 0.09);
}

.prochat-flow__card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(5, 59, 47, 0.035),
      transparent 60%
    );

  pointer-events: none;
}

.prochat-flow__card--execution {
  border-color: rgba(247, 201, 72, 0.42);
}


/* =========================================================
   CARD TOP
========================================================= */

.prochat-flow__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;

  color: #6b7280;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prochat-flow__card-top span:last-child {
  color: #e8b92d;
}


/* =========================================================
   MESSAGE
========================================================= */

.prochat-message {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 13px;
}

.prochat-message__dot {
  width: 12px;
  height: 12px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f7c948;

  box-shadow:
    0 0 0 6px rgba(247, 201, 72, 0.12),
    0 0 20px rgba(247, 201, 72, 0.5);
}

.prochat-message__text {
  color: #053b2f;

  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.prochat-flow__description {
  margin: 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.6;
}


/* =========================================================
   CONNECTOR
========================================================= */

.prochat-flow__connector {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 80px;
}

.prochat-flow__connector-track {
  width: 100%;
  height: 2px;

  background: rgba(5, 59, 47, 0.14);

  transform-origin: left center;
}

.prochat-flow__connector-pulse {
  position: absolute;
  left: 0;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #f7c948;

  box-shadow:
    0 0 0 5px rgba(247, 201, 72, 0.12),
    0 0 18px rgba(247, 201, 72, 0.6);
}

.prochat-flow__arrow {
  position: absolute;
  right: 1px;

  display: flex;
  align-items: center;

  gap: 3px;
}

.prochat-flow__arrow span {
  display: block;

  width: 6px;
  height: 6px;

  border-top: 2px solid #053b2f;
  border-right: 2px solid #053b2f;

  transform: rotate(45deg);
}


/* =========================================================
   BUSINESS EXECUTION LIST
========================================================= */

.prochat-execution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.prochat-execution-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 12px;

  background: #f8fafc;

  border: 1px solid #e5e7eb;
  border-radius: 50px;

  color: #053b2f;

  font-size: 12px;
  font-weight: 650;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.prochat-execution-item:hover {
  background: #ffffff;

  border-color: rgba(247, 201, 72, 0.55);

  transform: translateY(-2px);
}

.prochat-execution-item__dot {
  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f7c948;
}


/* =========================================================
   MY DIARY
========================================================= */

.prochat-diary {
  position: relative;

  max-width: 1000px;

  margin: 0 auto 50px;

  padding: 1px;

  border-radius: 23px;

  background:
    linear-gradient(
      135deg,
      rgba(5, 59, 47, 0.18),
      rgba(247, 201, 72, 0.65),
      rgba(5, 59, 47, 0.08)
    );

  box-shadow:
    0 18px 45px rgba(5, 59, 47, 0.05);
}

.prochat-diary__border {
  display: none;
}

.prochat-diary__content {
  position: relative;

  padding: 28px;

  border-radius: 22px;

  background: #ffffff;
}


/* =========================================================
   DIARY HEADING
========================================================= */

.prochat-diary__heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  margin-bottom: 20px;
}

.prochat-diary__number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #053b2f;

  color: #f7c948;

  font-size: 13px;
  font-weight: 800;

  box-shadow:
    0 0 0 7px rgba(5, 59, 47, 0.06);
}

.prochat-diary__heading h3 {
  margin: 0 0 6px;

  color: #02261f;

  font-size: 26px;
  line-height: 1.2;
}

.prochat-diary__heading p {
  margin: 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.55;
}


/* =========================================================
   DIARY CATEGORIES
========================================================= */

.prochat-diary__categories {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 9px;
}

.prochat-category {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 11px 14px;

  background: #f8fafc;

  border: 1px solid #e5e7eb;
  border-radius: 12px;

  color: #053b2f;

  font-size: 13px;
  font-weight: 650;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.prochat-category:hover {
  transform: translateY(-2px);

  background: #ffffff;

  border-color: rgba(247, 201, 72, 0.55);
}

.prochat-category__point {
  width: 7px;
  height: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f7c948;
}


/* =========================================================
   MESSAGE → WORK
========================================================= */

.prochat-work {
  display: flex;
  align-items: center;
  gap: 20px;

  max-width: 850px;

  margin: 0 auto 50px;
}

.prochat-work__line {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(5, 59, 47, 0.22)
    );
}

.prochat-work__line:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(5, 59, 47, 0.22),
      transparent
    );
}

.prochat-work__content {
  min-width: 280px;

  text-align: center;
}

.prochat-work__content p {
  margin: 0 0 5px;

  color: #6b7280;

  font-size: 13px;
  line-height: 1.5;
}

.prochat-work__content strong {
  display: block;

  color: #053b2f;

  font-size: 24px;
  font-weight: 750;
  line-height: 1.2;
}

.prochat-work__content strong::after {
  content: "";

  display: block;

  width: 40px;
  height: 3px;

  margin: 8px auto 0;

  border-radius: 10px;

  background: #f7c948;
}


/* =========================================================
   INTEGRATIONS
========================================================= */

.prochat-integrations {
  max-width: 1000px;

  margin: 0 auto;

  padding: 30px;

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #02261f 0%,
      #053b2f 55%,
      #0b5d47 100%
    );

  box-shadow:
    0 22px 50px rgba(2, 38, 31, 0.16);
}


/* =========================================================
   INTEGRATION DESCRIPTION
========================================================= */

.prochat-integrations__description {
  max-width: 760px;

  margin: 0 auto 24px;

  text-align: center;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   INTEGRATION LIST
========================================================= */

.prochat-integrations__list {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 9px;
}

.prochat-integration {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 11px 14px;

  background: rgba(255, 255, 255, 0.045);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;

  color: #ffffff;

  font-size: 12px;
  font-weight: 600;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.prochat-integration:hover {
  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(247, 201, 72, 0.35);

  transform: translateY(-2px);
}

.prochat-integration__dot {
  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f7c948;

  box-shadow:
    0 0 9px rgba(247, 201, 72, 0.65);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .prochat-execution {
    padding: 60px 20px;
  }

  .prochat-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .prochat-flow__connector {
    height: 55px;

    transform: rotate(90deg);
  }

  .prochat-flow__connector-track {
    width: 80px;
  }

  .prochat-diary__categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .prochat-integrations__list {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .prochat-execution {
    padding: 60px 15px;
  }

  .prochat-execution__header {
    margin-bottom: 38px;
  }

  .prochat-execution__eyebrow {
    font-size: 10px;
    padding: 7px 11px;
  }

  .prochat-execution__title {
    margin: 13px 0 10px;

    font-size: 32px;
  }

  .prochat-execution__intro {
    font-size: 16px;
    line-height: 1.6;
  }


  /* FLOW */

  .prochat-flow {
    margin-bottom: 40px;
    gap: 14px;
  }

  .prochat-flow__card {
    min-height: 150px;

    padding: 20px;

    border-radius: 17px;
  }

  .prochat-flow__card-top {
    margin-bottom: 17px;

    font-size: 10px;
  }

  .prochat-message__text {
    font-size: 22px;
  }

  .prochat-flow__description {
    font-size: 16px;
  }

  .prochat-flow__connector {
    height: 48px;
  }


  /* EXECUTION */

  .prochat-execution-item {
    padding: 7px 10px;

    font-size: 11px;
  }


  /* DIARY */

  .prochat-diary {
    margin-bottom: 40px;

    border-radius: 19px;
  }

  .prochat-diary__content {
    padding: 21px;

    border-radius: 18px;
  }

  .prochat-diary__heading {
    gap: 14px;

    margin-bottom: 17px;
  }

  .prochat-diary__number {
    width: 40px;
    height: 40px;

    font-size: 12px;
  }

  .prochat-diary__heading h3 {
    font-size: 23px;
  }

  .prochat-diary__heading p {
    font-size: 16px;
  }

  .prochat-diary__categories {
    grid-template-columns: 1fr;

    gap: 7px;
  }

  .prochat-category {
    padding: 10px 12px;

    font-size: 12px;
  }


  /* WORK */

  .prochat-work {
    gap: 10px;

    margin-bottom: 40px;
  }

  .prochat-work__content {
    min-width: 0;
  }

  .prochat-work__content p {
    font-size: 11px;
  }

  .prochat-work__content strong {
    font-size: 20px;
  }


  /* INTEGRATIONS */

  .prochat-integrations {
    padding: 23px 18px;

    border-radius: 18px;
  }

  .prochat-integrations__description {
    margin-bottom: 18px;

    font-size: 12px;
  }

  .prochat-integrations__list {
    grid-template-columns: 1fr;

    gap: 7px;
  }

  .prochat-integration {
    padding: 10px 12px;

    font-size: 11px;
  }
}

/* ============================================================
   PROCHAT EXECUTION — GSAP ANIMATION STATES
   HTML REMAINS UNCHANGED
============================================================ */

/* Header */
.prochat-execution__header {
  will-change: transform, opacity;
}

.prochat-execution__eyebrow,
.prochat-execution__title,
.prochat-execution__intro {
  will-change: transform, opacity;
}

/* Flow */
.prochat-flow__card {
  will-change: transform, opacity;
}

.prochat-flow__card--message {
  transform-origin: left center;
}

.prochat-flow__card--execution {
  transform-origin: right center;
}

/* Connector */
.prochat-flow__connector {
  will-change: opacity;
}

.prochat-flow__connector-track {
  transform-origin: left center;
}

.prochat-flow__connector-pulse {
  opacity: 0;
}

/* Execution items */
.prochat-execution-item {
  will-change: transform, opacity;
}

/* Diary */
.prochat-diary {
  will-change: transform, opacity;
}

.prochat-diary__heading {
  will-change: transform, opacity;
}

.prochat-diary__categories {
  will-change: transform, opacity;
}

.prochat-category {
  will-change: transform, opacity;
}

/* Work */
.prochat-work {
  will-change: transform, opacity;
}

.prochat-work__line {
  transform-origin: center;
}

.prochat-work__content {
  will-change: transform, opacity;
}

.prochat-work__content strong {
  will-change: transform, opacity;
}

/* Integrations */
.prochat-integrations {
  will-change: transform, opacity;
}

.prochat-integrations__description {
  will-change: transform, opacity;
}

.prochat-integration {
  will-change: transform, opacity;
}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
  .prochat-execution *,
  .prochat-execution *::before,
  .prochat-execution *::after {
    animation: none !important;
    transition: none !important;
  }
}



/* history story css */
/* ============================================================
   PROCHAT STORY - SCROLL STORY / STEP CARDS
   ============================================================ */

.prochat-story-section {
    --story-primary: #053b2f;
    --story-primary-light: #0b5d47;
    --story-primary-dark: #02261f;

    --story-secondary: #f7c948;
    --story-secondary-light: #ffdc73;
    --story-secondary-dark: #e8b92d;

    --story-white: #ffffff;
    --story-black: #111827;
    --story-text: #1f2937;
    --story-muted: #6b7280;
    --story-border: #e5e7eb;

    position: relative;
    width: 100%;

    min-height: 900px;

    padding: 60px 0;

    background: #ffffff;

    overflow: visible;
}


/* ============================================================
   HEADING
   ============================================================ */

.prochat-center-heading {
    width: min(900px, calc(100% - 40px));

    margin: 0 auto 55px;

    text-align: center;
}

.prochat-center-heading .heading-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 14px;

    border-radius: 50px;

    background: rgba(5, 59, 47, 0.08);

    color: #053b2f;

    font-size: 12px;
    font-weight: 700;
}

.prochat-center-heading h2 {
    margin: 15px 0;
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #1f2937;
}

.prochat-center-heading .heading-divider {
    width: 55px;
    height: 3px;

    margin: 0 auto 17px;

    border-radius: 20px;

    background: #f7c948;
}

.prochat-center-heading p {
    max-width: 760px;

    margin: 0 auto;

    font-size: 16px;
    color: #6b7480;
    line-height: 1.65;
}


/* ============================================================
   MAIN CONTAINER
   ============================================================ */

.prochat-story-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.9fr);

    gap: 65px;

    align-items: start;
}


/* ============================================================
   LEFT SIDE
   ============================================================ */

.prochat-content-side {
    position: relative;

    min-width: 0;

    height: 500px;

    padding-left: 42px;
}


/* ============================================================
   BULLET LINE
   ============================================================ */

.prochat-content-side::before {
    content: "";

    position: absolute;

    top: 8px;
    bottom: 8px;

    left: 10px;

    width: 2px;

    background: #e5e7eb;

    border-radius: 10px;
}


/* ============================================================
   CAROUSEL WRAPPER
   ============================================================ */

.carousel-wrapper {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: visible;
}


/* Hide old scroll indicator */

.scroll-indicator {
    display: none;
}


/* ============================================================
   CAROUSEL INNER
   ============================================================ */

.carousel-inner {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: visible;
}


/* ============================================================
   STORY CARD
   ============================================================ */

.content-block {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    padding: 28px 30px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(5, 59, 47, 0.06);

    opacity: 0.12;

    transform:
        translateY(20px)
        scale(0.98);

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    will-change: opacity, transform;
}


/* ============================================================
   ACTIVE CARD
   ============================================================ */

.content-block.story-active {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    pointer-events: auto;

    border-color: rgba(5, 59, 47, 0.18);

    box-shadow:
        0 18px 45px rgba(5, 59, 47, 0.10);

    z-index: 5;
}


/* ============================================================
   OTHER CARDS
   ============================================================ */

.content-block.story-before {
    transform:
        translateY(-18px)
        scale(0.98);

    opacity: 0.10;

    z-index: 1;
}

.content-block.story-after {
    transform:
        translateY(18px)
        scale(0.98);

    opacity: 0.12;

    z-index: 1;
}


/* ============================================================
   BULLET
   ============================================================ */

.content-block::before {
    content: "";

    position: absolute;

    left: -39px;

    top: 32px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #e5e7eb;

    border: 3px solid #ffffff;

    box-shadow:
        0 0 0 1px #e5e7eb;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* Active bullet */

.content-block.story-active::before {
    background: #f7c948;

    box-shadow:
        0 0 0 4px rgba(247, 201, 72, 0.18);

    transform: scale(1.15);
}


/* ============================================================
   CARD NUMBER
   ============================================================ */

.block-number {
    position: absolute;

    top: 24px;
    right: 24px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #053b2f;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}


/* ============================================================
   CARD LABEL
   ============================================================ */

.block-label {
    display: flex;
    align-items: center;

    margin-bottom: 10px;

    color: #053b2f;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ============================================================
   CARD HEADING
   ============================================================ */

.content-block h3 {
    margin: 0 45px 13px 0;

    color: #111827;

    font-size: 23px;
    line-height: 1.3;

    font-weight: 750;
}


/* ============================================================
   CARD TEXT
   ============================================================ */

.content-block p {
    margin: 0 0 10px;

    font-size: 16px;
    color: #6b7480;
    line-height: 1.7;
}


/* ============================================================
   RIGHT DASHBOARD
   ============================================================ */

.prochat-dashboard-side {
    position: relative;

    align-self: start;
}


/* ============================================================
   FIXED/STICKY DASHBOARD
   ============================================================ */

.dashboard-wrapper {
    position: sticky;

    top: 100px;

    width: 100%;

    height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;
}


/* ============================================================
   DASHBOARD IMAGE
   ============================================================ */

.dashboard-wrapper img {
    display: block;

    width: 100%;
    max-width: 520px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 35px rgba(5, 59, 47, 0.14)
        );
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .prochat-story-section {
        min-height: auto;

        padding: 60px 0;
    }

    .prochat-story-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .prochat-dashboard-side {
        order: -1;
    }

    .dashboard-wrapper {
        position: relative;

        top: auto;

        height: 320px;
    }

    .prochat-content-side {
        height: auto;

        padding-left: 30px;
    }

    .prochat-content-side::before {
        left: 7px;
    }

    .carousel-inner {
        height: auto;
    }

    .content-block {
        position: relative;

        top: auto;
        left: auto;

        margin-bottom: 18px;

        opacity: 1;

        transform: none;

        pointer-events: auto;
    }

    .content-block.story-before,
    .content-block.story-after {
        opacity: 1;

        transform: none;
    }

    .content-block.story-active {
        transform: none;
    }

    .content-block::before {
        left: -33px;
    }

}


/* =========================================================
   PROCHAT - CONVERSATION FILTERS
   Completely isolated styles
   ========================================================= */

.pc-filter-section {
  position: relative;
  display: block;
  width: 100%;
  min-height: 900px;
  padding: 60px 0;
  background: #f5fffc;
  overflow: hidden;
  isolation: isolate;
}

.pc-filter-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0px;

  position: relative;
}

/* LEFT */

.pc-filter-content {
  position: relative;
  z-index: 5;
}

.pc-filter-badge {
  display: inline-flex;
  align-items: center;

  padding: 7px 14px;
  margin-bottom: 18px;

  border-radius: 50px;

  background: #e9faf4;
  color: #008f68;

  font-size: 13px;
  font-weight: 600;
}

.pc-filter-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;

  color: #071d2b;
}

.pc-filter-description {
  margin: 0 0 10px;

  max-width: 520px;

  font-size: 16px;
  line-height: 1.6;

  color: #6b7480;
}

.pc-filter-question {
  margin: 0;

  font-size: 17px;
  line-height: 1.6;

  color: #071d2b;
}

.pc-filter-question strong {
  color: #008f68;
}


/* =========================================================
   VISUAL
   ========================================================= */

.pc-filter-visual {
  position: relative;

  min-height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-filter-circle {
  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: rgb(212 255 246 / 66%);

  z-index: 1;
}

.pc-filter-glow {
  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(0, 143, 104, 0.15);

  filter: blur(55px);

  z-index: 2;
}

.pc-filter-image {
  position: relative;

  width: 100%;
  max-width: 520px;

  z-index: 3;

  display: flex;
  justify-content: center;
}

.pc-filter-image img {
  display: block;

  width: 100%;
  max-width: 520px;

  height: auto;

  object-fit: contain;
}


/* =========================================================
   INTRO
   ========================================================= */

.pc-filter-intro {
  grid-column: 1 / -1;

  margin-top: 40px;

  text-align: center;
}

.pc-filter-intro p {
  margin: 0;

  font-size: 16px;
  line-height: 1.6;

  color: #6b7480;
}


/* =========================================================
   SUB HEADING
   ========================================================= */

.pc-filter-subheading {
  grid-column: 1 / -1;

  text-align: center;

  margin-top: 35px;
}

.pc-filter-subheading h3 {
  margin: 0;

  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;

  color: #071d2b;
}


/* =========================================================
   CARDS
   ========================================================= */

.pc-filter-grid {
  grid-column: 1 / -1;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 25px;
}

.pc-filter-card {
  position: relative;

  padding: 24px;

  background: #ffffff;

  border: 1px solid #e3eee9;

  border-radius: 16px;

  box-shadow: 0 8px 30px rgba(7, 29, 43, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pc-filter-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(7, 29, 43, 0.10);
}

.pc-filter-card h4 {
  margin: 0 0 10px;

  font-size: 18px;
  font-weight: 700;

  color: #008f68;
}

.pc-filter-card p {
  margin: 0;

  font-size: 16px;
  line-height: 1.6;

  color: #6b7480;
}


/* =========================================================
   CONCLUSION
   ========================================================= */

.pc-filter-conclusion {
  grid-column: 1 / -1;

  margin-top: 30px;
  padding: 28px 30px;

  text-align: center;

  border-radius: 18px;

  background: #f7fcfa;

  border: 1px solid #e3eee9;
}

.pc-filter-conclusion p {
  max-width: 900px;

  margin: 0 auto 12px;

  font-size: 16px;
  line-height: 1.65;

  color: #6b7480;
}

.pc-filter-conclusion strong {
  font-size: 18px;

  color: #008f68;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .pc-filter-section {
    padding: 60px 0;
  }

  .pc-filter-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .pc-filter-content {
    text-align: center;
  }

  .pc-filter-description {
    margin-left: auto;
    margin-right: auto;
  }

  .pc-filter-visual {
    min-height: 350px;
  }

  .pc-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .pc-filter-section {
    padding: 60px 0;
  }

  .pc-filter-container {
    width: min(100% - 28px, 1180px);
  }

  .pc-filter-title {
    font-size: 32px;
  }

  .pc-filter-description,
  .pc-filter-question {
    font-size: 16px;
  }

  .pc-filter-visual {
    min-height: 280px;
  }

  .pc-filter-circle {
    width: 260px;
    height: 260px;
  }

  .pc-filter-grid {
    grid-template-columns: 1fr;
  }

  .pc-filter-card {
    padding: 20px;
  }

  .pc-filter-conclusion {
    padding: 22px 18px;
  }
}



/* =========================================================
   PROCHAT — TURN ANY MESSAGE INTO ACTION
========================================================= */

.prochat-action-story {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  padding: 60px 0;
  overflow: hidden;

  background: #ffffff;
}


/* =========================================================
   BLOBS
========================================================= */

.prochat-action-blob {
  position: absolute;
  z-index: 0;

  border-radius: 50%;

  pointer-events: none;

     filter: blur(90px);
}

.prochat-action-blob--one {
  width: 520px;
  height: 520px;

  top: -220px;
  right: -160px;

  background: rgb(212 255 246 / 66%);
}

.prochat-action-blob--two {
  width: 380px;
  height: 380px;

  bottom: -180px;
  left: -150px;

 background: rgb(212 255 246 / 66%);
}

.prochat-action-blob--three {
  width: 220px;
  height: 220px;

  top: 48%;
  right: 8%;

  background: rgb(212 255 246 / 66%);
}


/* =========================================================
   CONTAINER
========================================================= */

.prochat-action-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.prochat-action-heading {
  max-width: 720px;
  margin: 0 auto 70px;

  text-align: center;
}


.prochat-action-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;
  color: #071d2b;
}

.prochat-action-heading p {
  margin: 16px 0 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.7;
}


/* =========================================================
   STORY AREA
========================================================= */

.prochat-action-story-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;

  min-height: 520px;

  border: 1px solid rgba(5, 59, 47, 0.08);
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.75);

  box-shadow:
    0 25px 70px rgba(5, 59, 47, 0.07);

  backdrop-filter: blur(15px);

  overflow: hidden;
}


/* =========================================================
   NAVIGATION
========================================================= */

.prochat-action-navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 45px 25px;

  border-right: 1px solid rgba(5, 59, 47, 0.08);

  background: rgba(248, 250, 252, 0.7);
}

.prochat-action-nav-item {
  position: relative;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 15px 14px;

  border-radius: 12px;

  color: var(--text-light);

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.prochat-action-nav-item span {
  font-size: 10px;
  font-weight: 700;
}

.prochat-action-nav-item strong {
  font-size: 14px;
  font-weight: 650;
}

.prochat-action-nav-item.active {
  color: var(--primary);

  background: rgba(5, 59, 47, 0.07);

  transform: translateX(5px);
}

.prochat-action-nav-item.active span {
  color: var(--secondary-dark);
}


/* =========================================================
   CONTENT
========================================================= */

.prochat-action-content {
  position: relative;

  min-height: 520px;
}


/* =========================================================
   PANELS
========================================================= */

.prochat-action-panel {
  position: absolute;

  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 70px 90px;

  opacity: 0;
  visibility: hidden;

  transform:
    translateY(25px)
    scale(0.98);

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.45s ease;
}

.prochat-action-panel.active {
  opacity: 1;
  visibility: visible;

  transform:
    translateY(0)
    scale(1);
}


/* =========================================================
   NUMBER
========================================================= */

.prochat-action-number {
  position: absolute;

  top: 45px;
  right: 55px;

  color: rgba(5, 59, 47, 0.06);

  font-size: 100px;
  line-height: 1;

  font-weight: 800;
}


/* =========================================================
   ICON
========================================================= */

.prochat-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  margin-bottom: 24px;

  border-radius: 16px;

  background: var(--primary);

  color: var(--secondary);

  font-size: 20px;
  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(5, 59, 47, 0.16);
}


/* =========================================================
   PANEL HEADING
========================================================= */

.prochat-action-panel h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 16px;

  color: var(--text-primary);

  font-size: 32px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.025em;
}


/* =========================================================
   PANEL PARAGRAPH
========================================================= */

.prochat-action-panel p {
  position: relative;
  z-index: 2;

  max-width: 610px;

  margin: 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.75;
}


/* =========================================================
   CONTEXT AREA
========================================================= */

.prochat-action-context {
  margin-top: 30px;

  border-radius: 20px;

  border: 1px solid rgba(5, 59, 47, 0.09);

  background: var(--white);

  box-shadow:
    0 15px 45px rgba(5, 59, 47, 0.06);

  overflow: hidden;
}


/* =========================================================
   CONTEXT MAIN
========================================================= */

.prochat-context-main {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 27px 30px;
}

.prochat-context-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  flex-shrink: 0;

  border-radius: 12px;

  background: var(--primary);

  color: var(--secondary);

  font-size: 17px;
  font-weight: 700;
}

.prochat-context-main p {
  margin: 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.7;
}

.prochat-context-main strong {
  color: var(--primary);
}


/* =========================================================
   TARGET DATE
========================================================= */

.prochat-context-date {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 20px 30px;

  border-top: 1px solid var(--border-color);

  background:
    linear-gradient(
      90deg,
      rgba(247, 201, 72, 0.09),
      rgba(247, 201, 72, 0.025)
    );
}

.prochat-context-date-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  flex-shrink: 0;

  border-radius: 11px;

  background: rgba(247, 201, 72, 0.2);

  color: var(--primary);

  font-size: 16px;
}

.prochat-context-date p {
  margin: 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.6;
}

.prochat-context-date strong {
  color: var(--primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .prochat-action-story-wrap {
    grid-template-columns: 210px 1fr;
  }

  .prochat-action-panel {
    padding: 60px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .prochat-action-story {
    padding: 60px 0;
  }

  .prochat-action-container {
    width: min(100% - 28px, 560px);
  }

  .prochat-action-heading {
    margin-bottom: 40px;
  }

  .prochat-action-heading h2 {
    font-size: 32px;
  }

  .prochat-action-heading p {
    font-size: 16px;
  }


  .prochat-action-story-wrap {
    display: block;

    min-height: auto;

    border-radius: 22px;
  }


  /* navigation becomes horizontal */

  .prochat-action-navigation {
    display: flex;
    flex-direction: row;

    padding: 12px;

    overflow-x: auto;

    border-right: 0;
    border-bottom: 1px solid rgba(5, 59, 47, 0.08);

    scrollbar-width: none;
  }

  .prochat-action-navigation::-webkit-scrollbar {
    display: none;
  }

  .prochat-action-nav-item {
    min-width: max-content;

    padding: 11px 13px;
  }

  .prochat-action-nav-item.active {
    transform: none;
  }


  /* content */

  .prochat-action-content {
    min-height: 430px;
  }

  .prochat-action-panel {
    padding: 45px 28px;
  }

  .prochat-action-panel h3 {
    font-size: 32px;
  }

  .prochat-action-panel p {
    font-size: 16px;
  }

  .prochat-action-number {
    top: 25px;
    right: 25px;

    font-size: 70px;
  }


  /* context */

  .prochat-context-main {
    padding: 22px;

    gap: 14px;
  }

  .prochat-context-main p {
    font-size: 16px;
  }

  .prochat-context-date {
    padding: 18px 22px;
  }

  .prochat-context-date p {
    font-size: 16px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .prochat-action-heading h2 {
    font-size: 32px;
  }

  .prochat-action-panel {
    padding: 40px 22px;
  }

  .prochat-action-panel h3 {
    font-size: 30px;
  }

  .prochat-action-panel p {
    font-size: 16px;
  }

  .prochat-action-icon {
    width: 52px;
    height: 52px;
  }

  .prochat-context-main {
    display: block;
  }

  .prochat-context-icon {
    margin-bottom: 15px;
  }

}


/* ================= MANAGEMENT VISIBILITY ================= */

.management-visibility {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: var(--white);
}

.management-visibility__blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .08;
  pointer-events: none;
}

.management-visibility__blob--1 {
  top: -180px;
  left: -180px;
  background: rgb(212 255 246 / 66%);
}

.management-visibility__blob--2 {
  right: -180px;
  bottom: -180px;
  background: rgb(212 255 246 / 66%);
}

.management-visibility .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}


/* ================= HEADING ================= */

.management-visibility__heading {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.management-visibility__heading h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;
}

.management-visibility__heading h2 span {
  color: var(--primary-light);
}

.management-visibility__heading p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}

.management-visibility__heading strong {
  color: var(--primary);
}


/* ================= MAIN VISUAL ================= */

.management-visibility__visual {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 35px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}


/* ================= LEFT ================= */

.management-visibility__left {
  display: flex;
  align-items: center;
}

.management-visibility__message {
  width: 100%;
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  background: var(--bg-light);
  box-shadow: 0 20px 50px rgba(5, 59, 47, .07);
}

.management-visibility__message p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.75;
}

.management-visibility__message p:last-child {
  margin-top: 20px;
}


/* ================= ACTIONS ================= */

.management-visibility__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.management-visibility__actions span {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--white);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  opacity: .35;
  transform: translateY(12px);
  transition:
    opacity .4s ease,
    transform .4s ease,
    background .4s ease,
    color .4s ease;
}

.management-visibility__actions span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.management-visibility__actions span.is-active {
  background: var(--primary);
  color: var(--white);
}


/* ================= CENTER LINE ================= */

.management-visibility__line {
  position: relative;
  min-height: 100%;
  display: flex;
  justify-content: center;
}

.management-visibility__line::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--border-color);
}

.management-visibility__line-progress {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 2px;
  height: 0;
  background: var(--primary);
  transform: translateX(-50%);
  transition: height .8s ease;
}

.management-visibility__dot {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--border-color);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px var(--border-color);
  transition: .4s ease;
}

.management-visibility__dot--1 {
  top: 20%;
}

.management-visibility__dot--2 {
  top: 50%;
}

.management-visibility__dot--3 {
  top: 80%;
}

.management-visibility__dot.is-active {
  background: var(--primary);
  box-shadow:
    0 0 0 6px rgba(5, 59, 47, .1);
}


/* ================= RIGHT QUESTIONS ================= */

.management-visibility__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 0;
}

.management-visibility__question {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--white);
  opacity: .3;
  transform: translateX(30px);
  transition:
    opacity .5s ease,
    transform .5s ease,
    border-color .5s ease,
    box-shadow .5s ease;
}

.management-visibility__question.is-active {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(5, 59, 47, .2);
  box-shadow: 0 15px 35px rgba(5, 59, 47, .08);
}

.management-visibility__question span {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  transition: .4s ease;
}

.management-visibility__question.is-active span {
  background: var(--primary);
  color: var(--white);
}

.management-visibility__question p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.5;
}


/* ================= COMPLETION ================= */

.management-visibility__completion {
  max-width: 850px;
  margin: 80px auto 0;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: var(--bg-light);
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.management-visibility__completion.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.management-visibility__completion-content {
  flex: 1;
}

.management-visibility__completion-content p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.75;
}

.management-visibility__completion-content strong {
  color: var(--primary);
}

.management-visibility__completion-status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--white);
  color: var(--primary);
  font-size: 13px;
  opacity: 0;
  transform: scale(.8);
  transition:
    opacity .5s ease .4s,
    transform .5s ease .4s;
}

.management-visibility__completion.is-visible
.management-visibility__completion-status {
  opacity: 1;
  transform: scale(1);
}

.management-visibility__completion-check {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
}


/* ================= STATEMENT ================= */

.management-visibility__statement {
  max-width: 850px;
  margin: 70px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.management-visibility__statement.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.management-visibility__statement p {
  margin: 0;
  color: var(--primary);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}


/* ================= FOOTER ================= */

.management-visibility__footer {
  max-width: 850px;
  margin: 25px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.management-visibility__footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.management-visibility__footer p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}

.management-visibility__footer strong {
  color: var(--primary);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .management-visibility {
    padding: 60px 0;
  }

  .management-visibility__visual {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .management-visibility__line {
    display: none;
  }

  .management-visibility__right {
    gap: 15px;
  }

  .management-visibility__question {
    transform: translateY(25px);
  }

  .management-visibility__question.is-active {
    transform: translateY(0);
  }

  .management-visibility__completion {
    margin-top: 50px;
  }
}

@media (max-width: 600px) {

  .management-visibility {
    padding: 60px 0;
  }

  .management-visibility__heading {
    margin-bottom: 45px;
  }

  .management-visibility__heading h2 {
    font-size: 28px;
  }

  .management-visibility__heading p,
  .management-visibility__message p,
  .management-visibility__completion-content p,
  .management-visibility__footer p {
    font-size: 16px;
  }

  .management-visibility__message {
    padding: 22px;
  }

  .management-visibility__completion {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    gap: 20px;
  }

  .management-visibility__statement p {
    font-size: 20px;
  }

  .management-visibility__actions span {
    padding: 8px 11px;
    font-size: 12px;
  }
}


/* ================= ORGANIZATION GROUP CONTROL ================= */

.org-group-control {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: var(--bg-light);
}

.org-group-control__blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .07;
  pointer-events: none;
}

.org-group-control__blob--1 {
  top: -180px;
  left: -180px;
  background: rgb(212 255 246 / 66%);
}

.org-group-control__blob--2 {
  right: -180px;
  bottom: -180px;
  background: rgb(212 255 246 / 66%);
}

.org-group-control .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}


/* ================= INTRO ================= */

.org-group-control__intro {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.org-group-control__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.org-group-control__intro h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;
}

.org-group-control__intro p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}

.org-group-control strong {
  color: var(--primary);
}


/* ================= ORGANIZATION FLOW ================= */

.org-group-control__flow {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

.org-group-control__organization {
  opacity: 0;
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22,.61,.36,1);
}

.org-group-control__organization--left {
  transform: translateX(-45px);
}

.org-group-control__organization--right {
  transform: translateX(45px);
}

.org-group-control__organization.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.org-group-control__card {
  padding: 28px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(5, 59, 47, .07);
}

.org-group-control__card p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}


/* ================= CONNECTOR ================= */

.org-group-control__connector {
  position: relative;
  height: 3px;
}

.org-group-control__connector-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
  transition: width .8s ease;
}

.org-group-control__connector.is-visible
.org-group-control__connector-line {
  width: 100%;
}

.org-group-control__connector-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .5s ease .4s;
}

.org-group-control__connector.is-visible
.org-group-control__connector-dot {
  transform: translate(-50%, -50%) scale(1);
}


/* ================= ADMIN FLOW ================= */

.org-group-control__admin-flow {
  max-width: 650px;
  margin: 55px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.org-group-control__admin-flow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.org-group-control__admin-text {
  padding: 25px 30px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(5, 59, 47, .06);
}

.org-group-control__admin-text p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}


/* ================= CONTROL RULE ================= */

.org-group-control__rule {
  max-width: 850px;
  margin: 55px auto 0;
  padding-left: 25px;
  border-left: 3px solid var(--primary);
  opacity: 0;
  transform: translateX(35px);
  transition: opacity .7s ease, transform .7s ease;
}

.org-group-control__rule.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.org-group-control__rule-content {
  padding: 25px 30px;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: var(--white);
}

.org-group-control__rule p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}


/* ================= REMOVAL ================= */

.org-group-control__removal {
  max-width: 850px;
  margin: 35px auto 0;
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity .7s ease, transform .7s ease;
}

.org-group-control__removal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.org-group-control__removal-content {
  padding: 25px 30px;
  border: 1px solid rgba(5, 59, 47, .12);
  border-radius: 18px;
  background: rgba(5, 59, 47, .04);
}

.org-group-control__removal p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}


/* ================= DEFAULT ADMINS ================= */

.org-group-control__default-admin {
  max-width: 850px;
  margin: 55px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.org-group-control__default-admin.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.org-group-control__default-admin p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}


/* ================= FINAL ================= */

.org-group-control__final {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}

.org-group-control__final.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.org-group-control__final p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.8;
}


/* ================= STATEMENT ================= */

.org-group-control__statement {
  max-width: 850px;
  margin: 55px auto 0;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  background: var(--primary);
  opacity: 0;
  transform: scale(.96);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.org-group-control__statement.is-visible {
  opacity: 1;
  transform: scale(1);
}

.org-group-control__statement p {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.5;
}

.org-group-control__statement strong {
  color: var(--white);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .org-group-control {
    padding: 60px 0;
  }

  .org-group-control__flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .org-group-control__connector {
    height: 50px;
    width: 2px;
    margin: 0 auto;
  }

  .org-group-control__connector-line {
    top: 0;
    left: 50%;
    width: 2px;
    height: 0;
    transform: translateX(-50%);
  }

  .org-group-control__connector.is-visible
  .org-group-control__connector-line {
    width: 2px;
    height: 100%;
  }

  .org-group-control__connector-dot {
    top: 50%;
    left: 50%;
  }

  .org-group-control__organization--left,
  .org-group-control__organization--right {
    transform: translateY(30px);
  }

  .org-group-control__organization.is-visible {
    transform: translateY(0);
  }
}


@media (max-width: 600px) {

  .org-group-control {
    padding: 60px 0;
  }

  .org-group-control__intro {
    margin-bottom: 45px;
  }

  .org-group-control__intro h2 {
    font-size: 28px;
  }

  .org-group-control__intro p,
  .org-group-control__card p,
  .org-group-control__admin-text p,
  .org-group-control__rule p,
  .org-group-control__removal p,
  .org-group-control__default-admin p,
  .org-group-control__final p {
    font-size: 16px;
  }

  .org-group-control__card,
  .org-group-control__rule-content,
  .org-group-control__removal-content {
    padding: 22px;
  }

  .org-group-control__statement {
    padding: 25px 20px;
  }

  .org-group-control__statement p {
    font-size: 19px;
  }
}



/* ai business group css */
.ai-business-groups {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background: var(--white);
}

.ai-business-groups__container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;

  column-gap: 50px;
  row-gap: 28px;
}


/* ================================
   BLOBS
================================ */

.ai-business-groups__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.16;
}

.ai-business-groups__blob--1 {
  width: 240px;
  height: 240px;
  top: -100px;
  left: -100px;
  background: rgb(212 255 246 / 66%);
}

.ai-business-groups__blob--2 {
  width: 200px;
  height: 200px;
  right: -80px;
  bottom: -80px;
  background: rgb(212 255 246 / 66%);
}


/* ================================
   LEFT CONTENT
================================ */

.ai-business-groups__heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}



.ai-business-groups__heading h2 {
  margin: 0;

  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;

  color: var(--primary);
}

.ai-business-groups__text {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ai-business-groups__text p {
  margin: 0;

  font-size: 16px;
  line-height: 1.6;

  color: #6b7480;
}

.ai-business-groups__focus {
  color: var(--text-primary) !important;
}


/* ================================
   RIGHT IMAGE
================================ */

.ai-business-groups__visual {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
}

.ai-business-groups__image-wrap {
  width: 100%;
  max-width: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-business-groups__image {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  filter: drop-shadow(
    0 20px 35px rgba(5, 59, 47, 0.12)
  );
}


/* ================================
   FINAL STATEMENT
================================ */

.ai-business-groups__statement {
  grid-column: 1 / -1;

  padding: 18px 22px;

  border-left: 4px solid var(--secondary);
  border-radius: 0 12px 12px 0;

  background: var(--bg-light);

  font-size: 16px;
  line-height: 1.5;

  color: var(--primary);
}


/* ================================
   SIMPLE SCROLL ANIMATION
================================ */

.ai-business-groups__content,
.ai-business-groups__visual,
.ai-business-groups__statement {
  opacity: 0;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.ai-business-groups__content {
  transform: translateX(-30px);
}

.ai-business-groups__visual {
  transform: translateX(30px);
}

.ai-business-groups__statement {
  transform: translateY(20px);
}

.ai-business-groups.is-visible .ai-business-groups__content,
.ai-business-groups.is-visible .ai-business-groups__visual,
.ai-business-groups.is-visible .ai-business-groups__statement {
  opacity: 1;
  transform: translate(0);
}

.ai-business-groups.is-visible .ai-business-groups__visual {
  transition-delay: 0.08s;
}

.ai-business-groups.is-visible .ai-business-groups__statement {
  transition-delay: 0.16s;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

  .ai-business-groups {
    padding: 60px 20px;
  }

  .ai-business-groups__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ai-business-groups__visual {
    order: -1;
  }

  .ai-business-groups__image-wrap {
    max-width: 460px;
  }

  .ai-business-groups__statement {
    grid-column: auto;
  }
}


@media (max-width: 600px) {

  .ai-business-groups {
    padding: 60px 16px;
  }

  .ai-business-groups__heading h2 {
    font-size: 28px;
  }

  .ai-business-groups__text p {
    font-size: 16px;
  }

  .ai-business-groups__image-wrap {
    max-width: 100%;
  }

  .ai-business-groups__statement {
    padding: 16px 18px;
    font-size: 15px;
  }
}





/* =========================================================
   MEETINGS BUILT BY EVERYONE
========================================================= */

.pc-meetings-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  background: var(--pc-white);
}

.pc-meetings-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.pc-meetings-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.pc-meetings-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  margin-bottom: 14px;

  border: 1px solid rgba(0, 143, 104, 0.18);
  border-radius: 999px;

  background: var(--pc-green-light);
  color: var(--pc-green-dark);

  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pc-meetings-heading h2 {
  margin: 0;

  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;
}

.pc-meetings-intro {
  max-width: 650px;
  margin: 14px auto 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.6;
}

.pc-meetings-subintro {
  max-width: 620px;
  margin: 5px auto 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.55;
  font-weight: 500;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.pc-meetings-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 42px;
}


/* =========================================================
   LEFT CARDS
========================================================= */

.pc-meetings-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* =========================================================
   MEETING CARD
========================================================= */

.pc-meeting-card {
  position: relative;

  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 28px;
  align-items: start;

  gap: 14px;
  width: 100%;

  padding: 17px 18px;

  border: 1px solid rgba(7, 29, 43, 0.075);
  border-radius: 16px;

  background: var(--pc-white);

  cursor: pointer;
  overflow: hidden;

 opacity: 0.42;
  transform: translate3d(-12px, 0, 0);

  transition:
    opacity 0.65s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.5s ease,
    background 0.5s ease,
    box-shadow 0.5s ease;
}


/* very subtle top highlight */

.pc-meeting-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 143, 104, 0.12),
    transparent
  );

  opacity: 0;

  transition: opacity 0.3s ease;
}


/* left active indicator */

.pc-meeting-card::after {
  content: "";

  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;

  width: 3px;

  border-radius: 0 5px 5px 0;

  background: var(--pc-green);

  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: center;

  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   CARD HOVER
========================================================= */

.pc-meeting-card:hover {
  opacity: 1;

  transform: translate3d(4px, -2px, 0);

  border-color: rgba(0, 143, 104, 0.22);

  background: #ffffff;

  box-shadow:
    0 4px 8px rgba(7, 29, 43, 0.025),
    0 12px 28px rgba(0, 61, 47, 0.065),
    0 22px 45px rgba(0, 61, 47, 0.035);
}

.pc-meeting-card:hover::before {
  opacity: 1;
}


/* =========================================================
   ACTIVE CARD
========================================================= */

.pc-meeting-card.is-active {
  opacity: 1;

  transform: translate3d(6px, 0, 0);

  border-color: rgba(0, 143, 104, 0.32);

  background:
    linear-gradient(
      135deg,
      rgba(233, 250, 244, 0.95),
      rgba(255, 255, 255, 1)
    );

  box-shadow:
    0 3px 7px rgba(0, 61, 47, 0.035),
    0 12px 30px rgba(0, 61, 47, 0.085),
    0 24px 50px rgba(0, 61, 47, 0.045);
}

.pc-meeting-card.is-active::before {
  opacity: 1;
}

.pc-meeting-card.is-active::after {
  opacity: 1;
  transform: scaleY(1);
}


/* =========================================================
   CARD NUMBER
========================================================= */

.pc-meeting-number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border: 1px solid rgba(7, 29, 43, 0.055);
  border-radius: 50%;

  background: #f5f8f6;

  color: var(--pc-muted);

  font-size: 10px;
  line-height: 1;
  font-weight: 800;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}


/* hover number */

.pc-meeting-card:hover .pc-meeting-number {
  border-color: rgba(0, 143, 104, 0.15);

  background: var(--pc-green-light);
  color: var(--pc-green-dark);

  transform: scale(1.04);
}


/* active number */

.pc-meeting-card.is-active .pc-meeting-number {
  border-color: var(--pc-green);

  background: var(--pc-green);
  color: var(--pc-white);

  transform: scale(1.08);

  box-shadow:
    0 4px 10px rgba(0, 143, 104, 0.18);
}


/* =========================================================
   CARD BODY
========================================================= */

.pc-meeting-card-body {
  min-width: 0;
}

.pc-meeting-card-body h3 {
  margin: 1px 0 7px;

  color: var(--pc-text);

  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;

  transition:
    color 0.3s ease,
    transform 0.35s ease;
}

.pc-meeting-card:hover .pc-meeting-card-body h3 {
  color: var(--pc-green-dark);
  transform: translateX(1px);
}

.pc-meeting-card.is-active .pc-meeting-card-body h3 {
  color: var(--pc-green-dark);
  transform: translateX(2px);
}


.pc-meeting-card-body p {
  margin: 0 0 7px;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.55;
}

.pc-meeting-card-body p:last-child {
  margin-bottom: 0;
}

.pc-meeting-card-body strong {
  color: var(--pc-green-dark);
  font-weight: 700;
}


/* =========================================================
   ARROW
========================================================= */

.pc-meeting-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  margin-top: 1px;

  border: 1px solid rgba(7, 29, 43, 0.055);
  border-radius: 50%;

  background: #f5f8f6;
  color: var(--pc-muted);

  font-size: 12px;
  line-height: 1;

  transform: translate3d(0, 0, 0) rotate(0deg);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}


/* hover arrow */

.pc-meeting-card:hover .pc-meeting-arrow {
  border-color: rgba(0, 143, 104, 0.15);

  background: var(--pc-green-light);
  color: var(--pc-green-dark);

  transform: translate3d(2px, -1px, 0) rotate(5deg);
}


/* active arrow */

.pc-meeting-card.is-active .pc-meeting-arrow {
  border-color: var(--pc-green);

  background: var(--pc-green);
  color: var(--pc-white);

  transform: translate3d(2px, -2px, 0) rotate(8deg);

  box-shadow:
    0 4px 10px rgba(0, 143, 104, 0.16);
}


/* =========================================================
   CARD ENTRANCE ANIMATION
========================================================= */

.pc-meeting-card {
  opacity: 0;
  animation:
    pcMeetingCardReveal 0.55s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}

.pc-meeting-card:nth-child(1) {
  animation-delay: 0.04s;
}

.pc-meeting-card:nth-child(2) {
  animation-delay: 0.10s;
}

.pc-meeting-card:nth-child(3) {
  animation-delay: 0.16s;
}

.pc-meeting-card:nth-child(4) {
  animation-delay: 0.22s;
}

.pc-meeting-card:nth-child(5) {
  animation-delay: 0.28s;
}


@keyframes pcMeetingCardReveal {
  from {
    opacity: 0;
    transform: translate3d(-18px, 5px, 0);
  }

  to {
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
  }
}


/* active card entrance */

.pc-meeting-card.is-active {
  animation:
    pcMeetingCardActiveIn 0.6s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}

@keyframes pcMeetingCardActiveIn {
  from {
    opacity: 0;
    transform: translate3d(-18px, 5px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(6px, 0, 0);
  }
}


/* =========================================================
   CLICK / SELECT ANIMATION
========================================================= */

.pc-meeting-card.pc-card-selected {
  animation:
    pcMeetingCardSelect 0.42s
    cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pcMeetingCardSelect {
  0% {
    transform: translate3d(0, 0, 0);
  }

  45% {
    transform: translate3d(8px, -1px, 0);
  }

  100% {
    transform: translate3d(6px, 0, 0);
  }
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.pc-meetings-right {
  position: sticky;
  top: 90px;

  min-width: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.pc-meetings-image-wrap {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 10px;

  border: 1px solid rgba(0, 143, 104, 0.12);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      var(--pc-green-light),
      rgba(255, 255, 255, 0.95)
    );

  box-shadow:
    0 8px 25px rgba(0, 61, 47, 0.045),
    0 20px 50px rgba(0, 61, 47, 0.055);

  overflow: hidden;
}

.pc-meetings-image-wrap::before {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  top: -110px;
  right: -80px;

  border-radius: 50%;

  background: rgba(0, 143, 104, 0.07);

  pointer-events: none;
}

.pc-meetings-image {
  position: relative;

  display: block;

  width: 100%;
  height: auto;

  border-radius: 15px;

  object-fit: contain;

  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-meetings-image-wrap:hover .pc-meetings-image {
  transform: scale(1.015);
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.pc-meetings-highlight {
  display: grid;
  grid-template-columns: 3px minmax(0, 1fr);
  gap: 14px;

  margin-top: 20px;
  padding: 17px 18px;

  border: 1px solid rgba(0, 143, 104, 0.12);
  border-radius: 15px;

  background: var(--pc-green-light);

  box-shadow:
    0 6px 20px rgba(0, 61, 47, 0.035);
}

.pc-highlight-line {
  width: 3px;

  border-radius: 10px;

  background: var(--pc-green);
}

.pc-meetings-highlight strong {
  display: block;

  margin-bottom: 4px;

  color: var(--pc-green-dark);

  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.pc-meetings-highlight p {
  margin: 8px 0 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .pc-meetings-section {
    padding: 60px 0;
  }

  .pc-meetings-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pc-meetings-right {
    position: relative;
    top: auto;
    order: -1;
  }

  .pc-meetings-image-wrap {
    max-width: 720px;
    margin: 0 auto;
  }

  .pc-meetings-highlight {
    max-width: 720px;
    margin: 16px auto 0;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .pc-meetings-section {
    padding: 60px 0;
  }

  .pc-meetings-container {
    width: min(100% - 28px, 1180px);
  }

  .pc-meetings-heading {
    margin-bottom: 30px;
  }

  .pc-meetings-heading h2 {
    font-size: 28px;
  }

  .pc-meetings-intro {
    margin-top: 11px;
    font-size: 16px;
  }

  .pc-meetings-subintro {
    font-size: 16px;
  }

  .pc-meetings-content {
    gap: 22px;
  }

  .pc-meetings-cards {
    gap: 10px;
  }

  .pc-meeting-card {
    grid-template-columns: 34px minmax(0, 1fr) 23px;

    gap: 10px;

    padding: 14px;

    border-radius: 14px;
  }

  .pc-meeting-card.is-active {
    transform: translate3d(3px, 0, 0);
  }

  .pc-meeting-card:hover {
    transform: translate3d(2px, -1px, 0);
  }

  .pc-meeting-number {
    width: 32px;
    height: 32px;

    font-size: 9px;
  }

  .pc-meeting-card-body h3 {
    margin-top: 1px;
    margin-bottom: 6px;

    font-size: 15px;
  }

  .pc-meeting-card-body p {
    font-size: 16px;
    line-height: 1.5;
  }

  .pc-meeting-arrow {
    width: 23px;
    height: 23px;

    font-size: 10px;
  }

  .pc-meetings-image-wrap {
    padding: 7px;
    border-radius: 17px;
  }

  .pc-meetings-image {
    border-radius: 11px;
  }

  .pc-meetings-highlight {
    grid-template-columns: 3px minmax(0, 1fr);

    gap: 10px;

    margin-top: 12px;
    padding: 14px;

    border-radius: 13px;
  }

  .pc-meetings-highlight strong {
    font-size: 13px;
  }

  .pc-meetings-highlight p {
    font-size: 16px;
    line-height: 1.5;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .pc-meeting-card,
  .pc-meeting-number,
  .pc-meeting-arrow,
  .pc-meetings-image {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .pc-meeting-card {
    opacity: 1;
  }

}





/* =========================================================
   CALENDAR SECTION
========================================================= */

.calendar-section {
  width: 100%;
  padding: 60px 20px;
  /* filter: blur(90px); */
      background: rgb(212 255 246 / 19%);
  overflow: hidden;
}

.calendar-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.calendar-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.calendar-heading h2 {
  margin: 0 0 12px;

  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;

  color: var(--primary);
}

.calendar-heading p {
  max-width: 600px;

  margin: 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.55;
}


/* =========================================================
   CONTENT
========================================================= */

.calendar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}


/* =========================================================
   LEFT
========================================================= */

.calendar-left {
  padding: 25px 35px 25px 0;
}

.calendar-intro {
  margin: 0 0 12px;

  color: var(--text-primary);

  font-size: 14px;
  font-weight: 500;
}


/* =========================================================
   ITEMS
========================================================= */

.calendar-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-bottom: 18px;
}

.calendar-items span {
  display: inline-flex;
  align-items: center;

  padding: 7px 10px;

  border: 1px solid rgba(5, 59, 47, 0.12);
  border-radius: 6px;

  color: var(--primary);

  background: rgba(5, 59, 47, 0.045);

  font-size: 12px;
  font-weight: 500;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}


/* stagger */

.calendar-section.is-visible .calendar-items span {
  opacity: 1;
  transform: translateY(0);
}

.calendar-section.is-visible
.calendar-items span:nth-child(1) {
  transition-delay: 0.04s;
}

.calendar-section.is-visible
.calendar-items span:nth-child(2) {
  transition-delay: 0.08s;
}

.calendar-section.is-visible
.calendar-items span:nth-child(3) {
  transition-delay: 0.12s;
}

.calendar-section.is-visible
.calendar-items span:nth-child(4) {
  transition-delay: 0.16s;
}

.calendar-section.is-visible
.calendar-items span:nth-child(5) {
  transition-delay: 0.20s;
}

.calendar-section.is-visible
.calendar-items span:nth-child(6) {
  transition-delay: 0.24s;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.calendar-description {
  max-width: 500px;

  margin: 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.4s ease 0.28s,
    transform 0.4s ease 0.28s;
}

.calendar-section.is-visible .calendar-description {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   RIGHT
========================================================= */

.calendar-right {
  display: flex;
  align-items: center;

  padding: 25px 0 25px 35px;

  border-left: 1px solid var(--border-color);

  opacity: 0;
  transform: translateX(15px);

  transition:
    opacity 0.45s ease 0.25s,
    transform 0.45s ease 0.25s;
}

.calendar-section.is-visible .calendar-right {
  opacity: 1;
  transform: translateX(0);
}

.calendar-right p {
  max-width: 490px;

  margin: 0;

  font-size: 16px;
  color: #6b7480;
  line-height: 1.65;
}

.calendar-right strong {
  color: var(--primary);

  font-weight: 600;
}


/* =========================================================
   FINAL MESSAGE
========================================================= */

.calendar-final {
  max-width: 820px;

  margin: 26px auto 0;

  text-align: center;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.45s ease 0.4s,
    transform 0.45s ease 0.4s;
}

.calendar-section.is-visible .calendar-final {
  opacity: 1;
  transform: translateY(0);
}

.calendar-final p {
  margin: 0;

  color: var(--primary);

  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}


/* =========================================================
   HOVER
========================================================= */

.calendar-items span {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.calendar-items span:hover {
  background: rgba(5, 59, 47, 0.08);
  border-color: rgba(5, 59, 47, 0.2);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

  .calendar-section {
    padding: 60px 18px;
  }

  .calendar-heading {
    margin-bottom: 27px;
  }

  .calendar-heading h2 {
    font-size: 28px;
  }

  .calendar-heading p {
    font-size: 16px;
  }

  .calendar-content {
    grid-template-columns: 1fr;
  }

  .calendar-left {
    padding: 22px 0;
  }

  .calendar-right {
    padding: 22px 0;

    border-left: 0;
    border-top: 1px solid var(--border-color);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

  .calendar-section {
    padding: 60px 15px;
  }

  .calendar-heading h2 {
    font-size: 26px;
  }

  .calendar-items {
    gap: 6px;
  }

  .calendar-items span {
    padding: 7px 9px;
    font-size: 11px;
  }

  .calendar-description,
  .calendar-right p {
    font-size: 16px;
  }

  .calendar-final {
    margin-top: 22px;
  }

  .calendar-final p {
    font-size: 13px;
  }

}



/* <!-- employee exit section --> */
.employee-exit {
  width: 100%;
  padding: 60px 20px;
  background: var(--white);
  overflow: hidden;
}

.employee-exit__container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.employee-exit__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.employee-exit__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  margin-bottom: 14px;
  border: 1px solid rgba(5, 59, 47, .12);
  border-radius: 100px;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.employee-exit__header h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;

  color: var(--primary);
}

.employee-exit__header p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.55;
}


/* =========================================
   MAIN VISUAL
========================================= */

.employee-exit__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
}


/* =========================================
   PANELS
========================================= */

.employee-exit__panel {
  position: relative;
  min-height: 390px;
  padding: 22px;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: var(--white);
  box-shadow:
    0 15px 45px rgba(5, 59, 47, .055);
}

.employee-exit__panel--employee {
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #fafafa 100%
  );
}

.employee-exit__panel--organization {
  border-color: rgba(5, 59, 47, .16);
  box-shadow:
    0 18px 50px rgba(5, 59, 47, .09);
}


/* =========================================
   PANEL HEAD
========================================= */

.employee-exit__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border-color);
}

.employee-exit__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
}

.employee-exit__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.employee-exit__status--remove {
  color: var(--text-secondary);
}

.employee-exit__status--remove span {
  background: var(--text-light);
}

.employee-exit__status--retain {
  color: var(--primary);
}

.employee-exit__status--retain span {
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(247, 201, 72, .14);
}


/* =========================================
   EMPLOYEE CONTENT
========================================= */

.employee-exit__employee-content {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 315px;
}

.employee-exit__device {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--bg-light);
}

.employee-exit__device-top {
  padding: 4px 5px 9px;
  color: var(--text-light);
  font-size: 9px;
  font-weight: 600;
  text-align: center;
}

.employee-exit__device-screen {
  padding: 14px 10px;
  border-radius: 9px;
  background: var(--white);
}

.employee-exit__screen-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
  color: #6b7480;
  line-height: 1.3;
}

.employee-exit__screen-item:last-child {
  border-bottom: 0;
}

.employee-exit__screen-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--text-light);
}

.employee-exit__employee-copy p,
.employee-exit__organization-copy p {
  margin: 0 0 15px;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.7;
}

.employee-exit__employee-copy p:last-child,
.employee-exit__organization-copy p:last-child {
  margin-bottom: 0;
}

.employee-exit__employee-copy strong {
  color: var(--primary);
  font-weight: 600;
}


/* =========================================
   CONNECTOR
========================================= */

.employee-exit__connector {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.employee-exit__connector-line {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
  z-index: -1;
}

.employee-exit__connector-node {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 201, 72, .45);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 17px;
  box-shadow:
    0 6px 20px rgba(5, 59, 47, .08);
}

.employee-exit__connector span {
  max-width: 80px;
  color: var(--text-light);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}


/* =========================================
   ORGANIZATION HISTORY
========================================= */

.employee-exit__organization-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 315px;
}

.employee-exit__history {
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-light);
}

.employee-exit__history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 3px 12px;
}

.employee-exit__history-head strong {
  color: var(--primary);
  font-size: 10px;
}

.employee-exit__history-head span {
  padding: 4px 7px;
  border-radius: 5px;
  background: rgba(247, 201, 72, .13);
  color: var(--primary);
  font-size: 8px;
  font-weight: 700;
}

.employee-exit__history-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 4px;
  border-top: 1px solid var(--border-color);
}

.employee-exit__history-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  border-radius: 7px;
  background: var(--white);
  color: var(--primary);
  font-size: 8px;
  font-weight: 700;
}

.employee-exit__history-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text-primary);
  font-size: 10px;
}

.employee-exit__history-item small {
  color: var(--text-light);
  font-size: 8px;
}


/* =========================================
   RETAIN MESSAGE
========================================= */

.employee-exit__retain {
  position: relative;
  margin: 17px 0;
  padding: 13px 14px;
  border-left: 3px solid var(--secondary);
  border-radius: 8px;
  background: rgba(247, 201, 72, .10);
}

.employee-exit__retain strong {
  display: block;
  color: var(--primary);
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================
   FINAL STATEMENT
========================================= */

.employee-exit__final {
  display: grid;
  grid-template-columns: 1fr auto 1.5fr;
  align-items: center;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 19px 24px;
  border: 1px solid var(--border-color);
  border-radius: 13px;
  background: var(--bg-light);
}

.employee-exit__final-item span {
  color: var(--text-secondary);
  font-size: 13px;
}

.employee-exit__final-arrow {
  padding: 0 25px;
  color: var(--secondary-dark);
  font-size: 20px;
}

.employee-exit__final-item--strong strong {
  color: var(--primary);
  font-size: 14px;
  line-height: 1.4;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

  .employee-exit__visual {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .employee-exit__connector {
    flex-direction: row;
    justify-content: center;
  }

  .employee-exit__connector-line {
    top: 50%;
    left: 25%;
    right: 25%;
  }

  .employee-exit__connector span {
    max-width: none;
  }

  .employee-exit__panel {
    min-height: auto;
  }

}

@media (max-width: 650px) {

  .employee-exit {
    padding: 60px 16px;
  }

  .employee-exit__header {
    margin-bottom: 32px;
  }

  .employee-exit__header h2 {
    font-size: 27px;
  }

  .employee-exit__header p {
    font-size: 16px;
  }

  .employee-exit__panel {
    padding: 17px;
    border-radius: 14px;
  }

  .employee-exit__employee-content,
  .employee-exit__organization-content {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding-top: 18px;
  }

  .employee-exit__device {
    max-width: 220px;
    margin: 0 auto;
  }

  .employee-exit__final {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .employee-exit__final-arrow {
    padding: 4px 0;
    transform: rotate(90deg);
  }

}
/* =========================================================
   ORGANIZATIONAL CONTROL
   Uses existing :root variables
========================================================= */

.org-control-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: var(--bg-light);
  isolation: isolate;
}

.org-control-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* =========================================================
   SOFT BLOBS
========================================================= */

.org-control-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: -1;
}

.org-control-blob--one {
  width: 520px;
  height: 520px;
  top: -230px;
  right: -170px;
  background: rgb(212 255 246 / 66%);
}

.org-control-blob--two {
  width: 420px;
  height: 420px;
  bottom: -220px;
  left: -190px;
  background: rgb(212 255 246 / 66%);
}


/* =========================================================
   HEADER
========================================================= */

.org-control-header {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.org-control-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid rgba(5, 59, 47, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.org-control-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(247, 201, 72, 0.14);
}

.org-control-header h2 {
  margin: 20px 0 18px;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #1f2937;
}

.org-control-header h2 span {
  display: block;
  color: var(--primary);
}

.org-control-intro {
  margin: 0 auto 10px;
  max-width: 680px;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.65;
  font-weight: 600;
}

.org-control-description {
  margin: 0 auto;
  max-width: 650px;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.7;
}


/* =========================================================
   FLOW
========================================================= */

.org-control-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.org-control-flow-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 70%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(5, 59, 47, 0.16),
    transparent
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}


/* =========================================================
   CARDS
========================================================= */

.org-control-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(5, 59, 47, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 12px 35px rgba(5, 59, 47, 0.055),
    0 2px 8px rgba(5, 59, 47, 0.035);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.org-control-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 59, 47, 0.22);
  box-shadow:
    0 20px 45px rgba(5, 59, 47, 0.09),
    0 3px 10px rgba(5, 59, 47, 0.04);
}

.org-control-card--cross {
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.96),
      rgba(248,250,252,0.88)
    );
}

.org-control-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 22px;
}

.org-control-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.org-control-card-label {
  padding: 6px 11px;
  border-radius: 100px;
  background: rgba(247, 201, 72, 0.14);
  color: var(--primary);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.org-control-card h3 {
  margin: 0 0 13px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.org-control-card p {
  margin: 0;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.75;
}

.org-control-card p strong {
  color: var(--text-primary);
  font-weight: 700;
}


/* =========================================================
   PROCESS
========================================================= */

.org-control-process {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  background: var(--bg-light);
}

.org-process-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.org-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  border: 1px solid var(--border-color);
}

.org-process-item strong,
.org-process-item small {
  display: block;
}

.org-process-item strong {
  color: var(--text-primary);
  font-size: 11px;
}

.org-process-item small {
  margin-top: 2px;
  color: var(--text-light);
  font-size: 9px;
  line-height: 1.3;
}

.org-process-arrow {
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}

.org-control-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px dashed var(--border-color);
  font-size: 16px;
  color: #6b7480;
  line-height: 1.5;
}

.org-control-note span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border-radius: 50%;
  background: rgba(5, 59, 47, 0.09);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
}


/* =========================================================
   DUAL ORGANIZATION
========================================================= */

.org-dual-approval {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.org-approval-side {
  flex: 1;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--bg-light);
}

.org-approval-badge {
  display: inline-flex;
  padding: 4px 7px;
  margin-bottom: 9px;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.org-approval-side strong,
.org-approval-side small {
  display: block;
}

.org-approval-side strong {
  color: var(--text-primary);
  font-size: 11px;
}

.org-approval-side small {
  margin-top: 4px;
  color: var(--text-light);
  font-size: 9px;
}

.org-dual-icon {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--secondary-dark);
  font-weight: 800;
}

.org-dual-icon span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--secondary);
}


/* =========================================================
   ROLE GRID
========================================================= */

.org-role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.org-role {
  padding: 11px 6px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  background: var(--bg-light);
}

.org-role span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  margin: 0 auto 7px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
}

.org-role strong {
  color: var(--text-primary);
  font-size: 9px;
  line-height: 1.25;
}


/* =========================================================
   CROSS ORGANIZATION FLOW
========================================================= */

.org-cross-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px;
  border-radius: 15px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
}

.org-cross-person {
  flex: 1;
  text-align: center;
}

.org-cross-person span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 auto 7px;
  border-radius: 9px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border-color);
  font-size: 12px;
}

.org-cross-person strong,
.org-cross-person small {
  display: block;
}

.org-cross-person strong {
  color: var(--text-primary);
  font-size: 10px;
}

.org-cross-person small {
  margin-top: 3px;
  color: var(--text-light);
  font-size: 8px;
}

.org-cross-arrow {
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
}


/* =========================================================
   TRANSPARENCY
========================================================= */

.org-transparency {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 25px 28px;
  border: 1px solid rgba(247, 201, 72, 0.35);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.96),
      rgba(247,201,72,0.07)
    );
}

.org-transparency-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(247, 201, 72, 0.16);
  color: var(--secondary-dark);
  font-size: 18px;
  font-weight: 800;
}

.org-transparency-label {
  display: block;
  margin-bottom: 5px;
  color: var(--secondary-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.org-transparency-content h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 18px;
}

.org-transparency-content p {
  max-width: 720px;
  margin: 0 0 7px;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.65;
}

.org-transparency-content p:last-child {
  margin-bottom: 0;
}

.org-transparency-status {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 8px 11px;
  border-radius: 100px;
  background: rgba(5, 59, 47, 0.07);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}


/* =========================================================
   CLOSING
========================================================= */

.org-control-closing {
  margin-top: 70px;
  text-align: center;
}

.org-control-closing > p {
  margin: 0 auto 25px;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.6;
}

.org-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.org-principle {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  text-align: left;
  border: 1px solid rgba(5, 59, 47, 0.10);
  border-radius: 15px;
  background: rgba(255,255,255,0.75);
}

.org-principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
}

.org-principle strong,
.org-principle small {
  display: block;
}

.org-principle strong {
  color: var(--primary);
  font-size: 13px;
}

.org-principle small {
  margin-top: 4px;
  font-size: 16px;
  color: #6b7480;
  line-height: 1.45;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .org-control-section {
    padding: 60px 0;
  }

  .org-control-flow {
    grid-template-columns: 1fr;
  }

  .org-control-flow-line {
    display: none;
  }

  .org-principles {
    grid-template-columns: 1fr;
  }

  .org-transparency {
    grid-template-columns: auto 1fr;
  }

  .org-transparency-status {
    grid-column: 2;
    justify-self: start;
  }
}


@media (max-width: 650px) {

  .org-control-container {
    width: min(100% - 28px, 1180px);
  }

  .org-control-header {
    margin-bottom: 42px;
  }

  .org-control-header h2 {
    font-size: 32px;
  }

  .org-control-card {
    padding: 22px;
    border-radius: 18px;
  }

  .org-control-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .org-control-process,
  .org-dual-approval,
  .org-cross-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .org-process-arrow,
  .org-cross-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .org-role-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-transparency {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .org-transparency-status {
    grid-column: auto;
  }
}


/* last advantage section css */


/* =========================================================
   PROCHAT ADVANTAGE
========================================================= */

.prochat-advantage {
    position: relative;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    background: var(--bg-light);
    isolation: isolate;
}

.prochat-advantage__container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}


/* =========================================================
   BLOBS
========================================================= */

.prochat-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: -1;
}

.prochat-blob--one {
    width: 460px;
    height: 460px;
    top: -180px;
    left: -220px;
    background: rgb(212 255 246 / 66%);
    animation: prochatBlobOne 12s ease-in-out infinite alternate;
}

.prochat-blob--two {
    width: 500px;
    height: 500px;
    right: -260px;
    top: 35%;
    background: rgb(212 255 246 / 66%);
    animation: prochatBlobTwo 15s ease-in-out infinite alternate;
}

.prochat-blob--three {
    width: 380px;
    height: 380px;
    bottom: -200px;
    left: 38%;
    background: rgb(212 255 246 / 66%);
    animation: prochatBlobThree 14s ease-in-out infinite alternate;
}

@keyframes prochatBlobOne {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(80px, 50px, 0) scale(1.15);
    }
}

@keyframes prochatBlobTwo {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(-70px, -40px, 0) scale(1.12);
    }
}

@keyframes prochatBlobThree {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(40px, -50px, 0) scale(1.1);
    }
}


/* =========================================================
   INTRO
========================================================= */

.prochat-advantage__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 68px;
}

.prochat-advantage__intro-left {
    max-width: 650px;
}

.prochat-advantage__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.prochat-advantage__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 5px rgba(247, 201, 72, 0.13);
}

.prochat-advantage__intro h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #1f2937;
}

.prochat-advantage__intro h2 span {
    display: block;
    color: var(--primary-light);
}

.prochat-advantage__intro-line {
    position: relative;
    height: 1px;
    margin-bottom: 8px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-color),
        var(--primary-light)
    );
}

.prochat-advantage__intro-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    transform: translateY(-50%);
    box-shadow: 0 0 0 6px rgba(247, 201, 72, 0.12);
}


/* =========================================================
   GRID
========================================================= */

.prochat-advantage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.prochat-card {
    position: relative;
    min-height: 325px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(5, 59, 47, 0.09);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 10px 30px rgba(5, 59, 47, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.prochat-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(5, 59, 47, 0.045);
    transition: transform 0.5s ease;
}

.prochat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(5, 59, 47, 0.17);
    box-shadow:
        0 22px 55px rgba(5, 59, 47, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.prochat-card:hover::before {
    transform: scale(1.8);
}

.prochat-card__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.prochat-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(5, 59, 47, 0.12);
    border-radius: 12px;
    color: var(--primary);
    background: rgba(5, 59, 47, 0.045);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.prochat-card__status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 5px rgba(247, 201, 72, 0.12);
}

.prochat-card__content {
    position: relative;
    z-index: 2;
    margin-top: 58px;
}

.prochat-card__content h3 {
    max-width: 330px;
    margin: 0 0 14px;
    color: var(--primary-dark);
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.prochat-card__content p {
    max-width: 350px;
    margin: 0;
    font-size: 16px;
    color: #6b7480;
    line-height: 1.72;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.prochat-card--featured {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.94),
            rgba(238,248,244,0.78)
        );
}

.prochat-card--featured .prochat-card__content {
    margin-top: 44px;
}

.prochat-card__visual {
    position: absolute;
    left: 27px;
    right: 27px;
    bottom: 28px;
    height: 32px;
    opacity: 0.55;
}

.prochat-card__visual-line {
    position: absolute;
    left: 5px;
    right: 5px;
    top: 50%;
    height: 1px;
    background: var(--primary-light);
    opacity: 0.25;
}

.prochat-card__visual-node {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 30px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 0 5px rgba(11, 93, 71, 0.08);
    animation: prochatPulse 2.5s ease-in-out infinite;
}

.prochat-card__visual-node:nth-child(3) {
    animation-delay: 0.35s;
}

.prochat-card__visual-node:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes prochatPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}


/* =========================================================
   ACTIONABLE CONVERSATIONS
========================================================= */

.prochat-card__actions {
    position: absolute;
    left: 27px;
    bottom: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.prochat-card__actions span {
    padding: 6px 9px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.7);
    font-size: 10px;
    transition: all 0.3s ease;
}

.prochat-card:hover .prochat-card__actions span {
    border-color: rgba(5,59,47,0.15);
    color: var(--primary);
}


/* =========================================================
   CROSS ORGANIZATION
========================================================= */

.prochat-card__connection {
    position: absolute;
    left: 27px;
    bottom: 32px;
    display: flex;
    align-items: center;
    width: 120px;
}

.prochat-card__connection::before {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    height: 1px;
    background: var(--primary-light);
    opacity: 0.2;
}

.prochat-card__connection span,
.prochat-card__connection i {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 2px 10px rgba(5,59,47,0.15);
}

.prochat-card__connection i {
    width: 10px;
    height: 10px;
    margin: 0 37px;
    border: 0;
    background: var(--secondary);
}


/* =========================================================
   ORGANIZATION IDENTITY
========================================================= */

.prochat-card__identity {
    position: absolute;
    right: 28px;
    bottom: 27px;
    display: flex;
    align-items: center;
}

.prochat-card__identity-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(5,59,47,0.2);
    border-radius: 50%;
}

.prochat-card__identity-ring span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
}

.prochat-card__identity-line {
    width: 55px;
    height: 1px;
    margin-left: 9px;
    background: var(--primary-light);
    opacity: 0.2;
}


/* =========================================================
   DARK ACCOUNTABILITY CARD
========================================================= */

.prochat-card--dark {
    color: var(--white);
    border-color: rgba(255,255,255,0.08);
    background: var(--hero-gradient);
    box-shadow: 0 20px 50px rgba(2,38,31,0.14);
}

.prochat-card--dark::before {
    background: rgba(255,255,255,0.045);
}

.prochat-card--dark .prochat-card__number {
    color: var(--secondary-light);
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
}

.prochat-card--dark .prochat-card__content h3 {
    color: var(--white);
}

.prochat-card--dark .prochat-card__content p {
    color: rgba(255,255,255,0.68);
}

.prochat-card__accountability {
    position: absolute;
    right: 27px;
    bottom: 27px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 42px;
}

.prochat-card__accountability div {
    width: 7px;
    border-radius: 5px 5px 2px 2px;
    background: var(--secondary);
    animation: prochatBars 2.5s ease-in-out infinite;
}

.prochat-card__accountability div:nth-child(1) {
    height: 18px;
}

.prochat-card__accountability div:nth-child(2) {
    height: 30px;
    animation-delay: 0.2s;
}

.prochat-card__accountability div:nth-child(3) {
    height: 40px;
    animation-delay: 0.4s;
}

@keyframes prochatBars {
    0%, 100% {
        transform: scaleY(0.75);
    }

    50% {
        transform: scaleY(1);
    }
}


/* =========================================================
   TASK MANAGEMENT
========================================================= */

.prochat-card__task {
    position: absolute;
    left: 27px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prochat-card__check {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-light);
    border-radius: 6px;
}

.prochat-card__check::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--primary-light);
    border-bottom: 2px solid var(--primary-light);
    transform: rotate(45deg);
}

.prochat-card__task > span:not(.prochat-card__check) {
    width: 32px;
    height: 4px;
    border-radius: 5px;
    background: var(--border-color);
}


/* =========================================================
   MEETINGS
========================================================= */

.prochat-card__meeting {
    position: absolute;
    right: 28px;
    bottom: 27px;
    width: 58px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 7px 20px rgba(5,59,47,0.06);
}

.prochat-card__meeting-head {
    height: 5px;
    margin-bottom: 6px;
    border-radius: 5px;
    background: var(--secondary);
}

.prochat-card__meeting div:not(.prochat-card__meeting-head) {
    height: 3px;
    margin-top: 4px;
    border-radius: 5px;
    background: var(--border-color);
}


/* =========================================================
   CALENDAR
========================================================= */

.prochat-card__calendar {
    position: absolute;
    right: 27px;
    bottom: 27px;
    display: grid;
    grid-template-columns: repeat(4, 7px);
    gap: 5px;
}

.prochat-card__calendar span {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--border-color);
}

.prochat-card__calendar span:nth-child(2),
.prochat-card__calendar span:nth-child(7) {
    background: var(--secondary);
}

.prochat-card__calendar span:nth-child(4) {
    background: var(--primary-light);
}


/* =========================================================
   GROUP DISCIPLINE
========================================================= */

.prochat-card__group {
    position: absolute;
    left: 27px;
    bottom: 27px;
    display: flex;
}

.prochat-card__group span {
    width: 24px;
    height: 24px;
    margin-right: -6px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--primary-light);
}

.prochat-card__group span:nth-child(2) {
    background: var(--secondary);
}

.prochat-card__group span:nth-child(3) {
    background: var(--primary);
}


/* =========================================================
   COMMUNICATION CONTINUITY
========================================================= */

.prochat-card__continuity {
    position: absolute;
    left: 27px;
    right: 27px;
    bottom: 29px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prochat-card__continuity-line {
    position: absolute;
    left: 4px;
    right: 4px;
    height: 1px;
    background: var(--primary-light);
    opacity: 0.18;
}

.prochat-card__continuity span {
    position: relative;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-light);
}

.prochat-card__continuity span:last-child {
    background: var(--secondary);
    border-color: var(--secondary);
}


/* =========================================================
   CONNECTED BUSINESS CONTEXT
========================================================= */

.prochat-card--wide {
    grid-column: span 2;
    min-height: 280px;
}

.prochat-card--wide .prochat-card__content {
    max-width: 56%;
}

.prochat-card__context {
    position: absolute;
    right: 55px;
    bottom: 30px;
    width: 210px;
    height: 100px;
}

.prochat-card__context-card {
    position: absolute;
    width: 135px;
    height: 76px;
    border: 1px solid rgba(5,59,47,0.11);
    border-radius: 12px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 10px 25px rgba(5,59,47,0.06);
}

.prochat-card__context-card:nth-child(1) {
    left: 0;
    top: 20px;
    transform: rotate(-7deg);
}

.prochat-card__context-card:nth-child(2) {
    left: 38px;
    top: 8px;
    transform: rotate(2deg);
}

.prochat-card__context-card:nth-child(3) {
    left: 75px;
    top: 0;
    transform: rotate(8deg);
    background:
        linear-gradient(
            135deg,
            rgba(5,59,47,0.95),
            rgba(11,93,71,0.82)
        );
}


/* =========================================================
   AI INTELLIGENCE
========================================================= */

.prochat-card--intelligence {
    min-height: 280px;
    border-color: rgba(5,59,47,0.13);
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(247,201,72,0.16),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #edf7f3 100%
        );
}

.prochat-card--intelligence .prochat-card__content {
    max-width: 68%;
    margin-top: 42px;
}

.prochat-card__ai {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 24px;
    padding: 0 8px;
    border: 1px solid rgba(247,201,72,0.35);
    border-radius: 7px;
    color: var(--primary-dark);
    background: rgba(247,201,72,0.16);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.prochat-card__intelligence {
    position: absolute;
    right: 34px;
    bottom: 34px;
    width: 100px;
    height: 100px;
}

.prochat-card__intelligence-orbit {
    position: absolute;
    inset: 15px;
    border: 1px dashed rgba(5,59,47,0.2);
    border-radius: 50%;
    animation: prochatOrbit 8s linear infinite;
}

.prochat-card__intelligence-orbit::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 15px rgba(247,201,72,0.5);
}

.prochat-card__intelligence::before {
    content: "AI";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: 10px;
    font-weight: 800;
    transform: translate(-50%, -50%);
    box-shadow:
        0 10px 30px rgba(5,59,47,0.22),
        0 0 0 8px rgba(5,59,47,0.06);
}

.prochat-card__intelligence-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-light);
}

.dot-1 {
    left: 4px;
    top: 48%;
}

.dot-2 {
    right: 7px;
    top: 28%;
    background: var(--secondary);
}

.dot-3 {
    right: 16px;
    bottom: 8px;
}

@keyframes prochatOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   SCROLL REVEAL READY STATE
========================================================= */

.prochat-card {
    animation: prochatCardReveal 0.8s both;
}

.prochat-card:nth-child(1) {
    animation-delay: 0.05s;
}

.prochat-card:nth-child(2) {
    animation-delay: 0.10s;
}

.prochat-card:nth-child(3) {
    animation-delay: 0.15s;
}

.prochat-card:nth-child(4) {
    animation-delay: 0.20s;
}

.prochat-card:nth-child(5) {
    animation-delay: 0.25s;
}

.prochat-card:nth-child(6) {
    animation-delay: 0.30s;
}

.prochat-card:nth-child(7) {
    animation-delay: 0.35s;
}

.prochat-card:nth-child(8) {
    animation-delay: 0.40s;
}

.prochat-card:nth-child(9) {
    animation-delay: 0.45s;
}

.prochat-card:nth-child(10) {
    animation-delay: 0.50s;
}

.prochat-card:nth-child(11) {
    animation-delay: 0.55s;
}

.prochat-card:nth-child(12) {
    animation-delay: 0.60s;
}

@keyframes prochatCardReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .prochat-advantage {
        padding: 60px 0;
    }

    .prochat-advantage__intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prochat-advantage__intro-line {
        display: none;
    }

    .prochat-advantage__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prochat-card--wide {
        grid-column: span 2;
    }

    .prochat-card--intelligence {
        grid-column: span 2;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .prochat-advantage {
        padding: 60px 0;
    }

    .prochat-advantage__container {
        width: min(100% - 30px, 560px);
    }

    .prochat-advantage__intro {
        margin-bottom: 42px;
    }

    .prochat-advantage__eyebrow {
        margin-bottom: 17px;
    }

    .prochat-advantage__intro h2 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .prochat-advantage__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .prochat-card {
        min-height: 290px;
        padding: 23px;
        border-radius: 20px;
    }

    .prochat-card__content {
        margin-top: 48px;
    }

    .prochat-card__content h3 {
        font-size: 20px;
    }

    .prochat-card__content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .prochat-card--wide,
    .prochat-card--intelligence {
        grid-column: span 1;
    }

    .prochat-card--wide .prochat-card__content {
        max-width: 100%;
    }

    .prochat-card--intelligence .prochat-card__content {
        max-width: 100%;
    }

    .prochat-card__context {
        opacity: 0.45;
        right: 20px;
        bottom: 22px;
        transform: scale(0.8);
        transform-origin: right bottom;
    }

    .prochat-card__intelligence {
        opacity: 0.45;
        right: 20px;
        bottom: 20px;
        transform: scale(0.8);
        transform-origin: right bottom;
    }

    .prochat-blob--one {
        width: 300px;
        height: 300px;
    }

    .prochat-blob--two {
        width: 320px;
        height: 320px;
    }

    .prochat-blob--three {
        width: 280px;
        height: 280px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .prochat-card,
    .prochat-blob,
    .prochat-card__visual-node,
    .prochat-card__accountability div,
    .prochat-card__intelligence-orbit {
        animation: none !important;
    }

    .prochat-card {
        opacity: 1;
        transform: none;
    }

    .prochat-card:hover {
        transform: none;
    }
}