:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #f8fafc;
  --cta: #22c55e;
  --cta-hover: #16a34a;
  --max-width: 1160px;
  --shadow-sm: 0 8px 22px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 12px 30px rgba(2, 6, 23, 0.1);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
}

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  z-index: 60;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  gap: 1rem;
  padding: 0.15rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 32px;
  max-width: 170px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 0.4rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.9rem;
}

.site-nav {
  display: none;
  width: 100%;
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
  padding: 0.25rem 0;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.hero {
  padding: 4.8rem 0 4rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.01em;
}

.lead {
  font-size: 1.1rem;
  color: #1f2937;
  max-width: 62ch;
}

.section {
  padding: 3.9rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-sm {
  margin-top: 2rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.04);
}

.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.75rem 1.2rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 1.03rem;
  padding: 0.98rem 1.65rem;
  min-width: 220px;
  text-align: center;
}

.btn-ghost {
  border: 1px solid var(--border);
  background: #fff;
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.urgency-line {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-landing {
  padding-top: 6.4rem;
  padding-bottom: 5.2rem;
}

.trust-section .card h3 {
  margin-bottom: 0.35rem;
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.8rem;
}

.seo-article p {
  max-width: 74ch;
}

.text-link {
  color: var(--cta);
  font-weight: 600;
}

.review-layout {
  display: grid;
  gap: 1.2rem;
}

.score-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.score {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 1px solid var(--border);
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface);
  width: 35%;
}

.checklist {
  padding-left: 1.1rem;
}

.checklist li {
  margin-bottom: 0.5rem;
}

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.micro-trust {
  margin: 0.8rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.preview-section .card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.preview-image-link {
  display: block;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0.35rem 0 0.75rem;
}

.preview-image-link img {
  width: 100%;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.preview-image-link:hover img,
.preview-image-link:focus-visible img {
  transform: scale(1.04);
}

.preview-image-link:hover,
.preview-image-link:focus-visible {
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.2);
}

.top-offer-box {
  border: 1px solid #bbf7d0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  border-radius: 1rem;
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.07);
  margin-bottom: 1.8rem;
}

.bonus-flat {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0 0.3rem;
}

.faq-light .card {
  border: 1px solid #edf0f3;
  box-shadow: none;
}

.offer-side {
  display: grid;
  gap: 0.6rem;
}

.offer-rating {
  margin: 0;
  font-weight: 700;
  color: #166534;
}

.comparison-table thead th {
  background: #f3f4f6;
  font-weight: 700;
}

.pros-list,
.cons-list {
  list-style: none;
  padding-left: 0;
}

.pros-list li,
.cons-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  margin-bottom: 0.65rem;
}

.list-icon {
  font-weight: 700;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.pros-list .list-icon {
  color: #166534;
  background: #dcfce7;
}

.cons-list .list-icon {
  color: #991b1b;
  background: #fee2e2;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 20px rgba(2, 6, 23, 0.08);
  z-index: 80;
}

.mobile-sticky-cta .btn {
  display: block;
  text-align: center;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #fafafa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  padding: 0 0 6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    width: auto;
  }

  .site-nav ul {
    margin: 0;
    flex-direction: row;
    gap: 1.7rem;
  }

  .site-nav a {
    padding: 0.3rem 0;
  }

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

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-layout {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }

  .top-offer-box {
    grid-template-columns: 1.45fr 1fr;
    align-items: center;
    padding: 1.35rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }

  .trust-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-sticky-cta {
    display: none;
  }

  .footer-bottom {
    padding: 0 0 1.5rem;
  }
}
