/** Shopify CDN: Minification failed

Line 6:0 Unexpected "`"

**/
```css
.results-section {
  padding: 70px 20px;
  width: 100%;
  background: #ffffff;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .results-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left column */
.results-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 901px) {
  .results-left {
    text-align: left;
  }
}

.results-title {
  font-size: 42px;
  font-weight: 800;
  color: #1c1c1c;
  line-height: 1.15;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.results-subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Right column */
.results-right-title {
  font-size: 26px;
  font-weight: 800;
  color: #1c1c1c;
  margin: 0 0 10px 0;
}

.results-stats-list {
  display: flex;
  flex-direction: column;
}

.results-stat-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid #e6e6e6;
}

.results-stat-row:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.results-circle {
  --percent: 90;
  position: relative;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: conic-gradient(#1c1c1c calc(var(--percent) * 1%), #e6e6e6 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-circle::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
}

.results-circle-text {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  color: #1c1c1c;
  z-index: 1;
}

.results-stat-text {
  font-size: 17px;
  color: #1c1c1c;
  line-height: 1.4;
  margin: 0;
}

.results-footer {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 18px 0 0 0;
}