/* ===============================
   BUSINESS IDENTITY SECTION
================================ */

.identity-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background: #f8fafc;
}

.identity-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
}

/* BLOBS */

.identity-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.identity-blob--one {
  width: 520px;
  height: 520px;
  top: 0px;
  right: -180px;
  background: #ffd64d59;
}

.identity-blob--two {
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: -160px;
  background: #ffd64d59;
}

/* HEADER */

.identity-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.identity-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #008f68;
}

.identity-header h2 {
  margin: 0 0 20px;
  color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
  font-weight: 700;
}

.identity-header p,
.identity-card p,
.identity-feature p,
.identity-note p,
.flow-item p,
.privacy-content p,
.identity-footer p {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.identity-header strong,
.identity-card strong,
.identity-feature strong,
.identity-note strong,
.flow-item strong,
.privacy-content strong {
  color: #053b2f;
}

/* CONTACT GRID */

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.identity-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e3eee9;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(5, 59, 47, .05);
  transition: transform .35s ease, box-shadow .35s ease;
}

.identity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(5, 59, 47, .1);
}

.identity-number {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e9faf4;
  color: #008f68;
  font-size: 13px;
  font-weight: 700;
}

.identity-card h3,
.identity-feature h3,
.identity-privacy h3 {
  margin: 0 0 10px;
  color: #053b2f;
  font-size: 21px;
  line-height: 1.3;
}

/* EXTERNAL */

.identity-feature {
  padding: 30px;
  margin-bottom: 24px;
  border-radius: 22px;
  background: #053b2f;
  box-shadow: 0 20px 50px rgba(5, 59, 47, .12);
}

.identity-feature .identity-label {
  color: #f7c948;
}

.identity-feature h3 {
  color: #ffffff;
  font-size: 27px;
}

.identity-feature > p {
  max-width: 1000px;
  color: rgba(255,255,255,.78);
}

.identity-feature strong {
  color: #ffffff;
}

.identity-feature-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.identity-feature-top .identity-number {
  background: rgba(247,201,72,.15);
  color: #f7c948;
}

/* FLOW */

.identity-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.flow-item {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.06);
}

.flow-item > span {
  display: block;
  margin-bottom: 8px;
  color: #f7c948;
  font-size: 12px;
  font-weight: 700;
}

.flow-item p {
  color: rgba(255,255,255,.72);
  margin: 0;
}

.identity-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  margin-top: 22px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255,255,255,.08);
}

.identity-note strong {
  color: #f7c948;
}

.identity-note p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

/* PRIVACY */

.identity-privacy {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #e3eee9;
  border-radius: 22px;
  background: #ffffff;
}

.privacy-heading h3 {
  font-size: 28px;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

/* FOOTER */

.identity-footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 20px;
  text-align: center;
}

.identity-footer p {
  margin: 0;
  color: #053b2f;
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .identity-grid,
  .identity-flow,
  .identity-privacy {
    grid-template-columns: 1fr;
  }

  .identity-privacy {
    gap: 20px;
  }

  .identity-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .identity-section {
    padding: 60px 16px;
  }

 

  .identity-card,
  .identity-feature,
  .identity-privacy {
    padding: 20px;
  }

  .identity-feature h3,
  .privacy-heading h3 {
    font-size: 23px;
  }

  .identity-card {
    gap: 12px;
  }
}



/* continues communication  */
.continuous-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background: #f7fdfb;
}

.continuous-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
}

.continuous-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -230px;
  right: -180px;
  border-radius: 50%;
  background: #e9faf4;
  filter: blur(90px);
}

.continuous-heading {
  max-width: 850px;
  margin-bottom: 45px;
}

.continuous-heading span {
  color: #008f68;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.continuous-heading h2 {
  margin: 12px 0 0;
 color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
}

.continuous-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.continuous-copy h3 {
  margin: 0 0 18px;
  color: #053b2f;
  font-size: 24px;
}

.continuous-copy p,
.continuous-bottom p {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.continuous-copy strong {
  color: #053b2f;
}

.continuous-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.continuous-copy li {
  position: relative;
  padding: 9px 0 9px 25px;
  color: #1f2937;
  font-size: 16px;
}

.continuous-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #008f68;
}

/* THREAD */

.communication-visual {
  position: relative;
  padding: 25px 0;
}

.thread-line {
  position: absolute;
  left: 15px;
  top: 35px;
  bottom: 35px;
  width: 2px;
  background: #d7ebe4;
  transform-origin: top;
}

.thread-item {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 85px;
  padding-left: 0;
}

.thread-item i {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border: 6px solid #f8fafc;
  border-radius: 50%;
  background: #008f68;
  box-shadow: 0 0 0 1px #b9ddd2;
}

.thread-item div {
  flex: 1;
  padding: 17px 20px;
  border: 1px solid #e3eee9;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(5, 59, 47, .05);
}

.thread-item span {
  color: #053b2f;
  font-size: 15px;
  font-weight: 600;
}

.thread-new div {
  border-color: #008f68;
  background: #e9faf4;
}

/* BOTTOM */

.continuous-bottom {
  max-width: 900px;
  margin: 55px auto 0;
  text-align: center;
}

.continuous-bottom h3 {
  margin: 25px 0 8px;
  color: #053b2f;
  font-size: 28px;
}

.continuous-bottom p:last-child {
  margin-bottom: 0;
  color: #6b7280;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .continuous-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }


  .continuous-section {
    padding: 60px 16px;
  }

  .continuous-bottom {
    margin-top: 40px;
  }
}


/* what change fast */
/* ================================
   SEE WHAT HAS CHANGED
================================ */

.changes-section {
  position: relative;
  overflow: hidden;
  padding: 70px 20px;
  background: #fff;
}

.changes-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------- Heading ---------- */

.changes-head {
  max-width: 750px;
  margin-bottom: 28px;
}

.changes-head span {
  display: block;
  color: #008f68;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.changes-head h2 {
  margin: 10px 0 0;
 color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
}

/* ---------- Intro ---------- */

.changes-copy {
  max-width: 760px;
  margin-bottom: 55px;
}

.changes-copy p,
.changes-footer p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

/* ---------- Timeline ---------- */

.changes-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 35px;
}

/* Animated line */

.flow-line {
  position: absolute;
  top: 15px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: #d7ebe4;
  transform: scaleX(0);
  transform-origin: left center;
}

/* ---------- Cards ---------- */

.flow-card {
  position: relative;
  min-height: 90px;
  padding: 22px 20px;

  border: 1px solid #e3eee9;
  border-radius: 14px;

  background: #fff;

  box-shadow: 0 8px 25px rgba(5, 59, 47, 0.05);

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

.flow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(5, 59, 47, 0.09);
}

.flow-card span {
    position: absolute;
    top: -36px;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translateX(-50%);
    border: 5px solid #fff;
    border-radius: 50%;
    background: #ffd64d;
    box-shadow: 0 0 0 1px #d6cca8;
}

.flow-card p {
  margin: 0;
  color: #053b2f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

/* New update */

.flow-new {
  border-color: #008f68;
  background: #e9faf4;
}

/* Earlier communication */

.flow-old {
  opacity: 0.55;
}

/* ---------- Bottom Content ---------- */

.changes-footer {
  max-width: 900px;
  margin: 55px auto 0;
  text-align: center;
}

.changes-footer h3 {
  margin: 20px 0 8px;
  color: #053b2f;
  font-size: 28px;
  line-height: 1.25;
}

.changes-footer p:last-child {
  margin: 0;
}

/* ---------- Mobile ---------- */

@media (max-width: 800px) {

  .changes-section {
    padding: 55px 18px;
  }


  .changes-flow {
    grid-template-columns: 1fr 1fr;
    gap: 40px 15px;
  }

  .flow-line {
    display: none;
  }

  .flow-card span {
    top: -14px;
  }

  .changes-footer {
    margin-top: 45px;
  }

  .changes-footer h3 {
    font-size: 24px;
  }
}

@media (max-width: 520px) {

  .changes-flow {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow-card {
    min-height: auto;
  }
}




.smart-section {
  padding: 80px 20px;
  background: #fff;
}

.smart-wrap {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Visual */

.smart-visual {
  min-height: 390px;
  padding: 45px;
  border: 1px solid #e3eee9;
  border-radius: 24px;
  background: #f8fcfa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 45px rgba(5,59,47,.06);
}

.smart-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: #e9faf4;
  color: #008f68;
  display: grid;
  place-items: center;
  font-size: 38px;
}

.smart-visual > strong {
  color: #053b2f;
  font-size: 21px;
}

.smart-visual > span {
  margin-top: 5px;
  color: #6b7280;
  font-size: 13px;
}

.smart-message {
  margin-top: 35px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e3eee9;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #053b2f;
  font-size: 13px;
}

.smart-message i {
  color: #008f68;
}

/* Content */

.smart-label {
  color: #008f68;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.smart-content h2 {
  margin: 10px 0 22px;
 color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
}

.smart-content p {
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.smart-content strong {
  color: #053b2f;
}

.smart-content h3 {
  margin: 30px 0 8px;
  color: #053b2f;
  font-size: 25px;
  line-height: 1.25;
}

@media (max-width: 800px) {
  .smart-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .smart-visual {
    min-height: 320px;
  }
}




/* COMMUNICATION → ACTION */

.action-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background: #f8fafc;
}

.action-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.action-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
}

.action-blob--1 {
  top: -180px;
  left: -120px;
  background: #0b5d47;
}

.action-blob--2 {
  right: -150px;
  bottom: -180px;
  background: #f7c948;
}

.action-header h2 {
  margin: 12px 0 10px;
 color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
 
}

.action-header p,
.action-description,
.action-intro {
  margin: 8px auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
}

.action-label {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  background: #e9faf4;
  color: #053b2f;
  font-size: 13px;
  font-weight: 600;
}

.action-subtitle {
  font-size: 19px !important;
  font-weight: 600;
  color: #053b2f !important;
}

.action-types {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px auto 12px;
}

.action-types span {
  padding: 9px 17px;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  background: #fff;
  color: #053b2f;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(5,59,47,.06);
}

.action-intro strong,
.action-description strong,
.accountability strong {
  color: #053b2f;
}

/* FLOW */

.action-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 42px auto;
}

.comm-card {
  width: 155px;
  min-height: 105px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(5,59,47,.08);
}

.comm-card strong {
  color: #053b2f;
  font-size: 15px;
  line-height: 1.35;
}

.flow-icon {
  width: 30px;
  height: 30px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #053b2f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.comm-card--complete .flow-icon {
  background: #f7c948;
  color: #053b2f;
}

.comm-line {
  width: 45px;
  height: 2px;
  background: #0b5d47;
  position: relative;
  transform-origin: left;
}

.flow-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border-left: 7px solid #0b5d47;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* RESULTS */

.action-description {
  max-width: 850px;
}

.action-result {
  max-width: 900px;
  margin: 30px auto 20px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(5,59,47,.06);
}

.result-heading {
  margin-bottom: 15px;
  color: #053b2f;
  font-weight: 700;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-radius: 12px;
  background: #f8fafc;
  text-align: left;
}

.result-item span {
  color: #0b5d47;
  font-weight: 700;
}

.result-item p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.accountability {
  margin-top: 22px;
  font-size: 17px;
  color: #6b7280;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .action-flow {
    flex-wrap: wrap;
    gap: 12px;
  }

  .comm-line {
    display: none;
  }

  .comm-card {
    width: 170px;
  }

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

@media (max-width: 600px) {
  .action-section {
    padding: 50px 16px;
  }

  .action-flow {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .comm-card {
    width: auto;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }
}

/* cc-bcc section css */

.ccbcc-section {
  padding: 60px 20px;
  background: var(--bg-light);
  overflow: hidden;
}

.ccbcc-container {
  max-width: 1300px;
  margin: auto;
}

.ccbcc-head {
  max-width: 720px;
  margin-bottom: 45px;
}

.ccbcc-label {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 30px;
  background: #e9f5f1;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.ccbcc-head h2 {
  margin: 14px 0 10px;
 color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
  
}

.ccbcc-head p,
.ccbcc-info p,
.ccbcc-bottom p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.ccbcc-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
  min-height: 430px;
}

.ccbcc-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 15%;
  top: 0;
  border-radius: 48% 52% 60% 40%;
  background: #dff3ec;
  filter: blur(2px);
  opacity: .7;
  z-index: 0;
}

.ccbcc-main,
.ccbcc-info {
  position: relative;
  z-index: 1;
}

.ccbcc-record {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(5,59,47,.10);
}

.record-top {
  display: flex;
  justify-content: space-between;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.record-line {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
}

.avatar {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.record-line strong,
.recipient strong {
  display: block;
  color: var(--black);
  font-size: 15px;
}

.record-line small,
.recipient small {
  color: var(--text-light);
  font-size: 12px;
}

.record-history {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.record-history span {
  padding: 7px 10px;
  border-radius: 8px;
  background: #f1f7f5;
  color: var(--primary-light);
  font-size: 12px;
}

.recipient-flow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.recipient {
  flex: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  box-shadow: 0 8px 25px rgba(5,59,47,.07);
}

.recipient > i {
  color: var(--primary-light);
}

.flow-arrow {
  color: var(--secondary-dark);
  font-size: 18px;
}

.info-intro {
  margin-bottom: 22px;
}

.info-intro span {
  color: var(--secondary-dark);
  font-size: 14px;
  font-weight: 700;
}

.info-intro p {
  margin-top: 8px;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-item {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px 17px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
}

.info-item i {
  min-width: 30px;
  color: var(--primary-light);
}

.ccbcc-bottom {
  margin-top: 55px;
  padding: 30px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
}

.ccbcc-bottom p,
.ccbcc-bottom small {
  color: rgba(255,255,255,.75);
}

.ccbcc-statement {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.ccbcc-statement strong {
  color: var(--secondary);
}

.ccbcc-bottom small {
  font-size: 13px;
}

@media (max-width: 850px) {
  .ccbcc-flow {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ccbcc-blob {
    left: 5%;
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 600px) {
  .ccbcc-section {
    padding: 60px 16px;
  }

  .recipient-flow {
    flex-direction: column;
  }

  .recipient,
  .flow-arrow {
    width: 100%;
  }

  .flow-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .ccbcc-bottom {
    padding: 24px 18px;
  }

  .ccbcc-statement {
    font-size: 17px;
  }
}


/* 8.	Communication → My Diary → Task Manager */
.procom-action-section{
  padding:100px 20px;
  background:#fff;
  overflow:hidden;
}

.procom-action-container{
  max-width:1120px;
  margin:auto;
}

.procom-action-heading{
  text-align:center;
  margin-bottom:50px;
}

.procom-action-heading h2{
  margin:0;
color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height:1.15;

}

.procom-action-heading p{
  margin:15px 0 0;
  font-size:17px;
  color:#6b7280;
}


/* STORY */

.procom-action-story{
  display:grid;
  grid-template-columns:220px 1fr;
  min-height:400px;
  border:1px solid #e3eee9;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 60px rgba(2,65,48,.07);
}


/* NAV */

.procom-action-navigation{
  padding:45px 16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:7px;
  background:#f8fafb;
  border-right:1px solid #e3eee9;
}

.procom-action-nav{
  min-height:44px;
  padding:0 12px;
  display:flex;
  align-items:center;
  gap:11px;
  border-radius:10px;
  cursor:pointer;
  color:#98a1ad;
  transition:.3s ease;
}

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

.procom-action-nav strong{
  font-size:14px;
}

.procom-action-nav:hover,
.procom-action-nav.active{
  color:#024130;
  background:#e7eeec;
}

.procom-action-nav.active span{
  color:#f6c84c;
}


/* CONTENT */

.procom-action-content{
  position:relative;
  padding:55px 65px;
}

.procom-action-intro,
.procom-action-task-text{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:#6b7280;
}

.procom-action-intro strong,
.procom-action-task-text strong{
  color:#024130;
}

.procom-action-panels{
  position:relative;
  height:150px;
  margin:25px 0 15px;
}

.procom-action-panel{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
}

.procom-action-panel.active{
  opacity:1;
  visibility:visible;
  transform:none;
}

.procom-action-number{
  position:absolute;
  top:-25px;
  right:0;
  font-size:75px;
  line-height:1;
  font-weight:700;
  color:#eef2f2;
}

.procom-action-icon{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  border-radius:14px;
  background:#024130;
  color:#f6c84c;
  font-size:19px;
  font-weight:700;
}

.procom-action-panel h3{
  margin:0;
  font-size:30px;
  color:#071d2b;
}


/* FLOW */

.procom-action-flow{
  margin-top:28px;
  padding:28px;
  border:1px solid #e3eee9;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 35px rgba(2,65,48,.05);
}

.procom-action-flow p,
.procom-action-linked p,
.procom-action-final p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:#6b7280;
}

.procom-action-flow strong{
  color:#024130;
}

.procom-flow-steps{
  margin-top:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.procom-flow-step{
  padding:12px 17px;
  border-radius:11px;
  background:#f1f6f4;
  color:#024130;
  font-size:14px;
  font-weight:600;
}

.procom-flow-arrow{
  color:#059669;
  font-size:18px;
}


/* LINKED COMMUNICATION */

.procom-action-linked{
  margin-top:20px;
  padding:22px 26px;
  display:flex;
  align-items:center;
  gap:15px;
  border:1px solid #e3eee9;
  border-radius:18px;
  background:#fff;
}

.procom-linked-icon{
  width:40px;
  height:40px;
  flex:0 0 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:11px;
  background:#024130;
  color:#f6c84c;
}


/* FINAL */

.procom-action-final{
  margin-top:20px;
  padding:30px;
  border-radius:20px;
  background:#f8fafb;
}

.procom-action-final h3{
  margin:0 0 12px;
  font-size:24px;
  color:#071d2b;
}


/* RESPONSIVE */

@media(max-width:768px){

  .procom-action-section{
    padding:70px 16px;
  }

  .procom-action-story{
    grid-template-columns:1fr;
  }

  .procom-action-navigation{
    padding:12px;
    flex-direction:row;
    overflow-x:auto;
    border-right:0;
    border-bottom:1px solid #e3eee9;
  }

  .procom-action-nav{
    flex:0 0 auto;
  }

  .procom-action-content{
    padding:40px 25px;
  }

  .procom-action-number{
    font-size:60px;
  }

  .procom-flow-steps{
    flex-direction:column;
  }

  .procom-flow-arrow{
    transform:rotate(90deg);
  }

  .procom-action-linked{
    align-items:flex-start;
  }

}

@media(max-width:480px){

  
  .procom-action-heading p{
    font-size:15px;
  }

  .procom-action-content{
    padding:35px 20px;
  }

  .procom-action-panel h3{
    font-size:26px;
  }

  .procom-action-final,
  .procom-action-flow{
    padding:22px;
  }

}



/* 9.	Management Visibility & Communication Accountability */
.mv-section {
  padding: 60px 20px;
  background: var(--white);
  overflow: hidden;
}

.mv-container {
  max-width: 1300px;
  margin: auto;
}

.mv-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.mv-heading h2 {
  margin: 0 0 12px;
 color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
}

.mv-heading p,
.mv-info p,
.mv-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.mv-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mv-blob {
  position: absolute;
  width: 430px;
  height: 430px;
  left: 8%;
  border-radius: 50%;
  background: #e8f5f0;
  z-index: 0;
}

.mv-visual,
.mv-info {
  position: relative;
  z-index: 1;
}

.mv-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(5,59,47,.10);
}

.mv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.mv-actions span {
  padding: 9px 13px;
  border-radius: 9px;
  background: #eef7f4;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.mv-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 25px;
}

.mv-list div {
  padding: 15px 18px;
  border: 1px solid var(--border-color);
  border-radius: 11px;
  color: var(--text-primary);
  background: var(--white);
  font-size: 15px;
}

.mv-footer {
  margin-top: 50px;
  padding: 28px;
  border-radius: 18px;
  background: var(--primary);
  text-align: center;
}

.mv-footer strong {
  color: var(--white);
  font-size: 20px;
}

@media (max-width: 800px) {
  .mv-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-blob {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 500px) {
  .mv-section {
    padding: 60px 16px;
  }

  .mv-card {
    padding: 22px;
  }

  .mv-footer {
    padding: 22px 16px;
  }

  .mv-footer strong {
    font-size: 17px;
  }
}

/* 10.	Communication That Knows Its Business Context */
.context-section {
  padding: 60px 20px;
  background: var(--bg-light);
  overflow: hidden;
}

.context-container {
  max-width: 1300px;
  margin: auto;
}

.context-head {
  text-align: center;
  margin-bottom: 50px;
}

.context-head h2 {
  margin: 0 0 12px;
  color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
}

.context-head p,
.context-copy p,
.context-history > p,
.context-final p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.context-head p {
  margin: 0 0 22px;
}

.context-chain {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.context-chain span {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--white);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.context-chain i {
  color: var(--secondary-dark);
}

.context-main {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.context-orbit {
  position: relative;
  height: 430px;
  display: grid;
  place-items: center;
}

.context-blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #e1f3ed;
}

.context-center {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(5,59,47,.18);
}

.context-center i {
  font-size: 25px;
  color: var(--secondary);
}

.context-center strong {
  font-size: 15px;
}

.context-node {
  position: absolute;
  z-index: 3;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(5,59,47,.08);
}

.node-project { top: 25px; left: 50%; transform: translateX(-50%); }
.node-document { right: 15px; top: 48%; }
.node-decision { bottom: 25px; left: 50%; transform: translateX(-50%); }
.node-action { left: 15px; top: 48%; }

.context-copy {
  display: grid;
  gap: 18px;
}

.context-copy p {
  margin: 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
}

.context-history {
  margin-top: 55px;
}

.context-history > p {
  margin-bottom: 18px;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.history-grid div {
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 14px;
}

.context-final {
  margin-top: 50px;
  padding: 30px;
  text-align: center;
  background: var(--primary);
  border-radius: 20px;
}

.context-final strong {
  color: var(--white);
  font-size: 21px;
}

.context-final p {
  max-width: 900px;
  margin: 12px auto 0;
  color: rgba(255,255,255,.75);
}

@media (max-width: 850px) {
  .context-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .history-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 550px) {
  .context-section {
    padding: 60px 16px;
  }

  .context-chain {
    gap: 7px;
  }

  .context-chain i {
    display: none;
  }

  .context-orbit {
    height: 350px;
  }

  .context-blob {
    width: 290px;
    height: 290px;
  }

  .context-center {
    width: 125px;
    height: 125px;
  }

  .history-grid {
    grid-template-columns: 1fr;
  }

  .context-final strong {
    font-size: 18px;
  }
}

/* ai communication */
.procom-ai-section {
padding: 100px 20px;
overflow: hidden;
}

.procom-ai-section__container {
max-width: 1200px;
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.procom-ai-section__heading h2 {
margin: 0 0 25px;
color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
line-height: 1.15;

}

.procom-ai-section__heading span {
color: #059669;
}

.procom-ai-section__text p {
margin: 0 0 18px;
font-size: 16px;
line-height: 1.7;
color: #6b7280;
}

.procom-ai-section__visual {
display: flex;
justify-content: center;
}

.procom-ai-section__image-wrap {
width: 100%;
max-width: 520px;
}

.procom-ai-section__image {
width: 100%;
display: block;
}

.procom-ai-section__statement {
grid-column: 1 / -1;
margin-top: 20px;
padding: 25px;
text-align: center;
font-size: 18px;
line-height: 1.5;
color: #024130;
}

/* ANIMATION */
.procom-ai-section__content,
.procom-ai-section__visual,
.procom-ai-section__statement {
opacity: 0;
transform: translateY(40px);
transition: opacity .8s ease, transform .8s ease;
}

.procom-ai-section.is-visible .procom-ai-section__content,
.procom-ai-section.is-visible .procom-ai-section__visual,
.procom-ai-section.is-visible .procom-ai-section__statement {
opacity: 1;
transform: translateY(0);
}

.procom-ai-section.is-visible .procom-ai-section__visual {
transition-delay: .15s;
}

.procom-ai-section.is-visible .procom-ai-section__statement {
transition-delay: .3s;
}

@media (max-width: 768px) {
.procom-ai-section {
padding: 70px 20px;
}

.procom-ai-section__container {
grid-template-columns: 1fr;
gap: 40px;
}

.procom-ai-section__statement {
grid-column: auto;
font-size: 16px;
}
}


/* <!-- 12.	Organizational Control Over Communication Deletion --> */

.delete-section {
  padding: 60px 20px;
  background: var(--white);
  overflow: hidden;
}

.delete-container {
  max-width: 1300px;
  margin: auto;
}

.delete-head {
  max-width: 800px;
  margin-bottom: 40px;
}

.delete-head > span {
  color: var(--secondary-dark);
  font-size: 13px;
  font-weight: 700;
}

.delete-head h2 {
  margin: 10px 0;
 color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
}

.delete-head p,
.delete-card p,
.delete-notice p,
.delete-result p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.delete-intro {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 45px 0;
}

.delete-blob {
  position: absolute;
  width: 300px;
  height: 150px;
  top: -45px;
  border-radius: 50%;
  background: #e4f4ee;
  filter: blur(3px);
}

.delete-control {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 15px;
  align-items: center;
  max-width: 750px;
  padding: 22px 28px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 15px 40px rgba(5,59,47,.09);
}

.delete-control i {
  min-width: 42px;
  color: var(--secondary-dark);
  font-size: 24px;
}

.delete-flow {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: 20px;
  align-items: center;
}

.delete-card {
  padding: 25px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--bg-light);
}

.delete-arrow {
  text-align: center;
  color: var(--secondary-dark);
  font-size: 25px;
}

.org-card {
  background: var(--white);
}

.orgs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.orgs div {
  flex: 1;
  padding: 12px;
  border-radius: 9px;
  background: #eef7f4;
  color: var(--primary);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.delete-notice {
  margin-top: 25px;
  padding: 23px;
  border-left: 4px solid var(--secondary);
  border-radius: 12px;
  background: #fffaf0;
}

.delete-result {
  margin-top: 45px;
  padding: 30px;
  border-radius: 20px;
  background: var(--primary);
  text-align: center;
}

.delete-result p {
  color: rgba(255,255,255,.75);
}

.delete-values {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.delete-values span {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.delete-values span:last-child {
  color: var(--secondary);
}

@media (max-width: 800px) {
  .delete-flow {
    grid-template-columns: 1fr;
  }

  .delete-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 550px) {
  .delete-section {
    padding: 60px 16px;
  }

  .delete-control {
    padding: 20px;
  }

  .delete-flow {
    gap: 10px;
  }

  .orgs {
    flex-direction: column;
  }
}

/* 13.	The ProCom Advantage */
.pcadv-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background: #f8fafc;
}

.pcadv-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
}

.pcadv-title {
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
}

.pcadv-title span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 30px;
  background: #e9faf4;
  color: #053b2f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.pcadv-title h2 {
  margin: 0 0 12px;
 color: #1f2937;
 font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.2;
}

.pcadv-title p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

.pcadv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pcadv-card {
  position: relative;
  display: flex;
  gap: 15px;
  padding: 22px;
  min-height: 145px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(5,59,47,.06);
  opacity: 1;
  visibility: visible;
}

.pcadv-card > i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e9faf4;
  color: #053b2f;
}

.pcadv-card b {
  position: absolute;
  top: 10px;
  right: 14px;
  color: #9ca3af;
  font-size: 10px;
}

.pcadv-card h3 {
  margin: 0 0 7px;
  color: #053b2f;
  font-size: 17px;
}

.pcadv-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.pcadv-card:hover {
  transform: translateY(-5px);
  border-color: #0b5d47;
  transition: .3s ease;
}

.pcadv-ai {
  grid-column: 1 / -1;
  background: #053b2f;
}

.pcadv-ai h3,
.pcadv-ai p {
  color: #ffffff;
}

.pcadv-ai > i {
  background: #f7c948;
  color: #053b2f;
}

.pcadv-blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .4;
  pointer-events: none;
}

.pcadv-blob-a {
  top: -100px;
  left: -100px;
  background: #d8f5eb;
}

.pcadv-blob-b {
  right: -100px;
  bottom: -100px;
  background: #fff0b8;
}

@media (max-width: 700px) {
  .pcadv-section {
    padding: 50px 16px;
  }

  .pcadv-grid {
    grid-template-columns: 1fr;
  }

  .pcadv-ai {
    grid-column: auto;
  }
}