.cta-band {
  width: 100%;
  background: var(--color-cream);
  padding: 40px 0 calc(40px + var(--safe-bottom));
}

@media (min-width: 768px) {
  .cta-band {
    padding: 56px 0 64px;
  }
}

.cta-band__inner {
  width: 100%;
}

.cta-band__header {
  text-align: center;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .cta-band__header {
    margin-bottom: 40px;
  }
}

.cta-band__eyebrow {
  margin: 0 0 12px;
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-lime-dark);
}

.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--color-ink);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 0;
}

.cta-band__perks {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
}

@media (min-width: 640px) {
  .cta-band__perks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 40px;
  }
}

.cta-band__perk {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  text-align: left;
  padding: 20px 18px;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .cta-band__perk {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 24px;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }

  .cta-band__perk:last-child {
    border-right: none;
  }
}

.cta-band__perk:last-child {
  border-bottom: none;
}

.cta-band__perk-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-lime);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-band__perk-icon {
    justify-self: center;
  }
}

.cta-band__perk-text {
  margin: 0;
  align-self: center;
  font-size: clamp(1rem, 2.8vw, 1.0625rem);
  line-height: 1.5;
  color: var(--color-ink);
  font-weight: 500;
}

.cta-band__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.cta-band__btn {
  width: 100%;
  max-width: 360px;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(90, 189, 40, 0.3);
}

@media (min-width: 480px) {
  .cta-band__btn {
    width: auto;
    min-width: 280px;
  }
}

.cta-band__phone {
  margin: 0;
  font-size: clamp(0.9375rem, 2.5vw, 1rem);
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.cta-band__phone a {
  color: var(--color-ink);
  font-weight: 600;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .cta-band__phone a:hover {
    color: var(--color-lime-dark);
  }
}

.cta-band__phone a:focus {
  outline: 2px solid var(--color-lime-light);
  outline-offset: 2px;
  border-radius: 2px;
}
