* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #1f2937;
  line-height: 1.5;
  padding-bottom: 200px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

/* --- HEADER --- */
.site-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  top: 0;
  z-index: 100;
}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 0;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 10px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  width: 150px;
}

/* --- HERO SECTION --- */
.hero {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%); */
  background-image: url("./assets/bg-img.jpg"); 
  /* background-size: 400% 400%; */
  /* animation: gradientShift 15s ease infinite;   */
  color: white;
  padding: 50px 0 50px;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(to left, #fbcfe8 0%, #000000 70%, #000000 100%);
  pointer-events: none;
  opacity: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.hero-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-content {
    gap: 25px;
  }
}

.hero-text {
  flex: 2;
  padding-right: 40px;
  min-width: 300px;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-text {
    padding-right: 0;
    min-width: 100%;
  }
}

.update-tag {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.gradient-text {
  display: block;
  background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 30px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-card-wrapper {
  flex: 1;
  min-width: 600px;
  margin-top: 30px;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-card-wrapper {
    min-width: 100%;
  }
}

.hero-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-card {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
}

.featured-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.rank-banner {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1f2937;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  z-index: 10;
}

@media (max-width: 768px) {
  .rank-banner {
    position: static;
    margin-bottom: 15px;
    display: inline-block;
  }
}

.hero-logo-box {
  width: 56px;
  height: 56px;
  background-color: #ec4899; /* Pink for Lemonade */
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
}

.hero-card-info {
  flex: 1;
  min-width: 0;
}

.hero-card-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

@media (max-width: 768px) {
  .hero-card-info {
    width: 100%;
    text-align: center;
  }
  
  .hero-card-info h3 {
    font-size: 1.1rem;
  }
}

.top-pick-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 480px) {
  .top-pick-label {
    font-size: 0.7rem;
    justify-content: center;
  }
}

.hero-score {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-score {
    font-size: 0.8rem;
    justify-content: center;
  }
}

.hero-btn {
  margin-left: auto;
  background-color: #db82a2;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  min-height: 48px;
  touch-action: manipulation;
}

@media (max-width: 480px) {
  .hero-btn {
    min-height: 44px;
    white-space: normal;
  }
}

.hero-btn:hover {
  background: #db82a2;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* --- BENEFITS SECTION --- */
.benefits-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 80px 0;
  margin-bottom: 0;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111827;
  position: relative;
  display: inline-block;
  width: 100%;
}

.title-underline {
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 15px auto 0;
  border-radius: 10px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- MAIN CONTENT --- */
.main-section {
  padding: 50px 0;
}

.controls-bar {
  display: flex;
  justify-content: center;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #667eea, #764ba2, #f093fb) 1;
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-size: 1rem;
  color: #4b5563;
  font-weight: 600;
}

.provider-count {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
}

.sort-options span {
  margin-left: 15px;
  cursor: pointer;
}

.sort-options span.active {
  color: #2563eb;
  font-weight: 600;
}

/* --- PROVIDER CARDS --- */
.provider-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.provider-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
}

.provider-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  border-color: transparent;
}

/* Color Themes for Provider Cards */
.provider-card.theme-lemonade .card-gradient-accent {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.provider-card.theme-embrace .card-gradient-accent {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.provider-card.theme-petsbest .card-gradient-accent {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.provider-card.theme-trupanion .card-gradient-accent {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.provider-card.theme-aspca .card-gradient-accent {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.provider-card.theme-nationwide .card-gradient-accent {
  background: linear-gradient(135deg, #6366f1, #818cf8);
}

.card-gradient-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  z-index: 1;
}

/* Mobile Rank Badge */
.mobile-rank {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-bottom-right-radius: 12px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.mobile-rank.theme-lemonade {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.mobile-rank.theme-embrace {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.mobile-rank.theme-petsbest {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.mobile-rank.theme-trupanion {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.mobile-rank.theme-aspca {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.mobile-rank.theme-nationwide {
  background: linear-gradient(135deg, #6366f1, #818cf8);
}

/* Card Columns */
.col-info {
  padding: 24px;
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  border-right: 1px solid #f3f4f6;
}

.col-features {
  padding: 24px;
  flex: 1.2;
  background-color: #fff;
  border-right: 1px solid #f3f4f6;
}

.col-action {
  padding: 24px;
  flex: 0.8;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.provider-logo {
  width: 110px;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.provider-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-height: 80px;
  background: #fff;
    padding: 10px;
}

@media (max-width: 768px) {
  .provider-logo {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .provider-logo {
    width: 80px;
  }
  
  .provider-logo img {
    max-height: 60px;
  }
}

.provider-details h3 {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rank-badge {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: #4b5563;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.theme-lemonade .rank-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1f2937;
}

.theme-embrace .rank-badge {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.theme-petsbest .rank-badge {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.theme-trupanion .rank-badge {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
}

.theme-aspca .rank-badge {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

.theme-nationwide .rank-badge {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white;
}

.rating-stars {
  font-size: 0.875rem;
  margin: 5px 0 10px;
  color: #fbbf24;
}

.provider-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 8px;
}

.popular-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  border: 2px solid #a7f3d0;
  margin-top: 8px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.popular-tag.silver {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: #4b5563;
  border-color: #d1d5db;
}

.popular-tag.bronze {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  color: #7c2d12;
  border-color: #fb923c;
}

/* Features Column */
.features-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.theme-lemonade .features-title {
  color: #ca8a04;
  border-bottom-color: #ffd700;
}

.theme-embrace .features-title {
  color: #7c3aed;
  border-bottom-color: #8b5cf6;
}

.theme-petsbest .features-title {
  color: #059669;
  border-bottom-color: #10b981;
}

.theme-trupanion .features-title {
  color: #2563eb;
  border-bottom-color: #3b82f6;
}

.theme-aspca .features-title {
  color: #dc2626;
  border-bottom-color: #ef4444;
}

.theme-nationwide .features-title {
  color: #4f46e5;
  border-bottom-color: #6366f1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #4b5563;
}

.check-icon {
  color: #10b981;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Action Column */
.score-box {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.provider-card:hover .score-box {
  transform: scale(1.05);
}

.theme-lemonade .score-box {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-color: #ffd700;
}

.theme-embrace .score-box {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: #8b5cf6;
}

.theme-petsbest .score-box {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-color: #10b981;
}

.theme-trupanion .score-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: #3b82f6;
}

.theme-aspca .score-box {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-color: #ef4444;
}

.theme-nationwide .score-box {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border-color: #6366f1;
}

.score-val {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.score-max {
  font-size: 1rem;
  color: #9ca3af;
  font-weight: 400;
}

.score-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 4px;
}

.deal-badge {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 25px;
  border: 2px solid #fecaca;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.15);
}

.theme-lemonade .deal-badge {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  color: #ca8a04;
  border-color: #ffd700;
}

.theme-embrace .deal-badge {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  color: #7c3aed;
  border-color: #8b5cf6;
}

.theme-petsbest .deal-badge {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
  border-color: #10b981;
}

.theme-trupanion .deal-badge {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #2563eb;
  border-color: #3b82f6;
}

.theme-aspca .deal-badge {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #dc2626;
  border-color: #ef4444;
}

.theme-nationwide .deal-badge {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: #4f46e5;
  border-color: #6366f1;
}

.visit-btn {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
  border: 2px solid transparent;
  min-height: 48px;
  touch-action: manipulation;
}

@media (max-width: 480px) {
  .visit-btn {
    min-height: 44px;
  }
}

.visit-btn:hover {
  background: linear-gradient(135deg, #15803d, #16a34a);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.5);
}

.theme-lemonade .visit-btn {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.theme-lemonade .visit-btn:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

.theme-embrace .visit-btn {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.theme-embrace .visit-btn:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
}

.theme-petsbest .visit-btn {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.theme-petsbest .visit-btn:hover {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.theme-trupanion .visit-btn {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.theme-trupanion .visit-btn:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

.theme-aspca .visit-btn {
  background: linear-gradient(135deg, #ef4444, #f87171);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.theme-aspca .visit-btn:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.5);
}

.theme-nationwide .visit-btn {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.theme-nationwide .visit-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.terms-link {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #9ca3af;
  text-decoration: underline;
  cursor: pointer;
}

/* --- HOW WE CHOOSE & FAQ --- */
.info-block {
  background: white;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #e5e7eb;
  margin-top: 60px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.text-body {
  color: #4b5563;
  line-height: 1.7;
}

.faq-section {
  margin-top: 60px;
  padding: 0 16px;
}

@media (max-width: 480px) {
  .faq-section {
    margin-top: 40px;
    padding: 0 10px;
  }
}

.faq-header-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111827;
  position: relative;
}

.faq-header-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 20px auto 0;
  border-radius: 10px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (max-width: 480px) {
  .faq-container {
    gap: 12px;
  }
}

/* ACCORDION STYLES */
.faq-item {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
  transform: translateX(5px);
}

.faq-item.active {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  min-height: 60px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 480px) {
  .faq-question {
    min-height: 56px;
    padding: 16px 18px;
  }
}

.faq-question:hover {
  background: linear-gradient(135deg, #f1f5f9, #f8fafc);
  color: #667eea;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #3b82f6;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
  border-top: 1px solid transparent;
}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  border-top-color: #f3f4f6;
}

.site-footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #9ca3af;
  padding: 40px 0 30px;
  margin-top: 60px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #667eea, #764ba2) 1;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #667eea, #764ba2, #f093fb) 1;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 45px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .sticky-footer {
    height: auto;
    min-height: 170px;
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .sticky-footer {
    padding: 15px 12px;
    border-top-width: 2px;
  }
}


.sticky-footer.visible {
  transform: translateY(0);
}

.sticky-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sticky-content {
    flex-wrap: wrap;
  }
}

.sticky-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-logo img {
  width: 100px;
}

.sticky-info h5 {
  margin: 0;
  font-size: 1rem;
  color: #111827;
}

.sticky-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
}

.sticky-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-price {
  text-align: right;
}

.sticky-price-old {
  font-size: 0.75rem;
  color: #9ca3af;
}

.sticky-price-new {
  color: #16a34a;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-btn {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  min-height: 44px;
  touch-action: manipulation;
}

@media (max-width: 480px) {
  .sticky-btn {
    white-space: normal;
  }
}

.sticky-btn:hover {
  background: linear-gradient(135deg, #15803d, #16a34a);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.5);
}

/* Tablet and Medium Screens (769px - 992px) */
@media (max-width: 992px) {
  .hero {
    padding: 60px 0 70px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 1.1rem;
  }

  .hero-card-wrapper {
    min-width: 100%;
  }

  .provider-card {
    flex-direction: column;
  }
  .col-info,
  .col-features,
  .col-action {
    border-right: none;
    border-bottom: 1px solid #f3f4f6;
    width: 100%;
  }
  .col-action {
    border-bottom: none;
    background-color: #f9fafb;
    padding: 30px 24px;
  }
  .mobile-rank {
    display: block;
    background: linear-gradient(135deg, #667eea, #764ba2);
  }
  .rank-badge {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .section-title-center {
    font-size: 2rem;
  }

  .faq-header-title {
    font-size: 2rem;
  }

  .sticky-footer {
    height: auto;
    padding: 25px;
  }
}

/* Tablet (481px - 768px) */
@media (max-width: 768px) {
  .hero {
    padding: 50px 0 60px;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .hero-text {
    padding-right: 0;
    width: 100%;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-stats {
    gap: 15px;
    justify-content: center;
  }

  .stat-item {
    padding: 15px 20px;
    flex: 1;
    min-width: 120px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .provider-card {
    margin-bottom: 20px;
  }

  .col-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .col-features {
    padding: 20px;
  }

  .col-action {
    padding: 25px 20px;
  }

  .provider-logo {
    margin-top: 0;
    margin-bottom: 15px;
    width: 100px;
  }

  .score-box {
    padding: 15px;
  }

  .score-val {
    font-size: 2rem;
  }

  .main-section {
    padding: 40px 0;
  }

  .faq-section {
    margin-top: 50px;
  }

  .faq-header-title {
    font-size: 1.75rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 20px;
  }

  .controls-bar {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  .provider-count {
    font-size: 0.9rem;
  }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
  body {
    padding-bottom: 300px;
  }

  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .gradient-text {
    font-size: 1.3rem;
    display: inline-block;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .update-tag {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .stat-item {
    width: 100%;
    padding: 12px 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-card {
    padding: 20px 15px;
    gap: 12px;
  }

  .hero-card-info h3 {
    font-size: 1.1rem;
  }

  .top-pick-label {
    font-size: 0.7rem;
  }

  .hero-score {
    font-size: 0.8rem;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .main-section {
    padding: 30px 0;
  }

  .controls-bar {
    padding-bottom: 12px;
    margin-bottom: 25px;
    font-size: 0.85rem;
  }

  .provider-count {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  .provider-card {
    border-radius: 15px;
    margin-bottom: 20px;
  }

  .col-info {
    padding: 50px 15px;
  }

  .col-features {
    padding: 18px 15px;
  }

  .col-action {
    padding: 20px 15px;
  }

  .provider-logo {
    width: 80px;
    margin-bottom: 12px;
  }

  .provider-details h3 {
    font-size: 1.1rem;
  }

  .provider-desc {
    font-size: 0.8rem;
  }

  .features-title {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .feature-item {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .check-icon {
    width: 14px;
    height: 14px;
  }

  .score-box {
    padding: 12px;
    margin-bottom: 15px;
  }

  .score-val {
    font-size: 1.75rem;
  }

  .score-max {
    font-size: 0.875rem;
  }

  .score-label {
    font-size: 0.7rem;
  }

  .deal-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .visit-btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .popular-tag {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .faq-section {
    margin-top: 40px;
    padding: 0 10px;
  }

  .faq-header-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .faq-container {
    gap: 12px;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .faq-answer-content {
    padding: 0 18px 18px 18px;
    font-size: 0.875rem;
  }

  .site-footer {
    padding: 30px 0 20px;
    margin-top: 40px;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  .sticky-footer {
    height: auto;
    padding: 15px 12px;
  }

  .sticky-content {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-left {
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .sticky-info {
    width: 100%;
  }

  .sticky-label {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .provider-logo img {
    width: 80px;
  }

  .sticky-right {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .sticky-price {
    text-align: center;
    width: 100%;
  }

  .sticky-price-old {
    font-size: 0.7rem;
  }

  .sticky-price-new {
    font-size: 0.85rem;
    justify-content: center;
  }

  .sticky-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    justify-content: center;
  }

  .logo img {
    width: 120px;
  }

  .section-title-center {
    font-size: 1.5rem;
  }

  .title-underline {
    width: 80px;
    height: 4px;
  }
}
