 
.results-section {
  background: #0b0809;        
  color: #ffffff;
  padding: calc(var(--spacing)*32) 0;      
  border-top: 1px solid #2a2627;   
  border-bottom: 1px solid #2a2627;
}

 
.results-section .results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px; /* gap-20 */
  align-items: center;
}

@media (min-width: 1024px) {
  .results-section .results-grid {
    grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
  }
}


.results-section .results-title {
  margin: 0 0 calc(var(--spacing) * 4); 0;
  font-size: 2.25;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.2px;
  color: #ffffff;
}



.results-section .results-highlight {
  color: var(--color-tertiary); /* brand green */
  display: inline-block;
}

.results-section .results-lead {
  margin: 0 0 calc(var(--spacing) * 8) 0;
  color: #99a1af;
  font-size: 1.25rem;
  line-height: 1.625;
}

.results-section .results-cta-wrap {
  margin-bottom: calc(var(--spacing) * 12);;
}

.results-section .results-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.25rem 0;            
  color: var(--color-tertiary);               
  font-size: 1.125rem;           
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s ease, transform .18s ease;
}

.results-section .results-cta:hover,
.results-section .results-cta:focus {
  color: #ffffff;
}

/* small icon */
.results-section .results-cta-icon {
  display: inline-block;
  stroke: currentColor;
  fill: none;
  transition: transform .15s ease;
  width: calc(var(--spacing) * 4);
  height: calc(var(--spacing) * 4);
  flex-shrink: 0;
  margin-left: calc(var(--spacing) * 2);
}

.results-section .results-cta:hover .results-cta-icon {
  transform: translateX(6px);
}

/* STATS grid */
.results-section .results-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--spacing) * 16);;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .results-section .results-stats {
    grid-template-columns: repeat(2, 1fr); /* sm:grid-cols-2 */
  }
}

.results-section .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

@media (min-width: 768px) {
  .results-section .stat { 
    align-items: flex-start;
  }
  .results-section .results-title { 
    font-size:3rem;
    line-height:1;
  } 
}
.results-section .stat-number {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--color-tertiary);
  margin-bottom: calc(var(--spacing) * 4);
  line-height: 1;
}

.results-section .stat-label {
  font-size: 1.125rem;
  color: #99a1af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .025em;
}

/* RIGHT COLUMN (testimonial) */
.results-section .results-right {
  position: relative;
}

/* green blurred orb background */
.results-section .orb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,179,126,0.15); /* brand-green/20 */
  filter: blur(100px);
  border-radius: 9999px;
  pointer-events: none;
}

/* testimonial card */
.results-section .testimonial-card {
  position: relative;
  z-index: 1;
  background: #1b1718;
  border: 1px solid #2a2627;
  padding: calc(var(--spacing) * 10);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px #00000040;
  min-height: 220px;
}

/* quote */
.results-section .testimonial-quote {
  margin: 0 0 calc(var(--spacing) * 8);
  font-size: 1.25rem;
  line-height: 1.625;
  font-weight: 500;
  color: #e6e6e6;
  border: 0;
  padding: 0;
}

/* author */
.results-section .testimonial-meta {
  display: flex;
  gap: calc(var(--spacing) * 5);
  align-items: center;
}
.results-section .testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: var(--color-tertiary);   /* brand green */
  color: #0b0f12;        /* dark text */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
}

.results-section .testimonial-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.55;
}

.results-section .testimonial-company {
  color: var(--color-tertiary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .results-section .stat-number {
    font-size: 4.5rem;
    line-height: 1;
  }
  .results-section .testimonial-quote {
    font-size: 1.5rem;
  }
}

@media (max-width: 1023px) {
  .results-section .orb-bg { 
    display: none; 
  } 
  .results-section .testimonial-card { 
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  }
}

@media (max-width: 639px) {
  .results-section .results-section { 
    padding: 56px 16px;
  }
  .results-section .results-title { 
    font-size: 2.25rem;
  }
  .results-section .stat-number { 
    font-size: 56px;
  }
  .results-section .results-stats { 
    gap: 20px;
  }
}
