.ftcsag-section {
  --ftcsag-blue: #112a49;
  --ftcsag-blue-deep: #07182d;
  --ftcsag-red: #d40000;
  --ftcsag-gold: #f7b500;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 0, 0, .25), transparent 31%),
    radial-gradient(circle at 90% 88%, rgba(255, 255, 255, .09), transparent 28%),
    linear-gradient(135deg, var(--ftcsag-blue-deep) 0%, var(--ftcsag-blue) 58%, #091f39 100%);
}

.ftcsag-section::before,
.ftcsag-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}

.ftcsag-section::before {
  width: 420px;
  height: 420px;
  top: -235px;
  right: -110px;
}

.ftcsag-section::after {
  width: 290px;
  height: 290px;
  bottom: -210px;
  left: 7%;
}

.ftcsag-shell {
  width: min(1180px, 88%);
  margin: 0 auto;
}

.ftcsag-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 45px;
  align-items: end;
  margin-bottom: 38px;
}

.ftcsag-copy {
  max-width: 740px;
}

.ftcsag-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ftcsag-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--ftcsag-red) !important;
}

.ftcsag-section h2 {
  margin: 0 0 14px !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: clamp(34px, 4vw, 54px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em;
}

.ftcsag-copy > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .74) !important;
  font-size: 17px;
  line-height: 1.7;
}

.ftcsag-google-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 270px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .17);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ftcsag-google-mark,
.ftcsag-mini-google {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #4285f4 !important;
  background: #fff;
  font: 800 25px/1 Arial, sans-serif;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
}

.ftcsag-google-summary strong,
.ftcsag-google-summary small {
  display: block;
  color: #fff !important;
}

.ftcsag-google-summary strong {
  margin-bottom: 2px;
  font-size: 16px;
}

.ftcsag-google-summary small {
  margin-top: 3px;
  opacity: .68;
  font-size: 12px;
}

.ftcsag-stars {
  display: flex;
  gap: 2px;
  line-height: 1;
}

.ftcsag-stars span {
  color: var(--ftcsag-gold) !important;
  font-size: 18px;
  text-shadow: 0 2px 12px rgba(247, 181, 0, .22);
}

.ftcsag-stars .is-empty {
  color: rgba(255, 255, 255, .22) !important;
}

.ftcsag-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ftcsag-review {
  position: relative;
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .085);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.ftcsag-review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 58px;
  height: 3px;
  background: var(--ftcsag-red) !important;
}

.ftcsag-review:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

.ftcsag-review-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 17px;
}

.ftcsag-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff !important;
  background: var(--ftcsag-red) !important;
  font-weight: 800;
}

.ftcsag-review-top strong,
.ftcsag-review-top small {
  display: block;
  overflow: hidden;
  color: #fff !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ftcsag-review-top strong {
  font-size: 15px;
}

.ftcsag-review-top small {
  margin-top: 2px;
  opacity: .58;
  font-size: 11px;
}

.ftcsag-mini-google {
  width: 30px;
  height: 30px;
  font-size: 16px;
  box-shadow: none;
}

.ftcsag-review blockquote {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 15px;
  font-style: normal;
  line-height: 1.72;
}

.ftcsag-cta-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.ftcsag-cta-row > span {
  max-width: 620px;
  color: rgba(255, 255, 255, .63) !important;
  font-size: 13px;
  line-height: 1.55;
}

.ftcsag-button,
.ftcsag-section .ftcsag-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 20px !important;
  border: 2px solid #fff !important;
  border-radius: 5px !important;
  color: var(--ftcsag-blue) !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .06em;
  line-height: 1.2 !important;
  text-decoration: none !important;
  transition: transform .25s ease, color .25s ease, background .25s ease !important;
}

.ftcsag-button:hover,
.ftcsag-section .ftcsag-button:hover {
  transform: translateY(-2px);
  color: #fff !important;
  background: var(--ftcsag-red) !important;
  border-color: var(--ftcsag-red) !important;
}

@media (max-width: 980px) {
  .ftcsag-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .ftcsag-google-summary {
    width: min(100%, 330px);
  }

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

@media (max-width: 767px) {
  .ftcsag-section {
    padding: 68px 0;
  }

  .ftcsag-shell {
    width: min(90%, 620px);
  }

  .ftcsag-section h2 {
    font-size: 36px !important;
  }

  .ftcsag-copy > p {
    font-size: 15px;
  }

  .ftcsag-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ftcsag-review:hover {
    transform: none;
  }

  .ftcsag-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .ftcsag-button,
  .ftcsag-section .ftcsag-button {
    width: 100%;
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ftcsag-review,
  .ftcsag-button {
    transition: none !important;
  }
}

