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

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-text: #111827;
  --color-text-muted: #4b5563;
  --color-bg: #f7f6f3;
  --color-bg-card: #ffffff;
  --color-bg-subtle: #f3f4f6;
  --color-border: #e5e7eb;
  --color-border-strong: #d1d5db;
  --color-success: #16a34a;
  --color-success-dark: #15803d;
  --color-success-bg: #f0fdf4;
  --color-success-border: #86efac;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --max-width: 720px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-text);
}

h1 { font-size: 1.875rem; margin-bottom: 0.35rem; }
h2 { font-size: 1.125rem; margin-bottom: 0.6rem; }

p {
  margin-bottom: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.3rem; color: var(--color-text-muted); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Header ── */
.site-header {
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  padding: 0.875rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.site-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
}
.site-nav li { margin: 0; }
.site-nav a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.site-nav a:hover { color: var(--color-text); text-decoration: none; }

/* ── Footer ── */
.site-footer {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  margin-top: 3.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.7;
}
.site-footer a { color: var(--color-text-muted); }
.site-footer a:hover { color: var(--color-primary); }

/* ── Page sections ── */
.page-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}
.page-section:last-child { border-bottom: none; }

/* ── Trust badges ── */
.trust-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  letter-spacing: 0.01em;
}
.trust-badge--verified {
  background: var(--color-success-bg);
  color: var(--color-success-dark);
  border: 1px solid var(--color-success-border);
}
.trust-badge--best {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fde68a;
}

/* ── Coupon box ── */
.coupon-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-success-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.coupon-box-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--color-success-border);
}
.coupon-left { flex: 1; min-width: 160px; }
.coupon-code-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--color-success-dark);
  margin-bottom: 0.35rem;
}
.coupon-code-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.coupon-code {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-success-dark);
  font-feature-settings: "tnum";
  line-height: 1;
}
.copy-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  border: 1.5px solid var(--color-success-border);
  background: var(--color-success-bg);
  color: var(--color-success-dark);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.12s, border-color 0.12s;
  white-space: nowrap;
}
.copy-btn:hover {
  background: #dcfce7;
  border-color: var(--color-success);
}
.copy-btn.copied {
  background: var(--color-success);
  border-color: var(--color-success-dark);
  color: #fff;
}
.coupon-right { min-width: 140px; }
.coupon-discount {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  display: block;
  line-height: 1.3;
}
.coupon-verified {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  display: block;
}
.coupon-cta {
  display: block;
  background: var(--color-success);
  color: #fff !important;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  text-decoration: none !important;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.coupon-cta:hover {
  background: var(--color-success-dark);
  text-decoration: none !important;
}
.coupon-cta-arrow {
  margin-left: 0.35rem;
  font-size: 1rem;
}

/* ── Snippet answer ── */
.snippet-answer {
  border-left: 3px solid var(--color-primary);
  background: var(--color-bg-card);
  padding: 0.875rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}
.snippet-answer strong { color: var(--color-text); }

/* ── Steps ── */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.875rem 1.1rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  box-shadow: var(--shadow-sm);
}
.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

/* ── Benefits ── */
.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.benefits-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  padding: 0.35rem 0;
}
.benefits-list li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.08rem;
  font-size: 0.875rem;
}

/* ── FAQ accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
  user-select: none;
  transition: background 0.1s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--color-bg-subtle); }
.faq-item[open] summary { border-bottom: 1px solid var(--color-border); }
.faq-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-text-muted);
  transition: transform 0.2s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0.875rem 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── CTA block ── */
.cta-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}
.cta-block p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}
.cta-block p strong { color: var(--color-success-dark); }

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.375rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background 0.15s;
}
.btn:hover { background: var(--color-primary-dark); }

.btn-lg {
  display: inline-block;
  background: var(--color-success);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.btn-lg:hover { background: var(--color-success-dark); text-decoration: none !important; }

/* ── Brand table (homepage) ── */
.brand-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
.brand-table tr {
  border-bottom: 1px solid var(--color-border);
  transition: background 0.1s;
}
.brand-table tr:last-child { border-bottom: none; }
.brand-table tr:hover { background: rgba(0,0,0,0.02); }
.brand-table td {
  padding: 0.875rem 0.35rem;
  vertical-align: middle;
  color: var(--color-text-muted);
}
.brand-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
  padding-left: 0;
  width: 38%;
}
.brand-table td:last-child {
  text-align: right;
  padding-right: 0;
}
.code-pill {
  display: inline-block;
  background: var(--color-success-bg);
  color: var(--color-success-dark);
  border: 1px solid var(--color-success-border);
  border-radius: 5px;
  padding: 0.15rem 0.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  font-feature-settings: "tnum";
}
.brand-table .soon {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.breadcrumb li { margin: 0; }
.breadcrumb .sep { color: var(--color-border-strong); }

/* ── Also see ── */
.also-see {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}
.also-see a { margin-right: 0.75rem; font-weight: 500; }

/* ── Meta line ── */
.meta-line {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  display: block;
}

/* ── Homepage intro ── */
.intro-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
  max-width: 58ch;
}

/* ── Homepage section card ── */
.section-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

/* ── Hero section (full-width gradient) ── */
.hero-section {
  background: linear-gradient(to bottom, #eafaf1 0%, #f7f6f3 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--color-success-border);
}
.hero-section h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.hero-trust-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust-list li {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-success-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.hero-trust-list li::before {
  content: "✓";
  font-weight: 800;
}
.hero-cta {
  display: inline-block;
  background: var(--color-success);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.hero-cta:hover { background: var(--color-success-dark); }

/* ── Home content wrapper ── */
.home-content { padding-top: 0; padding-bottom: 4rem; }

/* ── Home sections ── */
.home-section {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--color-border);
}
.home-section--last { border-bottom: none; }

/* ── Section eyebrow ── */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.875rem !important;
}

/* ── Logo grid (trusted brands) ── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  text-decoration: none !important;
  transition: border-color 0.12s, box-shadow 0.12s;
  min-height: 2.75rem;
}
a.logo-item:hover {
  border-color: var(--color-success);
  box-shadow: 0 0 0 2px rgba(22,163,74,0.08);
}
.logo-item--inactive {
  color: var(--color-text-muted);
  font-weight: 400;
  background: var(--color-bg-subtle);
  font-style: italic;
}

/* ── Top offer cards ── */
.top-offer-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.top-offer-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.top-offer-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
  transform: translateY(-1px);
}
.top-offer-item--featured {
  border-color: var(--color-success-border);
  background: linear-gradient(to right, #f0fdf4, #ffffff);
}
.top-offer-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.top-offer-name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.top-offer-brand {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}
.top-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-success);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
}
.top-offer-discount {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.top-offer-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.top-offer-cta {
  display: inline-block;
  background: var(--color-success);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1.125rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s;
}
.top-offer-cta:hover { background: var(--color-success-dark); }

/* ── Table card wrapper ── */
.table-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 0.75rem;
}
.table-card .brand-table { margin-top: 0; }
.table-card .brand-table td:first-child { padding-left: 1.375rem; }
.table-card .brand-table td:last-child { padding-right: 1.375rem; }
.table-card .brand-table tr { transition: background 0.1s; }
.table-card .brand-table tr:not(.soon-row):hover { background: #f0fdf4; }
.table-card .brand-table tr:last-child td { border-bottom: none; }
.soon-row td { opacity: 0.45; }

@media (max-width: 560px) {
  h1 { font-size: 1.4375rem; }
  h2 { font-size: 1.0625rem; }
  .coupon-box-inner { flex-direction: column; gap: 0.75rem; }
  .coupon-code { font-size: 1.625rem; }
  .cta-block { padding: 1.25rem 1.25rem; }
  .btn-lg { font-size: 0.9375rem; padding: 0.8rem 1.25rem; }
  .steps-list li { padding: 0.75rem 0.875rem; }
  .section-card { padding: 1.25rem 1.25rem; }
  .hero-section { padding: 2.25rem 0 2rem; }
  .hero-section h1 { font-size: 1.5rem; }
  .hero-lead { font-size: 1rem; }
  .hero-trust-list { gap: 0.75rem; }
  .hero-cta { font-size: 0.9375rem; padding: 0.7rem 1.375rem; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .top-offer-item { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .top-offer-item:hover { transform: none; }
  .top-offer-right { width: 100%; justify-content: space-between; }
}
