/* =========================================================
   AutoRecyclingMarketers — Landing Page Stylesheet
   Self-contained. No dependency on main site style.css.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #dcfce7;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-gray: #f9fafb;
  --bg-dark: #0f172a;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --max-w: 800px;
  --max-w-wide: 1100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Top Bar ── */
.top-bar {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.logo-top {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.logo-bottom {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-bottom span {
  color: var(--green);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.45);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--white {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 19px;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.cta-sub {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

.cta-trust {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-trust::before {
  content: "★★★★★";
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ── Section Labels ── */
.section-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-heading {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 1 — HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  padding: 72px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(34,197,94,0.12);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 2 — PROBLEM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.problem {
  background: var(--bg-gray);
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}

.pain-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pain-card:hover {
  border-color: #fca5a5;
  box-shadow: var(--shadow);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon svg {
  color: #ef4444;
}

.pain-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}

.problem-close {
  background: #fff;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: left;
  margin-top: 8px;
}

.problem-close strong {
  color: var(--text);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 3 — VS / WHY GENERIC FAILS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why-generic {
  background: #fff;
  text-align: center;
}

.why-generic .section-sub {
  margin-bottom: 48px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.comparison-table thead th {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table thead th:first-child {
  background: #fff3f3;
  color: #dc2626;
  border-right: 1px solid var(--border);
  width: 50%;
}

.comparison-table thead th:last-child {
  background: var(--green);
  color: #fff;
  width: 50%;
}

.comparison-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody td {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: top;
}

.comparison-table tbody td:first-child {
  background: #fafafa;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}

.comparison-table tbody td:last-child {
  background: #f0fdf4;
  color: var(--text);
  font-weight: 500;
}

.td-bad::before {
  content: "✗ ";
  color: #ef4444;
  font-weight: 700;
}

.td-good::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 4 — SOLUTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.solution {
  background: var(--bg-gray);
  text-align: center;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 48px 0 40px;
}

.product-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(34,197,94,0.15);
  transform: translateY(-3px);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.product-card h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.product-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-card-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.solution-close {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: left;
}

.solution-close strong {
  color: var(--text);
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 5 — DATA / STATS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.data-section {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}

.data-section .section-heading {
  color: #fff;
}

.data-section .section-sub {
  color: #94a3b8;
  margin-bottom: 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #1e293b;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 16px;
}

.stat-cell {
  background: #0f172a;
  padding: 36px 20px;
  text-align: center;
}

.stat-number {
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  max-width: 140px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 6 — SERVICES / PRICING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services {
  background: #fff;
  text-align: center;
}

.services .section-sub {
  margin-bottom: 48px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-row:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-info {
  flex: 1;
}

.service-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.services-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 7 — TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.proof {
  background: var(--bg-gray);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 72px;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-result {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.author-biz {
  font-size: 13px;
  color: var(--text-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 8 — HOW IT WORKS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.how-it-works {
  background: #fff;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 48px 0 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-light) 100%);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #f0fdf4;
}

.step-content {
  padding-top: 10px;
  text-align: left;
}

.step-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.steps-close {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
}

.steps-close strong {
  color: var(--text);
  font-style: normal;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 9 — FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq {
  background: var(--bg-gray);
  text-align: center;
}

.faq .section-sub {
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: var(--green);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: var(--bg-gray);
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.3s ease;
}

.faq-item.open .faq-arrow {
  background: var(--green);
  transform: rotate(180deg);
}

.faq-item.open .faq-arrow svg {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 10 — FINAL CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.final-cta {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 40%, #166534 100%);
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.final-cta .sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.final-cta .cta-sub {
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
}

.final-cta .phone-line {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.final-cta .phone-line a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

.final-cta .phone-line a:hover {
  border-bottom-color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MINI FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mini-footer {
  background: var(--bg-dark);
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mini-footer-copy {
  font-size: 13px;
  color: #475569;
}

.mini-footer a {
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  border-bottom: 1px solid #334155;
}

.mini-footer a:hover {
  color: #94a3b8;
  border-bottom-color: #94a3b8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DIVIDER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-divider {
  width: 64px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .testimonial-grid .testimonial-card:nth-child(3) {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  section {
    padding: 100px 0;
  }

  .product-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .steps::before {
    left: 28px;
  }

  .comparison-table tbody td {
    font-size: 15px;
    padding: 22px 28px;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid .testimonial-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 17px 24px;
    font-size: 16px;
  }

  .service-row {
    flex-wrap: wrap;
  }

  .service-price {
    width: 100%;
    margin-top: 8px;
  }

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 14px 16px;
  }
}
