.phone {
  border-width: 6px;
}

.stats {
  padding-top: 0;
}

.stats-panel {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 1.7fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.stats-intro {
  padding: 42px;
  color: #fff;
  background: linear-gradient(145deg, #214a9c, #7443c7);
}

.stats-intro .eyebrow {
  color: #b4e6ff;
}

.stats-intro h2 {
  margin: 0 0 13px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.stats-intro p:not(.eyebrow) {
  margin: 0;
  color: #dbe9ff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 27px 20px;
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: #244f9d;
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.stat span,
.stat em {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .82rem;
  font-style: normal;
  line-height: 1.3;
}

.stat-rating strong {
  color: #dc8b22;
}

.stat-rating small {
  margin-left: 3px;
  font-size: .76em;
}

.stat-rating {
  gap: 12px;
}

.rating-line {
  display: block;
}

.rating-line + .rating-line {
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.rating-line span {
  margin: 5px 0 0;
  line-height: 1.25;
}

.rating-line strong b {
  font: inherit;
}

.reviews {
  padding-top: 0;
}

.reviews .section-head .eyebrow {
  color: var(--blue);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.review-column {
  display: grid;
  gap: 16px;
  align-content: start;
}

.review-card {
  position: relative;
  min-height: 0;
  padding: 28px 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 55, 101, .05);
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.review-top strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.2;
}

.review-top div > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .87rem;
}

.stars {
  flex: 0 0 auto;
  color: #d38a22;
  font-size: 1rem;
  letter-spacing: .08em;
}

.stars.google {
  color: #008a6b;
}

.review-card blockquote {
  margin: 23px 0 0;
  color: #334158;
  font-size: 1.04rem;
  line-height: 1.55;
}

.review-reply {
  margin-top: 23px;
  padding: 14px 16px;
  border-left: 3px solid #3b72d3;
  border-radius: 0 11px 11px 0;
  background: #f2f6ff;
}

.review-reply span {
  color: #2867d7;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.review-reply p {
  margin: 4px 0 0;
  color: #4b5b73;
  font-size: .92rem;
  line-height: 1.4;
}

.review-store {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 9px;
  border: 1px solid #e3eaf5;
  border-radius: 8px;
  color: #64748b;
  background: #f8fafc;
  font-size: .73rem;
  font-weight: 700;
}

@media (max-width:850px) {
  .stats-panel {
    grid-template-columns: 1fr;
  }

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

  .stat:nth-child(odd) {
    border-left: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:600px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-copy,
  .section-head,
  .stats-intro,
  .download > div,
  .review-card,
  .feature-line div {
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 2.75rem);
    overflow-wrap: anywhere;
  }

  .section h2,
  .download h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .download {
    overflow: hidden;
  }

  .phone {
    border-width: 4.5px;
  }

  .stats-intro {
    padding: 31px 24px;
  }

  .stat {
    padding: 23px 17px;
  }
}
