/* MiraalTech Pod — match Pricing & Timeline margins */
#miraaltech-pod.pod-section {
  box-sizing: border-box;
  width: auto;
  max-width: none;
  margin: 0 100px 48px;
  padding: clamp(56px, 8vw, 80px) 100px clamp(64px, 9vw, 88px);
  background: var(--navy) !important;
  border-radius: 20px;
}

.pod-section__head {
  text-align: center;
  margin-bottom: 30px;
}

.pod-section__pill {
  display: inline-block;
  background: var(--red);
  border-radius: 50px;
  padding: 9px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
}

.pod-section__title {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.pod-section__inner {
  background: #103a3a;
  border-radius: 16px;
  padding: 44px 40px 36px;
  position: relative;
  overflow: hidden;
}

.pod-section__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pod-review {
  background: linear-gradient(135deg, #1a4040 0%, #0d2e2e 100%);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 240px;
  position: relative;
}

.pod-review__quote {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.pod-review__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.pod-review__text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin-top: 2px;
}

.pod-review--left::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--red);
}

.pod-review--right::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 10px solid var(--red);
}

.pod-section__connector {
  width: 30px;
  height: 2px;
  background: rgba(42, 205, 205, 0.55);
  flex-shrink: 0;
}

.pod-section__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #f0fafa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(42, 205, 205, 0.12);
  flex-shrink: 0;
}

.pod-section__logo img {
  width: 50px;
  height: 50px;
  display: block;
}

.pod-section__includes {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.pod-section__includes strong {
  color: #fff;
  font-weight: 700;
}

.pod-section__includes .pod-section__highlight {
  color: #7eece8;
  font-weight: 600;
}

.pod-section__price-wrap {
  display: inline;
  color: rgba(255, 255, 255, 0.85);
}

.price-discount-inline--pod {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 4px;
  vertical-align: middle;
}

.price-discount-inline--pod .price-discount-was {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
  text-decoration: line-through;
}

.price-discount-inline--pod .price-discount-off {
  font-size: 11px;
  font-weight: 800;
  color: #b45309;
  background: #fef3c7;
  padding: 3px 9px;
  border-radius: 999px;
}

.price-discount-inline--pod .price-discount-pay {
  font-size: 16px;
  font-weight: 800;
  color: #7eece8;
}

.pod-section__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
  margin-top: 44px;
}

.pod-feat__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.pod-feat__icon i {
  font-size: 22px;
  color: #fff;
}

.pod-feat__title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.pod-feat__title .pod-feat__free {
  color: #7eece8;
}

.pod-feat__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 360px;
}

@media (max-width: 1100px) {
  #miraaltech-pod.pod-section {
    margin-left: clamp(20px, 6vw, 100px);
    margin-right: clamp(20px, 6vw, 100px);
    padding-left: clamp(24px, 5vw, 100px);
    padding-right: clamp(24px, 5vw, 100px);
  }
}

@media (max-width: 768px) {
  #miraaltech-pod.pod-section {
    margin: 0 16px 24px;
    padding: 40px 20px;
  }

  .pod-section__feats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pod-section__reviews {
    flex-direction: column;
  }

  .pod-review--left::after,
  .pod-review--right::before {
    display: none;
  }
}
