/* =============================================
   AUTOMATION & COMMUNICATION PAGE
   ============================================= */

/* ── Pain Points Section ─────────────────────── */
.ac-pain {
  background: #ffffff;
  padding: 64px 0 72px;
  font-family: 'Poppins', sans-serif;
}

.ac-pain__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 0;
}

.ac-pain__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  height: 100%;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  cursor: default;
}

.ac-pain__card:hover {
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.09);
  border-color: #a5b4fc;
  transform: translateY(-2px);
}

.ac-pain__icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #2563eb;
  transition: background 0.22s ease;
}

.ac-pain__card:hover .ac-pain__icon-box {
  background: #dbeafe;
}

.ac-pain__text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767px) {
  .ac-pain {
    padding: 48px 0 56px;
  }

  .ac-pain__heading {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .ac-pain {
    padding: 36px 0 44px;
  }

  .ac-pain__heading {
    font-size: 21px;
  }

  .ac-pain__card {
    padding: 16px 14px;
    gap: 12px;
  }

  .ac-pain__icon-box {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}

/* ── Brand Section ───────────────────────────── */
.ac-brand {
  background: #0A1A6F;
  padding: 64px 0 72px;
  font-family: 'Poppins', sans-serif;
}

.ac-brand__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
}

.ac-brand__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 24px 22px;
  height: 100%;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  cursor: default;
}

.ac-brand__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.ac-brand__icon-box {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 14px;
  transition: background 0.22s ease;
}

.ac-brand__card:hover .ac-brand__icon-box {
  background: rgba(255, 255, 255, 0.2);
}

.ac-brand__text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .ac-brand {
    padding: 48px 0 56px;
  }

  .ac-brand__heading {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .ac-brand {
    padding: 36px 0 44px;
  }

  .ac-brand__heading {
    font-size: 21px;
  }

  .ac-brand__card {
    padding: 20px 18px;
  }
}

/* ── Triggers Section ────────────────────────── */
.ac-triggers {
  background: #ffffff;
  padding: 48px 0 72px;
  font-family: 'Poppins', sans-serif;
}

.ac-triggers__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 0;
}

.ac-triggers__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ac-triggers__item {
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  overflow: hidden;
}

.ac-triggers__btn {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111 !important;
  background: #ffffff !important;
  padding: 18px 20px;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ac-triggers__btn::after {
  margin-left: 0;
  flex-shrink: 0;
}

.ac-triggers__cat-title {
  flex: 1;
  text-align: left;
}

.ac-triggers__badge {
  flex-shrink: 0;
  background: #dbeafe;
  color: #2563eb;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.5;
  margin-right: 4px;
}

.ac-triggers__body {
  padding: 4px 20px 20px;
  background: #ffffff;
}

.ac-triggers__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ac-triggers__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #374151;
  line-height: 1.6;
}

.ac-triggers__check {
  flex-shrink: 0;
  font-size: 16px;
  color: #16a34a;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .ac-triggers {
    padding: 0 0 56px;
  }

  .ac-triggers__heading {
    font-size: 24px;
  }

  .ac-triggers__btn {
    font-size: 14px;
    padding: 16px 16px;
  }
}

@media (max-width: 575px) {
  .ac-triggers {
    padding: 0 0 44px;
  }

  .ac-triggers__heading {
    font-size: 21px;
  }

  .ac-triggers__btn {
    font-size: 13px;
    padding: 14px 14px;
  }

  .ac-triggers__badge {
    font-size: 11px;
    padding: 2px 8px;
  }

  .ac-triggers__list li {
    font-size: 13px;
  }
}

/* ── Savings Section ─────────────────────────── */
.ac-savings {
  background: #ffffff;
  padding: 0 0 72px;
  font-family: 'Poppins', sans-serif;
}

.ac-savings__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 18px;
}

.ac-savings__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 24px;
}

.ac-savings__formula {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 28px;
}

.ac-savings__formula p {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #1e40af;
  line-height: 1.65;
  margin: 0;
}

.ac-savings__btn,
.ac-savings__btn:hover,
.ac-savings__btn:focus,
.ac-savings__btn:active,
.ac-savings__btn:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.ac-savings__btn {
  display: inline-block;
  background: #0A1A6F;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.ac-savings__btn:hover {
  background: #0f2290;
  transform: translateY(-2px);
}

.ac-savings__card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 28px;
}

.ac-savings__card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ac-savings__big-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.ac-savings__big-number {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}

.ac-savings__big-unit {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #374151;
}

.ac-savings__tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #9ca3af;
  margin-bottom: 16px;
}

.ac-savings__bar-wrap {
  background: #e5e7eb;
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.ac-savings__bar {
  height: 100%;
  width: 0;
  background: #EAB308;
  border-radius: 99px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ac-savings__stats {
  display: flex;
  flex-direction: column;
}

.ac-savings__stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #e5e7eb;
  gap: 12px;
}

.ac-savings__stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ac-savings__stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
}

.ac-savings__stat-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}

.ac-savings__stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  flex-shrink: 0;
  text-align: right;
}

@media (max-width: 767px) {
  .ac-savings {
    padding: 0 0 56px;
  }

  .ac-savings__heading {
    font-size: 26px;
  }

  .ac-savings__big-number {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .ac-savings {
    padding: 0 0 44px;
  }

  .ac-savings__heading {
    font-size: 22px;
  }

  .ac-savings__card {
    padding: 22px 18px;
  }

  .ac-savings__big-number {
    font-size: 42px;
  }

  .ac-savings__big-unit {
    font-size: 15px;
  }

  .ac-savings__stat-value {
    font-size: 18px;
  }
}
