:root {
  --primary: #1a3c6e;
  --primary-light: #2a5298;
  --accent: #0066cc;
  --accent-hover: #0052a3;
  --green: #2ecc40;
  --green-dark: #1fa832;
  --orange: #ff9800;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --score-exceptional: #0a7c42;
  --score-excellent: #1a8f4e;
  --score-very-good: #3b82f6;
  --score-good: #6366f1;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

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

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #000;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, .hero-subtitle, .provider-logo, .score-badge, .btn-primary, .offer-btn, .popular-badge {
  font-family: 'Poppins', 'Nunito Sans', sans-serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 2px solid #2a4d74;
  position: static;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: #1f3550;
}
.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #2a4d74;
  color: #2a4d74;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  line-height: 1;
}
.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #1f3550;
}
.brand-separator {
  color: #000;
  font-size: 0.95rem;
  margin: 0 2px;
}
.brand-vertical {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
}
.brand-health-icon {
  font-size: 0.62rem;
  color: #000;
  margin-left: 2px;
  line-height: 1;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #000;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1f3550; }
.menu-toggle {
  display: none;
  width: 38px;
  height: 34px;
  border: 1px solid #d6dde6;
  border-radius: 6px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #2a4d74;
  border-radius: 2px;
}

/* Hero */
.hero {
  background: #f7f8fa;
  padding: 0;
  border-bottom: 1px solid var(--gray-200);
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px 36px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #000;
  margin-bottom: 14px;
}
.hero-badge strong { color: #000; }
.badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2ecc40;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 4px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero-desc {
  font-size: 0.92rem;
  color: #000;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 540px;
}
.hero-image {
  flex-shrink: 0;
  width: 340px;
}
.hero-illustration {
  width: 100%;
  height: auto;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #000;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.reviewer-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.reviewer-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}
.reviewer-link:hover { text-decoration-color: var(--accent); }
.reviewer-role {
  font-size: 0.75rem;
  color: #000;
}

/* Provider Cards */
.providers-section {
  padding: 24px 0;
  max-width: 1180px;
  margin: 0 auto;
}
.providers-section .container {
  max-width: none;
  padding: 0;
}

.provider-card {
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 3px;
  margin-bottom: 16px;
  position: relative;
  overflow: visible;
}
.provider-card.featured {
  border-color: #c5cdd8;
}

/* "Our Most Popular" top badge */
.popular-badge {
  background: #1e3a5f;
  color: #fff;
  padding: 6px 18px;
  font-size: 0.76rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 2px;
  margin: 8px 0 0 18px;
}
.popular-badge .badge-icon { font-size: 0.68rem; }

/* Card body: the main row */
.card-body {
  display: grid;
  grid-template-columns: 34px 122px minmax(0, 1fr) 118px 172px;
  column-gap: 18px;
  align-items: center;
  padding: 6px 16px 10px 0;
  position: relative;
}

/* Rank circle – overlaps left border */
.rank-number {
  width: 30px;
  height: 30px;
  border: 1.5px solid #bcc4ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #000;
  flex-shrink: 0;
  position: relative;
  background: #fff;
  margin-top: 0;
  justify-self: center;
}

/* Large logo text */
.provider-logo {
  width: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.85rem;
  color: #1a1a2e;
  flex-shrink: 0;
  padding: 8px 0;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-right: 0;
}
.brand-logo-image {
  width: 100%;
  max-width: 120px;
  max-height: 56px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.provider-logo.logo-sm {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  color: #84a8c7;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

/* Info column */
.provider-info {
  flex: 1;
  min-width: 0;
  padding-top: 0;
}
.provider-title-row {
  margin-bottom: 8px;
}
.provider-name {
  font-size: 0.86rem;
  font-weight: 400;
  color: #000;
  line-height: 1.35;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
  width: 100%;
}
.provider-name strong {
  font-weight: 700;
  color: #1a1a2e;
  font-family: 'Poppins', 'Nunito Sans', sans-serif;
}
.read-review {
  display: inline-block;
  font-size: 0.8rem;
  color: #2271b1;
  font-weight: 500;
  margin-top: 3px;
  cursor: pointer;
}
.read-review:hover { text-decoration: underline; }

.provider-features {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.provider-features li {
  font-size: 0.76rem;
  color: #000;
  padding-left: 22px;
  position: relative;
  line-height: 1.35;
}
.provider-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: #34a853;
  font-weight: 700;
  font-size: 0.88rem;
}
.provider-features li strong { color: #1a1a2e; }

/* Right column: score + buttons */
.card-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 172px;
  margin-left: 0;
  flex-shrink: 0;
  padding-top: 0;
}

/* Score row: label+stars on left, badge on right */
.score-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 118px;
  gap: 6px;
  margin-bottom: 0;
}
.score-text {
  text-align: right;
}
.score-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c5e90;
  display: block;
  line-height: 1.15;
  white-space: nowrap;
}
.score-stars {
  display: flex;
  gap: 0px;
  justify-content: flex-end;
  margin-top: 2px;
}
.score-stars .star {
  color: #e8a520;
  font-size: 0.74rem;
}

/* Enforce equal desktop/tablet card spacing: logo | text | rating | buttons */
@media (min-width: 769px) {
  .providers-section .provider-card .card-body {
    grid-template-columns: 34px 128px minmax(0, 1fr) 146px 182px;
    column-gap: 22px;
    row-gap: 0;
    align-items: start;
  }
  .providers-section .provider-card .rank-number {
    grid-column: 1;
    justify-self: center;
    margin: 0;
  }
  .providers-section .provider-card .provider-logo {
    grid-column: 2;
    width: 128px;
    margin: 0;
    justify-content: center;
    text-align: center;
  }
  .providers-section .provider-card .provider-logo .brand-logo-image {
    max-width: 124px;
    max-height: 58px;
  }
  .providers-section .provider-card .provider-info {
    grid-column: 3;
    min-width: 0;
    width: 100%;
    padding-right: 2px;
  }
  .providers-section .provider-card .score-group {
    grid-column: 4;
    width: 146px;
    justify-self: center;
    align-self: start;
    margin-top: 2px;
    justify-content: center;
  }
  .providers-section .provider-card .card-right {
    grid-column: 5;
    min-width: 182px;
    width: 182px;
    margin: 0;
    align-self: start;
    padding-left: 2px;
  }
}

.score-badge {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  width: 34px;
  height: 30px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #1e3a5f;
}

/* CTA Buttons */
.btn-primary {
  display: block;
  background: #1e3a5f;
  color: #fff;
  padding: 11px 0;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.1px;
}
.btn-primary:hover { background: #15305a; }

.btn-secondary {
  display: block;
  color: #000;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  width: 100%;
}
.btn-secondary:hover { color: #1e3a5f; text-decoration: underline; }

/* Badges */
.card-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
}
.badge-tag {
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.badge-shipping { color: #1fa832; }

/* Visitors */
.visitors-count {
  font-size: 0.72rem;
  color: #000;
  text-align: center;
  width: 100%;
}
.visitors-count strong { color: #000; }

/* Special offer bottom strip */
.offer-strip {
  background: #edf2f8;
  border-top: 1px solid #dce1e8;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 0 0 3px 3px;
  position: relative;
}
.offer-strip::before,
.offer-strip::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dce1e8;
}
.offer-strip::before { left: -8px; }
.offer-strip::after { right: -8px; }
.offer-strip-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
}
.offer-icon {
  width: 30px;
  height: 30px;
  background: #2271b1;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.offer-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #1e3a5f;
  white-space: nowrap;
}
.offer-text {
  font-size: 0.88rem;
  color: #2271b1;
  font-weight: 500;
  white-space: nowrap;
}
.offer-btn {
  display: inline-block;
  border: 1.5px solid #8a919c;
  color: #000;
  padding: 7px 22px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  transition: all 0.2s;
  font-family: 'Poppins', 'Nunito Sans', sans-serif;
}
.offer-btn:hover {
  border-color: #1e3a5f;
  color: #1e3a5f;
}

/* Content Sections */
.content-section {
  padding: 30px 0;
  border-top: 1px solid #edf0f4;
}
.content-section:nth-child(even) { background: #fff; }
.content-section .container,
.faq-section .container,
.methodology-section .container,
.community-section .container,
.top-picks .container {
  max-width: 860px;
}

.content-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f3550;
  margin-bottom: 14px;
  line-height: 1.3;
}
.content-section h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #000;
  margin: 18px 0 10px;
}
.content-section p {
  font-size: 0.88rem;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.65;
}
.content-section ul {
  margin: 8px 0 14px 0;
}
.content-section ul li {
  font-size: 0.88rem;
  color: #000;
  padding: 4px 0 4px 24px;
  position: relative;
  line-height: 1.6;
}
.content-section ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* Key Insights Box */
.insights-box {
  background: #f4f8ff;
  border: 1px solid #d7e6fb;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0;
}
.insights-box h3 {
  margin-top: 0;
  color: var(--primary);
}
.insights-box ul li::before { color: var(--primary); }

/* Expert Quote */
.expert-quote {
  background: #f8fbff;
  border-left: 3px solid #2c5e90;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.expert-quote blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: #000;
  line-height: 1.7;
  margin-bottom: 12px;
}
.expert-quote .expert-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.expert-quote .expert-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--primary);
}
.expert-quote .expert-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #000;
}
.expert-quote .expert-title {
  font-size: 0.75rem;
  color: #000;
}

/* Comparison Tables */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.comparison-table thead th {
  background: #2b4f78;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
}
.comparison-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: #000;
  vertical-align: top;
  line-height: 1.5;
}
.comparison-table tbody tr:nth-child(even) { background: var(--gray-50); }
.comparison-table tbody tr:hover { background: #f0f6ff; }
.comparison-table td:first-child {
  font-weight: 600;
  color: #000;
  min-width: 160px;
}

/* Provider Comparison Table */
.provider-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.provider-table thead th {
  background: #2b4f78;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.provider-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-200);
  color: #000;
  line-height: 1.5;
}
.provider-table tbody td:first-child { font-weight: 600; color: #000; }
.provider-table tbody tr:nth-child(even) { background: var(--gray-50); }

/* FAQ */
.faq-section { padding: 30px 0; }
.faq-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f3550;
  margin-bottom: 16px;
}
.faq-item {
  border: 1px solid #e7ecf2;
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 13px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question .arrow {
  font-size: 0.7rem;
  transition: transform 0.3s;
  color: #000;
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}
.faq-answer p {
  font-size: 0.86rem;
  color: #000;
  line-height: 1.65;
}

/* Top Picks */
.top-picks {
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid #edf0f4;
}
.top-picks h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
}

.top-pick-card {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.top-pick-card:hover { box-shadow: var(--shadow-md); }

.pick-rank {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  min-width: 36px;
}
.pick-content { flex: 1; }
.pick-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.pick-content ul li {
  font-size: 0.85rem;
  color: #000;
  padding: 3px 0 3px 20px;
  position: relative;
}
.pick-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}
.pick-btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
  transition: background 0.2s;
}
.pick-btn:hover { background: var(--accent-hover); }

/* Methodology */
.methodology-section {
  padding: 30px 0;
  border-top: 1px solid #edf0f4;
}
.methodology-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.methodology-section p {
  font-size: 0.88rem;
  color: #000;
  line-height: 1.7;
  margin-bottom: 12px;
}
.methodology-section ul li {
  font-size: 0.88rem;
  color: #000;
  padding: 4px 0 4px 24px;
  position: relative;
}
.methodology-section ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* Community Insights */
.community-section {
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid #edf0f4;
}
.community-section h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.community-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #000;
  margin: 20px 0 8px;
}
.community-section p {
  font-size: 0.88rem;
  color: #000;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: #fff;
  padding: 40px 0 24px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8rem;
  color: #fff;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #fff;
  border-top: 1px solid var(--gray-700);
  padding-top: 20px;
  margin-bottom: 16px;
}
.footer-bottom {
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-700);
}
.footer-address {
  font-size: 0.75rem;
  color: #fff;
  margin-bottom: 8px;
}

/* Disclosures */
.disclosures {
  background: #fffdf5;
  border: 1px solid #f0e6c0;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.disclosures h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.disclosures p {
  font-size: 0.82rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Ad disclosure */
.ad-disclosure {
  text-align: center;
  padding: 6px 12px 5px;
  font-size: 0.72rem;
  color: #000;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.2;
}
.ad-disclosure a { color: #000; text-decoration: underline; }

/* Static inner pages */
.page-content-wrap {
  background: #f4f7fb;
  padding: 26px 0 38px;
}
.page-card {
  background: #fff;
  border: 1px solid #dfe7f1;
  border-radius: 10px;
  padding: 24px 26px;
}
.page-card h2 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: #000;
}
.page-card h3 {
  font-size: 1.14rem;
  margin: 18px 0 10px;
  color: #000;
}
.page-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #000;
}
.page-card ul {
  margin: 10px 0 14px;
}
.page-card li {
  font-size: 1rem;
  line-height: 1.65;
  color: #000;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}
.page-card li::before {
  content: "•";
  position: absolute;
  left: 2px;
  top: 0;
  color: #1e3a5f;
}
.page-card .faq-question {
  font-size: 1rem;
  padding: 14px 16px;
}
.page-card .faq-answer p {
  font-size: 0.98rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .container,
  .footer-inner {
    padding: 0 16px;
  }
  .hero-inner,
  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .providers-section {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 768px) {
  .ad-disclosure {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  .header-inner {
    position: relative;
    min-height: 52px;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .site-brand {
    min-width: 0;
  }
  .brand-name { font-size: 1rem; }
  .brand-vertical { font-size: 0.9rem; }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 180px;
    background: #fff;
    border: 1px solid #dce3ec;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 32, 56, 0.12);
    z-index: 120;
    padding: 6px 0;
  }
  .site-header.menu-open .nav-links {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.82rem;
    border-bottom: 1px solid #eef2f6;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }

  .hero-inner {
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .hero-image {
    display: none;
  }
  .hero h1 { font-size: 1.55rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-desc { font-size: 0.86rem; }

  .providers-section .container {
    padding: 0 8px;
  }
  .provider-card {
    margin-bottom: 12px;
  }
  .provider-logo {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    margin-right: 0;
    justify-content: flex-start;
    padding: 0;
    font-size: 2rem;
  }
  .provider-logo .brand-logo-image {
    width: auto;
    max-width: 110px;
    max-height: 46px;
  }
  .card-body {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    column-gap: 8px;
    row-gap: 8px;
    padding: 10px 12px;
  }
  .rank-number {
    grid-column: 1;
    grid-row: 1;
    left: 0;
    margin-top: 2px;
    margin-right: 0;
  }
  .provider-info {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid #e7edf4;
    padding-top: 10px;
  }
  .score-group {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
    justify-self: end;
    margin-bottom: 0;
  }
  .score-text { text-align: right; }
  .score-stars {
    justify-content: flex-end;
  }
  .card-right {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    margin-left: 0;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
  .card-right .btn-primary {
    width: 100%;
    min-width: 0;
    padding: 10px 14px;
  }
  .card-right .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .card-badges {
    order: -1;
    width: 100%;
    justify-content: flex-start;
  }
  .badge-shipping {
    background: #e9f8ee;
    border: 1px solid #c9ebd3;
    border-radius: 6px;
    padding: 2px 8px;
  }
  .provider-name {
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .provider-name::after {
    content: " Read Review";
    color: #2271b1;
    font-weight: 600;
  }
  .offer-strip {
    border-top: 1px dashed #9ec0df;
    align-items: center;
    text-align: center;
  }
  .offer-strip-left {
    justify-content: center;
  }
  .offer-btn {
    width: 100%;
    text-align: center;
  }

  .offer-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
  }
  .offer-strip::before,
  .offer-strip::after {
    display: none;
  }
  .offer-strip-left {
    width: 100%;
    overflow-x: visible;
    white-space: normal;
    flex-wrap: wrap;
    gap: 8px;
  }
  .offer-label,
  .offer-text {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .offer-btn {
    align-self: flex-start;
  }

  .comparison-table,
  .provider-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
  }
  .comparison-table thead th,
  .comparison-table tbody td,
  .provider-table thead th,
  .provider-table tbody td {
    padding: 8px 10px;
  }

  .faq-question {
    padding: 12px 14px;
    font-size: 0.84rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 14px 12px;
  }
  .top-pick-card {
    flex-direction: column;
    gap: 10px;
  }
  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .hero-inner,
  .header-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .brand-mark { width: 16px; height: 16px; }
  .brand-name { font-size: 0.9rem; }
  .brand-vertical { font-size: 0.82rem; }
  .nav-links {
    width: 160px;
    right: 8px;
  }
  .nav-links a {
    font-size: 0.78rem;
  }

  .hero-image { display: none; }
  .hero h1 { font-size: 1.32rem; }
  .hero-subtitle { font-size: 0.92rem; }
  .hero-desc { font-size: 0.82rem; }

  .providers-section {
    padding: 14px 0;
  }
  .providers-section .container {
    padding: 0 6px;
  }
  .card-body {
    grid-template-columns: 24px 1fr auto;
    column-gap: 8px;
    row-gap: 6px;
    padding: 8px 10px;
  }
  .rank-number {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
    left: 0;
  }

  .provider-name {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.25;
  }
  .provider-features li {
    font-size: 0.78rem;
    padding-left: 16px;
    line-height: 1.4;
  }
  .provider-features li::before { font-size: 0.78rem; }
  .score-group {
    gap: 5px;
  }
  .score-label { font-size: 0.78rem; }
  .score-stars .star { font-size: 0.68rem; }
  .score-badge { width: 34px; height: 30px; font-size: 0.9rem; }
  .card-right {
    gap: 8px;
  }
  .card-right .btn-primary {
    min-width: 112px;
    padding: 10px 12px;
    font-size: 1rem;
  }
  .card-right .btn-secondary {
    font-size: 0.74rem;
  }
  .badge-tag {
    font-size: 0.72rem;
  }
  .offer-strip {
    padding: 8px 10px;
  }
  .offer-icon {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }
  .offer-label,
  .offer-text {
    font-size: 0.74rem;
    line-height: 1.3;
  }
  .offer-btn {
    padding: 6px 12px;
    font-size: 0.74rem;
  }

  .content-section,
  .faq-section,
  .methodology-section,
  .community-section,
  .top-picks {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .content-section h2,
  .faq-section h2,
  .top-picks h2,
  .community-section h2 {
    font-size: 1.1rem;
  }
  .content-section p,
  .content-section ul li,
  .faq-answer p,
  .community-section p,
  .methodology-section p {
    font-size: 0.8rem;
    line-height: 1.55;
  }
  .comparison-table,
  .provider-table {
    font-size: 0.76rem;
  }
}

/* Final mobile card match */
@media (max-width: 768px) {
  .provider-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(18, 42, 72, 0.08);
  }
  .popular-badge {
    margin: 0;
    border-radius: 0;
    width: fit-content;
    padding: 5px 12px;
    font-size: 0.78rem;
    margin-left: 0;
  }
  .card-body {
    grid-template-columns: 30px 1fr auto;
    row-gap: 8px;
    padding: 10px 10px 12px;
  }
  .rank-number {
    width: 30px;
    height: 30px;
    font-size: 0.84rem;
    border-width: 1.3px;
    margin-top: 0;
  }
  .provider-logo {
    grid-column: 2;
    grid-row: 1;
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.3px;
  }
  .score-group {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }
  .score-label {
    font-size: 0.88rem;
  }
  .score-badge {
    width: 36px;
    height: 32px;
    font-size: 0.96rem;
    border-radius: 4px;
  }
  .provider-info {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid #e5ebf2;
    padding-top: 10px;
  }
  .provider-name {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 4px;
  }
  .provider-features li {
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .card-right {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .card-badges {
    order: 1;
    justify-content: flex-start;
    width: 100%;
  }
  .badge-shipping {
    font-size: 0.82rem;
    color: #28a745;
    background: #ecfaef;
    border: 1px solid #cbeed2;
    border-radius: 6px;
    padding: 3px 8px;
  }
  .btn-primary {
    order: 2;
    width: 100%;
    padding: 12px 14px;
    font-size: 1.08rem;
    font-weight: 800;
    border-radius: 4px;
  }
  .btn-secondary {
    order: 3;
    width: 100%;
    text-align: center;
    font-size: 0.86rem;
  }

  .offer-strip {
    order: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 10px 10px;
    border-top: 1px dashed #9bbddd;
    background: #edf4fc;
    position: relative;
  }
  .offer-strip::before,
  .offer-strip::after {
    display: block;
    content: "";
    position: absolute;
    top: -8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d6e0ec;
  }
  .offer-strip::before { left: -7px; }
  .offer-strip::after { right: -7px; }
  .offer-strip-left {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .offer-icon {
    width: 18px;
    height: 18px;
    font-size: 0.62rem;
    border-radius: 3px;
  }
  .offer-label {
    font-size: 0.9rem;
    font-weight: 700;
  }
  .offer-text {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .offer-btn {
    width: 100%;
    text-align: center;
    font-size: 0.92rem;
    padding: 7px 12px;
  }
  .visitors-count {
    padding: 8px 10px 10px;
    font-size: 0.9rem;
    background: #fff;
    text-align: center;
  }
}
