/* =========================================================
   Home — clean standard agency layout
   Light-first · one dark band · consistent rhythm
   ========================================================= */

.agf-home {
  --ah-bg: #FAFBFB;
  --ah-soft: #F3F6F6;
  --ah-ink: #031012;
  --ah-text: #172020;
  --ah-muted: #6C7A79;
  --ah-line: #DDE2E2;
  --ah-green: #21C77A;
  --ah-green-2: #1aad68;
  --ah-dark: #083D3F;
  --ah-deep: #031012;
  direction: rtl;
  background: var(--ah-bg);
  color: var(--ah-text);
}

.ah-wrap {
  max-width: 1100px;
}

.ah-sec {
  padding: 28px 0;
}

.ah-sec--soft {
  background: var(--ah-soft);
}

.ah-sec--dark {
  padding: 64px 0;
  background: linear-gradient(165deg, #031012 0%, #083D3F 100%);
  color: #fff;
}

.ah-head {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 40px;
}

.ah-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--ah-ink);
  letter-spacing: -0.02em;
}

.ah-head p {
  margin: 0;
  color: var(--ah-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ----- Services (graphical) ----- */
.ah-sec--services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0;
  background: linear-gradient(165deg, #031012 0%, #083D3F 52%, #052628 100%);
  color: #fff;
}

.ah-services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ah-services-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 10%, transparent 75%);
}

.ah-services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.ah-services-orb--a {
  width: 280px;
  height: 280px;
  top: -60px;
  left: 8%;
  background: rgba(33, 199, 122, 0.22);
}

.ah-services-orb--b {
  width: 220px;
  height: 220px;
  bottom: -40px;
  right: 10%;
  background: rgba(50, 230, 154, 0.12);
}

.ah-sec--services > .ah-wrap,
.ah-sec--services > .container {
  position: relative;
  z-index: 1;
}

.ah-head--services {
  color: #fff;
}

.ah-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(33, 199, 122, 0.14);
  border: 1px solid rgba(33, 199, 122, 0.3);
  color: #CFF7E7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ah-head--services h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.ah-head--services p {
  color: rgba(255, 255, 255, 0.68);
}

.ah-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ah-service {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  animation: ahServiceIn 0.55s ease both;
  animation-delay: calc(var(--i, 1) * 0.05s);
}

.ah-service:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 199, 122, 0.4);
  background: rgba(33, 199, 122, 0.08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.ah-service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ah-service__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
  font-variant-numeric: tabular-nums;
}

.ah-service__ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(33, 199, 122, 0.28), rgba(33, 199, 122, 0.08));
  border: 1px solid rgba(33, 199, 122, 0.28);
  color: #21C77A;
  font-size: 17px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ah-service:hover .ah-service__ico {
  background: #21C77A;
  color: #031012;
  transform: scale(1.06);
}

.ah-service h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
}

.ah-service p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  flex: 1;
}

.ah-service__line {
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 18px;
  border-radius: 2px;
  background: rgba(33, 199, 122, 0.35);
  transition: width 0.3s ease, background 0.3s ease;
}

.ah-service:hover .ah-service__line {
  width: 48px;
  background: #21C77A;
}

@keyframes ahServiceIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ah-service {
    animation: none !important;
  }
}

/* ----- Plans / Pricing showcase ----- */
.ah-sec--plans {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0 72px;
  background: #EEF3F2;
}

.ah-plans-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ah-plans-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.ah-plans-orb--1 {
  width: 260px;
  height: 260px;
  top: -40px;
  right: 8%;
  background: rgba(33, 199, 122, 0.16);
}

.ah-plans-orb--2 {
  width: 200px;
  height: 200px;
  bottom: 0;
  left: 6%;
  background: rgba(8, 61, 63, 0.1);
}

.ah-sec--plans > .container {
  position: relative;
  z-index: 1;
}

.ah-head--plans {
  margin-bottom: 36px;
}

.ah-head--plans h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
}

.ah-eyebrow--dark {
  background: rgba(33, 199, 122, 0.12);
  border-color: rgba(33, 199, 122, 0.28);
  color: #083D3F;
}

.ah-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ah-pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #DDE2E2;
  box-shadow: 0 12px 32px rgba(3, 16, 18, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ah-pricing__card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 199, 122, 0.35);
  box-shadow: 0 20px 44px rgba(3, 16, 18, 0.1);
}

.ah-pricing__card.is-featured {
  background: linear-gradient(165deg, #083D3F 0%, #031012 100%);
  border-color: rgba(33, 199, 122, 0.35);
  color: #fff;
  box-shadow: 0 22px 50px rgba(3, 16, 18, 0.22);
  transform: translateY(-8px);
}

.ah-pricing__card.is-featured:hover {
  transform: translateY(-12px);
}

.ah-pricing__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(33, 199, 122, 0.12);
  color: #083D3F;
  font-size: 0.72rem;
  font-weight: 800;
}

.ah-pricing__card.is-featured .ah-pricing__tag {
  background: rgba(33, 199, 122, 0.2);
  color: #CFF7E7;
}

.ah-pricing__name {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #031012;
}

.ah-pricing__card.is-featured .ah-pricing__name {
  color: #fff;
}

.ah-pricing__cat {
  margin: 0 0 16px;
  font-size: 0.8rem;
  color: #6C7A79;
}

.ah-pricing__card.is-featured .ah-pricing__cat {
  color: rgba(255, 255, 255, 0.55);
}

.ah-pricing__price {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEF1F1;
}

.ah-pricing__card.is-featured .ah-pricing__price {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.ah-pricing__price strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: #083D3F;
  line-height: 1.3;
}

.ah-pricing__card.is-featured .ah-pricing__price strong {
  color: #21C77A;
}

.ah-pricing__price small {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: #6C7A79;
}

.ah-pricing__card.is-featured .ah-pricing__price small {
  color: rgba(255, 255, 255, 0.5);
}

.ah-pricing__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}

.ah-pricing__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: #172020;
  line-height: 1.55;
}

.ah-pricing__card.is-featured .ah-pricing__list li {
  color: rgba(255, 255, 255, 0.82);
}

.ah-pricing__list i {
  margin-top: 3px;
  color: #21C77A;
  font-size: 12px;
  flex-shrink: 0;
}

.ah-pricing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #083D3F;
  color: #fff !important;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ah-pricing__btn:hover {
  background: #031012;
  color: #fff !important;
  transform: translateY(-1px);
}

.ah-pricing__card.is-featured .ah-pricing__btn {
  background: linear-gradient(135deg, #21C77A, #1aad68);
  color: #031012 !important;
  box-shadow: 0 10px 24px rgba(33, 199, 122, 0.3);
}

.ah-pricing__card.is-featured .ah-pricing__btn:hover {
  filter: brightness(1.05);
  color: #031012 !important;
}

.ah-pricing__btn i {
  font-size: 12px;
}

.ah-plans-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.ah-btn--soft {
  background: #fff;
  color: #031012 !important;
  border: 1px solid #DDE2E2;
}

.ah-btn--soft:hover {
  border-color: rgba(33, 199, 122, 0.4);
  color: #083D3F !important;
}

.ah-btn--fill i {
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .ah-sec--plans {
    padding: 56px 0;
  }

  .ah-pricing {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .ah-pricing__card.is-featured {
    transform: none;
  }

  .ah-pricing__card.is-featured:hover {
    transform: translateY(-4px);
  }
}

/* ----- Buttons ----- */
.ah-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ah-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ah-btn--fill {
  background: linear-gradient(135deg, var(--ah-green), var(--ah-green-2));
  color: #031012 !important;
  box-shadow: 0 10px 24px rgba(33, 199, 122, 0.28);
}

.ah-btn--fill:hover {
  transform: translateY(-1px);
  color: #031012 !important;
}

.ah-btn--line {
  background: transparent;
  color: var(--ah-ink) !important;
  border: 1px solid var(--ah-line);
}

.ah-btn--line:hover {
  border-color: var(--ah-green);
  color: var(--ah-dark) !important;
}

.ah-btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ah-btn--ghost:hover {
  border-color: var(--ah-green);
  color: var(--ah-green) !important;
}

/* ----- Dark works ----- */
.ah-sec--dark .agf-ws-strip__title,
.ah-sec--dark .agf-ws-strip__title a {
  color: #fff !important;
}

.ah-sec--dark .agf-ws-strip__more {
  color: #fff !important;
}

.ah-sec--dark .container,
.ah-sec--dark .agf-ws-strip__wrap {
  max-width: 1100px;
}

/* ----- Stats (white, chic) ----- */
.ah-sec--stats {
  padding: 48px 0;
  background: #fff;
  border: 0;
}

.ah-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #EEF1F1;
  box-shadow: 0 10px 40px rgba(3, 16, 18, 0.04);
  overflow: hidden;
}

.ah-stat {
  position: relative;
  text-align: center;
  padding: 32px 18px 28px;
  background: #fff;
  transition: background 0.25s ease;
}

.ah-stat:hover {
  background: #FAFBFB;
}

@media (min-width: 992px) {
  .ah-stat:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, #E5EAEA 20%, #E5EAEA 80%, transparent);
  }
}

.ah-stat__ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(33, 199, 122, 0.16), rgba(33, 199, 122, 0.06));
  border: 1px solid rgba(33, 199, 122, 0.18);
  color: #083D3F;
  font-size: 18px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ah-stat:hover .ah-stat__ico {
  transform: translateY(-2px);
  background: #21C77A;
  border-color: #21C77A;
  color: #031012;
}

.ah-stat strong {
  display: block;
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  font-weight: 900;
  color: #031012;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.ah-stat > span:last-child {
  display: block;
  font-size: 0.84rem;
  color: #6C7A79;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ----- Quotes ----- */
.ah-sec--quotes {
  background: linear-gradient(180deg, #F7FAF9 0%, #fff 100%);
  overflow: hidden;
}

.ah-quotes {
  padding-bottom: 8px;
}

.ah-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #EEF1F1;
  border-radius: 20px;
  padding: 26px 22px 22px;
  margin: 6px 4px 20px;
  min-height: 220px;
  box-shadow: 0 8px 28px rgba(3, 16, 18, 0.04);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.ah-quote::before {
  content: "";
  position: absolute;
  inset-inline: 22px auto;
  top: 0;
  width: 40px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: #21C77A;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.ah-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 199, 122, 0.28);
  box-shadow: 0 18px 40px rgba(3, 16, 18, 0.08);
}

.ah-quote:hover::before {
  opacity: 1;
}

.ah-quote__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ah-quote__mark {
  font-size: 3.2rem;
  line-height: 0.7;
  font-weight: 800;
  color: #21C77A;
  opacity: 0.35;
  font-family: Georgia, "Times New Roman", serif;
}

.ah-quote__stars {
  display: flex;
  gap: 3px;
  color: #21C77A;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.ah-quote p {
  flex: 1;
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 2;
  color: #2A3535;
  font-weight: 500;
}

.ah-quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #F0F3F3;
}

.ah-quote__avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #083D3F, #052628);
  color: #32E69A;
  font-size: 0.95rem;
  font-weight: 800;
  object-fit: cover;
}

img.ah-quote__avatar {
  padding: 0;
  background: transparent;
}

.ah-quote__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ah-quote__meta strong {
  display: block;
  font-size: 0.9rem;
  color: #031012;
  font-weight: 800;
  line-height: 1.3;
}

.ah-quote__meta span {
  font-size: 0.76rem;
  color: #6C7A79;
  font-weight: 600;
}

.ah-quotes .owl-dots {
  text-align: center;
  margin-top: 6px !important;
}

.ah-quotes .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  background: #D5DDDD !important;
  border-radius: 8px !important;
  transition: width 0.25s ease, background 0.25s ease !important;
}

.ah-quotes .owl-dot.active span {
  width: 22px !important;
  background: #21C77A !important;
}

/* ----- CTA ----- */
.ah-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ah-dark), var(--ah-deep));
  color: #fff;
}

.ah-cta h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 800;
}

.ah-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ----- Blog (section spacing on home only) ----- */
.ah-sec--blog {
  padding: 0;
  background: transparent;
}

.ah-sec--blog .ah-blog {
  padding: 72px 0 64px;
}

.ah-sec--faq,
.ah-sec--contact {
  padding: 0;
  background: transparent;
}

.ah-sec--faq .ah-faq {
  padding: 72px 0 64px;
}

.ah-sec--contact .ah-contact {
  padding: 72px 0 68px;
}

/* =========================================================
   Normalize embedded legacy components
   ========================================================= */
.ah-embed .container {
  max-width: 1100px;
}

.ah-embed .card {
  border: 1px solid var(--ah-line) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  background: #fff !important;
  overflow: hidden;
}

.ah-embed .card-header {
  background: transparent !important;
  border-bottom: 1px solid var(--ah-line) !important;
  padding: 16px 20px !important;
}

.ah-embed .card-header h2 {
  margin: 0 !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: var(--ah-ink) !important;
}

.ah-embed .card-header a {
  color: var(--ah-green) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
}

.ah-embed .card-body {
  padding: 16px 18px !important;
}

/* FAQ */
.ah-embed--faq .bg-site-gradient1,
.ah-embed--faq .bg-midblue {
  background: var(--ah-soft) !important;
  background-image: none !important;
  border: 1px solid var(--ah-line) !important;
  border-radius: 18px !important;
  color: var(--ah-text) !important;
  padding: 20px !important;
}

.ah-embed--faq h3 {
  color: var(--ah-ink) !important;
  font-size: 1.2rem !important;
  margin-bottom: 16px !important;
}

.ah-embed--faq .faq2.card,
.ah-embed--faq .card.faq2 {
  background: #fff !important;
  border: 1px solid var(--ah-line) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.ah-embed--faq .collapsible {
  background: #fff !important;
  color: var(--ah-ink) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ah-line) !important;
  font-weight: 700 !important;
  text-align: right !important;
}

.ah-embed--faq .btn-light,
.ah-embed--faq .btn-pills {
  background: var(--ah-dark) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
}

.ah-embed--faq .img-box {
  display: none !important;
}

.ah-embed--faq .col-lg-9 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

/* Contact about */
.ah-embed--contact .card {
  padding: 8px;
}

.ah-embed--contact .btn.bg-site {
  background: var(--ah-green) !important;
  color: #031012 !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  border: 0 !important;
  padding: 10px 22px !important;
}

.ah-embed--contact .text-dark,
.ah-embed--contact p {
  color: var(--ah-text) !important;
}

/* Waiting list — kill rainbow social bars */
.ah-embed--wait .bg-site-gradient1,
.ah-embed--wait .bg-darkblue {
  background: var(--ah-deep) !important;
  background-image: none !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ah-embed--wait .insta-box,
.ah-embed--wait .telegram-box,
.ah-embed--wait .whatsapp-box {
  background: rgba(255, 255, 255, 0.06) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #fff !important;
  min-height: 52px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ah-embed--wait .insta-box:hover,
.ah-embed--wait .telegram-box:hover,
.ah-embed--wait .whatsapp-box:hover {
  background: rgba(33, 199, 122, 0.16) !important;
  border-color: rgba(33, 199, 122, 0.4) !important;
  color: #fff !important;
}

.ah-embed--wait .insta-box *,
.ah-embed--wait .telegram-box *,
.ah-embed--wait .whatsapp-box * {
  color: inherit !important;
  fill: currentColor !important;
}

@media (max-width: 991.98px) {
  .ah-sec {
    padding: 52px 0;
  }

  .ah-sec--services {
    padding: 64px 0;
  }

  .ah-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ah-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .ah-stat {
    padding: 24px 12px 22px;
  }

  .ah-stat:nth-child(odd)::before {
    display: none;
  }

  .ah-stat:nth-child(1),
  .ah-stat:nth-child(2) {
    border-bottom: 1px solid #EEF1F1;
  }

  .ah-stat:nth-child(odd) {
    border-left: 1px solid #EEF1F1;
  }

  .ah-cta {
    padding: 22px 18px;
    text-align: center;
    justify-content: center;
  }

  .ah-cta .ah-actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .ah-services {
    grid-template-columns: 1fr;
  }

  .ah-service {
    padding: 18px 16px;
  }
}
