:root {
  --bg:          #fafaf8;
  --bg-2:        #f0ede8;
  --accent:      #ff6b2b;
  --accent-dark: #e55a1a;
  --text:        #1a1a1a;
  --muted:       #6b6b6b;
  --card:        #ffffff;
  --border:      #e8e4de;
  --font-head:   'Playfair Display', serif;
  --font-body:   'Inter', sans-serif;
  --max-w:       1140px;
  --header-h:    68px;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 1px 6px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-lg:   0 6px 28px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 88px 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--text);
}
h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 6px; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  margin-bottom: 18px;
}

.section-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 100%;
  line-height: 1.72;
  margin-top: 8px;
  margin-bottom: 0;
}

.container p { max-width: 100% !important; width: 100% !important; }
section p { max-width: 100% !important; }
.section-body, .section-text, .body-text { max-width: 100% !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 13px 26px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 107, 43, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 18px; font-size: 0.84rem; }

.fade-in-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 12px; left: 16px; right: 16px;
  z-index: 200;
  height: var(--header-h);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 14px rgba(0,0,0,0.08); }

.site-header .container {
  height: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
  margin-right: auto;
}
.logo span { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 16px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 13px;
  border-radius: 5px;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 13px; right: 13px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { transform: scaleX(1); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  padding: calc(var(--header-h) + 64px) 0 80px;
  background: var(--card);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-content {
  max-width: 760px;
  width: 100%;
  text-align: center;
}
.hero-content h1,
.hero-content .hero-sub,
.hero-content .hero-badge { text-align: center; }
.hero-ctas { justify-content: center; }
.hero-author { justify-content: center; }
.hero-sub { text-align: center; }
.quick-verdict { margin: 0 auto; text-align: left; }
.hero-image img { width: 100%; border-radius: 16px; }

.hero-badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #fff3ee;
  color: var(--accent);
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 22px;
}

.hero h1 { margin-bottom: 22px; }

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 100%;
  margin-bottom: 30px;
  line-height: 1.72;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-author {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-author::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--border);
}

.quick-verdict {
  background: #fff8f5;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  max-width: 600px;
}
.quick-verdict-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.quick-verdict p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.65;
}

.what-are { background: var(--bg-2); }

.use-case-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }

.growing { background: var(--bg); }

.bar-chart {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 40px;
  box-shadow: var(--shadow);
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.bar-row:last-child { margin-bottom: 0; }
.bar-label {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text);
  min-width: 155px;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 30px;
  background: var(--bg-2);
  border-radius: 5px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  width: 0;                                           
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-width: 44px;
}

.virtual-vs { background: var(--bg-2); }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 36px;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  background: var(--card);
  font-size: 0.9rem;
  min-width: 560px;
}
.compare-table thead tr { background: var(--bg-2); }
.compare-table th {
  padding: 14px 22px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.compare-table th:nth-child(2) { color: var(--accent); }
.compare-table td {
  padding: 13px 22px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:nth-child(2) { color: var(--accent); font-weight: 500; }
.compare-table tbody tr:hover td { background: #fffaf8; }

.key-features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 44px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,43,0.3);
}
.feature-icon {
  width: 44px; height: 44px;
  background: #fff3ee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: background 0.25s;
}
.feature-card:hover .feature-icon { background: var(--accent); }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.62; }

.top-services { background: var(--bg-2); }

.reviews-intro {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 100%;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.65;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s;
}
.review-card:hover { box-shadow: var(--shadow-lg); }
.review-card.top-pick { border-left-color: var(--accent); }

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.review-rank {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 36px;
}
.review-card:not(.top-pick) .review-rank { color: var(--muted); }

.review-badge {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.badge-top    { background: var(--accent); color: #fff; }
.badge-alt    { background: var(--bg-2); color: var(--muted); }

.review-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.review-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 720px;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}
.pros h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #16a34a; margin-bottom: 10px;
}
.cons h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #dc2626; margin-bottom: 10px;
}
.pros li, .cons li {
  font-size: 0.875rem;
  color: var(--text);
  padding: 4px 0;
  display: flex;
  gap: 8px;
  line-height: 1.45;
  align-items: flex-start;
}
.pros li::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; }

.how-to-use { background: var(--bg); }

.steps-intro {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 100%;
  margin-top: 8px;
  line-height: 1.65;
}

.steps-list {
  display: flex;
  flex-direction: column;
  margin-top: 44px;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 36px;
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step:last-child::after { display: none; }
.step:last-child { padding-bottom: 0; }

.step-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}
.step-body { flex: 1; padding-top: 4px; }
.step-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.67; }

.trouble-box {
  background: #fff8f5;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 48px;
}
.trouble-box h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.trouble-box li {
  font-size: 0.89rem;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.trouble-box li:last-child { border-bottom: none; }
.trouble-box li strong { color: var(--text); }

.platforms { background: var(--bg-2); }

.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.platform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.platform-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.platform-card h3 { margin-bottom: 14px; font-size: 1.05rem; }
.platform-card p  { font-size: 0.89rem; color: var(--muted); line-height: 1.68; }

.cost-comparison { background: var(--bg); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 56px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-card.recommended { border-color: var(--accent); border-width: 2px; }
.pricing-rec-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-icon { font-size: 1.8rem; line-height: 1; }
.pricing-card h3 { font-size: 1.1rem; }
.pricing-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.62; flex: 1; }
.pricing-best {
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.pricing-best strong { color: var(--text); }

.money-tips-wrap { max-width: 100%; }
.money-tips-wrap h3 { font-size: 1.1rem; margin-bottom: 16px; }
.money-tips {
  display: flex;
  flex-direction: column;
}
.money-tips li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.money-tips li:last-child { border-bottom: none; }
.money-tips li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

.privacy { background: var(--bg-2); }

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
}
.two-col-text h3 { margin-bottom: 14px; font-size: 1.1rem; }
.two-col-text p  { font-size: 0.9rem; color: var(--muted); line-height: 1.72; }

.conclusion { background: var(--bg); }

.conclusion-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 100%;
  line-height: 1.72;
  margin-top: 8px;
  margin-bottom: 36px;
}

.decision-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.decision-table {
  width: 100%;
  background: var(--card);
  font-size: 0.9rem;
  min-width: 480px;
}
.decision-table th {
  padding: 14px 22px;
  text-align: left;
  background: var(--bg-2);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}
.decision-table td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.decision-table tr:last-child td { border-bottom: none; }
.decision-table tbody tr:hover td { background: #fffaf8; }
.table-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.87rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.table-link:hover { color: var(--accent-dark); }

.faq { background: var(--bg-2); }

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 40px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.22s;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg); }
.faq-icon {
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 22px; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-top { padding: 56px 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}
.footer-brand .logo {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 190px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li,
.footer-col a {
  font-size: 0.87rem;
  color: var(--muted);
  transition: color 0.2s;
  display: block;
}
.footer-col a:hover { color: var(--accent); }
.footer-cta-btn { display: inline-flex; margin-top: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); text-align: center; }

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  
  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 12px);
    left: 16px; right: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    flex-direction: column;
    padding: 16px 20px;
    gap: 2px;
    margin-right: 0;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 199;
  }
  .main-nav.open { transform: translateY(0); }
  .mobile-menu-btn { display: flex; }
  .header-inner .btn-sm { display: none; }

  
  .hero { padding: calc(var(--header-h) + 44px) 0 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .quick-verdict { max-width: 100%; }

  
  .bar-row { flex-wrap: wrap; gap: 8px; }
  .bar-label { min-width: 100%; margin-bottom: -4px; }
  .bar-track { width: 100%; flex: unset; }

  
  .pros-cons       { grid-template-columns: 1fr; }
  .pricing-cards   { grid-template-columns: 1fr; }
  .platform-cards  { grid-template-columns: 1fr; }
  .two-col-text    { grid-template-columns: 1fr; gap: 32px; }

  
  .review-card { padding: 24px 20px; }

  
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols  { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
}
