@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1a1a2e;
  --body-text: #3d3d3d;
  --muted: #71717a;
  --faint: #a1a1aa;
  --accent: #2f9e44;
  --accent-dark: #2b8a3e;
  --accent-bg: #ebfbee;
  --amber: #f59f00;
  --amber-bg: #fff9db;
  --amazon: #ff9900;
  --amazon-dark: #e88b00;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-warm: #fdfcfa;
  --border: #e4e4e7;
  --border-light: #f0f0f2;
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 2px;
  --shadow-soft: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.07);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

img {
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  line-height: 1.7;
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: var(--bg);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius);
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.article {
  padding: 40px 0 56px;
  background: var(--bg);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--muted);
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.75rem;
}

.meta-sep {
  color: var(--faint);
}

.article-body h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.article-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 20px;
  font-weight: 400;
}

.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.byline-left {
  display: flex;
  flex-direction: column;
}

.byline-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.byline-role {
  font-size: 0.78rem;
  color: var(--muted);
}

.byline-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-inline {
  font-size: 0.9rem;
  color: var(--amber);
  letter-spacing: 1px;
}

.rating-inline strong {
  color: var(--ink);
  letter-spacing: 0;
}

.rating-votes {
  font-size: 0.78rem;
  color: var(--muted);
}

.article-helpful {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.article-helpful .icon-inline {
  font-size: 16px;
  color: var(--accent);
}

.article-figure {
  margin: 28px 0;
}

.article-figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.article-figure figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
  padding-left: 4px;
}

.article-text {
  margin: 20px 0;
}

.article-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 16px;
}

.article-text p:last-child {
  margin-bottom: 0;
}

.dropcap {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 0.8;
  padding-right: 10px;
  padding-top: 6px;
  color: var(--ink);
  font-weight: 700;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 16px;
  line-height: 1.3;
}

.section-divider {
  text-align: center;
  color: var(--border);
  font-size: 0.9rem;
  letter-spacing: 12px;
  margin: 36px 0;
  user-select: none;
}

.callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: var(--radius);
}

.callout-quote {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  position: relative;
}

.callout-icon {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}

.callout-quote p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
}

.callout-honest {
  background: var(--amber-bg);
  border-left: 3px solid var(--amber);
}

.callout-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink);
  margin-bottom: 8px;
}

.callout-label i {
  color: var(--amber);
}

.callout-honest p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.7;
}

.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}

.spec-chip .icon-inline {
  font-size: 16px;
  color: var(--accent-dark);
}

.steps-article {
  margin: 24px 0;
}

.step-row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.step-row:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--ink);
  border-radius: 50%;
  margin-top: 2px;
}

.step-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th,
.compare-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.compare-table thead th {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.th-accent {
  background: var(--accent-bg) !important;
  color: var(--accent-dark) !important;
}

.td-label {
  font-weight: 500;
  color: var(--ink);
}

.td-accent {
  background: rgba(47, 158, 68, 0.03);
}

.cell-ok {
  color: var(--accent-dark);
  font-weight: 600;
}

.cell-x {
  color: var(--muted);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.specs-table {
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.specs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row:nth-child(odd) {
  background: var(--bg-alt);
}

.specs-key {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.specs-val {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.offer-box {
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.offer-product h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.offer-product p {
  font-size: 0.82rem;
  color: var(--muted);
}

.offer-price {
  text-align: right;
}

.price-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}

.price-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

.offer-list {
  list-style: none;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--body-text);
}

.offer-list .icon-inline {
  font-size: 17px;
  color: var(--accent-dark);
}

.offer-cta {
  padding: 24px;
  text-align: center;
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--amazon);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-amazon:hover {
  background: var(--amazon-dark);
  transform: translateY(-1px);
}

.btn-amazon i {
  font-size: 1.2rem;
}

.btn-amazon .icon-inline {
  font-size: 18px;
}

.offer-fine {
  font-size: 0.78rem;
  color: var(--faint);
  margin-top: 12px;
  line-height: 1.5;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--ink);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: #2d2d4e;
}

.btn-submit .icon-inline {
  font-size: 19px;
}

.btn-inline {
  width: auto;
  margin-top: 20px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.summary-stars {
  color: var(--amber);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.summary-text {
  font-size: 0.88rem;
  color: var(--muted);
}

.comments-list {
  display: flex;
  flex-direction: column;
}

.comment {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}

.comment:last-child {
  border-bottom: none;
}

.comment-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg);
  background: var(--ink);
  border-radius: 50%;
}

.comment-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.comment-head strong {
  font-size: 0.9rem;
  color: var(--ink);
}

.comment-loc {
  font-size: 0.75rem;
  color: var(--muted);
}

.comment-stars {
  margin-left: auto;
  color: var(--amber);
  font-size: 0.82rem;
}

.comment-body p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 10px;
}

.comment-foot {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comment-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.comment-date {
  font-size: 0.75rem;
  color: var(--faint);
}

.reviews-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.reviews-disclaimer .icon-inline {
  font-size: 17px;
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.reviews-disclaimer p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-embedded {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  padding: 15px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  background: var(--bg);
  transition: background 0.2s ease;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: '▸ ';
  color: var(--accent-dark);
}

.faq-item[open] summary::before {
  content: '▾ ';
}

.faq-item summary:hover {
  background: var(--bg-alt);
}

.faq-item p {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  background: var(--bg-alt);
}

.article-closing {
  margin: 32px 0;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.article-closing p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--body-text);
}

.contact-section {
  margin: 32px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-header {
  padding: 24px 24px 0;
  text-align: center;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.contact-header h2 {
  margin: 0 0 8px;
}

.contact-header p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--bg);
  transition: border-color 0.2s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.08);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--accent-dark);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 0;
}

.disclaimers-block {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.disclaimers-block p {
  font-size: 0.8rem;
  color: var(--faint);
  line-height: 1.65;
  margin-bottom: 10px;
}

.disclaimers-block strong {
  color: var(--muted);
}

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 44px 0 22px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}

.footer .logo span {
  font-size: 1.15rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--accent-dark);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 18px;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: var(--faint);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  word-break: break-word;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 6px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}

.last-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.thanks-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
}

.thanks-card {
  text-align: center;
  background: var(--bg);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 520px;
  width: 100%;
  border-top: 3px solid var(--accent);
}

.thanks-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.thanks-card h1 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.thanks-card p {
  font-size: 1.2rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 8px;
}

.thanks-card .thanks-sub {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .article {
    padding: 28px 0 40px;
  }

  .article-figure img {
    height: 240px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-price {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-byline {
    flex-direction: column;
    align-items: flex-start;
  }

  .spec-strip {
    gap: 8px;
  }

  .spec-chip {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .comment {
    flex-direction: column;
    gap: 12px;
  }

  .btn-amazon {
    width: 100%;
    font-size: 0.92rem;
    padding: 14px 20px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .footer-disclaimer p {
    font-size: 0.85rem;
  }

  .footer-legal a {
    font-size: 0.85rem;
  }

  .footer-contact p {
    font-size: 0.85rem;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .article-body {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .table-wrap {
    overflow-x: visible;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .compare-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .compare-table td {
    border-bottom: 1px solid var(--border-light);
    padding: 10px 14px;
  }

  .compare-table td:last-child {
    border-bottom: none;
  }

  .compare-table .td-label {
    background: var(--bg-alt);
    font-weight: 600;
  }
}

@media (max-width: 640px) {
  .header-inner {
    justify-content: center;
  }

  .header .logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .header .logo a {
    flex-direction: row;
    justify-content: center;
  }

  .footer .logo a {
    flex-direction: column;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col,
  .footer-contact,
  .footer-brand {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .article {
    padding: 20px 0 32px;
  }

  .article-body h1 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .contact-form {
    padding: 16px;
  }

  .contact-header {
    padding: 16px 16px 0;
  }

  .offer-top,
  .offer-list,
  .offer-cta {
    padding: 16px;
  }

  .thanks-card {
    padding: 28px 20px;
  }

  .legal-content {
    padding: 28px 12px;
  }
}