/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0e7490;
  --primary-dark: #0a5a6e;
  --primary-light: #e0f7fa;
  --accent: #38bdf8;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --bg: #f8fafc;
  --card-shadow: 0 4px 24px rgba(14, 116, 144, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .logo {
  color: var(--primary);
}

.logo svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: 50px;
  background: var(--white) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.navbar.scrolled .nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
  background: var(--text);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0e7490 0%, #0284c7 50%, #38bdf8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #bae6fd;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-wrapper .tooth-icon {
  font-size: 180px;
  opacity: 0.9;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.15);
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
  border-color: var(--primary-light);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== DENTISTS ===== */
.dentists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.dentist-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.dentist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 116, 144, 0.15);
}

.dentist-photo {
  height: 280px;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}

.dentist-specialty-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.dentist-info {
  padding: 24px;
}

.dentist-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dentist-info .credentials {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.dentist-info p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.dentist-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.dentist-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.testimonial-card .quote {
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author-info .name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author-info .role {
  color: var(--text-light);
  font-size: 0.82rem;
}

.stars {
  color: #f59e0b;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ===== BLOG PREVIEW ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 116, 144, 0.15);
}

.blog-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
}

.blog-card-image.review {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.blog-card-image.article {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-tag.review {
  background: #059669;
  color: white;
}

.blog-tag.article {
  background: #2563eb;
  color: white;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body .excerpt {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.82rem;
}

.blog-card-meta .author {
  font-weight: 600;
  color: var(--text);
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.rating .score {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.rating .stars-small {
  color: #f59e0b;
  font-size: 0.85rem;
}

/* ===== BLOG PAGE ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0e7490 0%, #0284c7 100%);
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ===== BLOG POST PAGE ===== */
.blog-post-hero {
  padding: 140px 0 40px;
  background: linear-gradient(135deg, #0e7490 0%, #0284c7 100%);
  color: var(--white);
}

.blog-post-hero .breadcrumb {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 20px;
}

.blog-post-hero .breadcrumb a {
  color: var(--white);
  opacity: 0.85;
}

.blog-post-hero .breadcrumb a:hover {
  opacity: 1;
}

.blog-post-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  max-width: 800px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.85;
}

.blog-post-meta .author-name {
  font-weight: 600;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.blog-post-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

.blog-post-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-post-content p {
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.8;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 18px;
  padding-left: 24px;
  list-style: disc;
}

.blog-post-content ol {
  list-style: decimal;
}

.blog-post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.product-rating-box {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}

.product-rating-box .big-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.product-rating-box .out-of {
  color: var(--text-light);
  font-size: 1.1rem;
}

.product-rating-box .verdict {
  font-weight: 700;
  margin-top: 8px;
  font-size: 1.1rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

.pros, .cons {
  border-radius: var(--radius-sm);
  padding: 24px;
}

.pros {
  background: #ecfdf5;
}

.cons {
  background: #fef2f2;
}

.pros h4, .cons h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.pros h4 { color: #059669; }
.cons h4 { color: #dc2626; }

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

.pros li::before {
  content: '✓ ';
  color: #059669;
  font-weight: 700;
}

.cons li::before {
  content: '✗ ';
  color: #dc2626;
  font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0e7490 0%, #0284c7 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--text) !important;
    font-size: 1.1rem;
  }

  .nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    text-align: center;
    width: 100%;
    display: block;
    padding: 14px !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  .page-hero h1 {
    font-size: 2rem;
  }

  .blog-post-hero h1 {
    font-size: 1.8rem;
  }
}

/* ===== DENTISTS PAGE SPECIFIC ===== */
.dentists-page .dentist-card {
  background: var(--white);
}

.dentist-full-bio {
  padding: 28px;
}

.dentist-full-bio .education {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.dentist-full-bio .education h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.dentist-full-bio .education p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== FORBES-STYLE ROUNDUP PAGE ===== */
.roundup-hero {
  padding: 130px 0 50px;
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
}

.roundup-hero .container {
  max-width: 900px;
}

.roundup-breadcrumb {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 16px;
}

.roundup-breadcrumb a {
  color: var(--text-light);
}

.roundup-breadcrumb a:hover {
  color: var(--primary);
}

.roundup-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}

.roundup-hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 720px;
}

.roundup-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.roundup-byline .author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.roundup-byline .author-details strong {
  color: var(--text);
  display: block;
}

.roundup-byline .separator {
  color: #cbd5e1;
}

/* Quick Picks Bar */
.quick-picks {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
  position: sticky;
  top: 58px;
  z-index: 900;
}

.quick-picks .container {
  max-width: 900px;
}

.quick-picks-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.quick-picks-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-pick-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.quick-pick-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(14,116,144,0.1);
}

.quick-pick-chip .pick-number {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

/* Roundup Content Area */
.roundup-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

.roundup-body > p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
}

.roundup-body > h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 12px;
}

.roundup-body > h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}

/* Trust Box */
.trust-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}

.trust-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-box p {
  font-size: 0.95rem;
  color: #15803d;
  line-height: 1.7;
  margin: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 36px 0;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparison-table thead {
  background: var(--text);
  color: var(--white);
}

.comparison-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.comparison-table tbody tr {
  background: var(--white);
  transition: var(--transition);
}

.comparison-table tbody tr:hover {
  background: #f8fafc;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.comparison-table tbody tr:nth-child(even):hover {
  background: #f1f5f9;
}

.comparison-table .product-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.comparison-table .table-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #f1f5f9;
}

.comparison-table .table-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.table-badge.best {
  background: #fef3c7;
  color: #92400e;
}

.table-badge.runner-up {
  background: #e0e7ff;
  color: #3730a3;
}

.table-badge.budget {
  background: #ecfdf5;
  color: #065f46;
}

.table-score {
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
}

/* Product Review Cards */
.review-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  margin: 40px 0;
  overflow: hidden;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.review-card-rank {
  background: var(--text);
  color: var(--white);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card-rank .rank-label {
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card-rank .rank-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.review-card-rank .rank-badge {
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rank-badge.editors-choice {
  background: #f59e0b;
  color: #fff;
}

.rank-badge.best-value {
  background: #10b981;
  color: #fff;
}

.rank-badge.runner-up {
  background: #6366f1;
  color: #fff;
}

.rank-badge.popular {
  background: #ec4899;
  color: #fff;
}

.review-card-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
}

.review-card-image {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
}

.review-card-image img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 8px;
}

.review-card-details {
  padding: 32px;
}

.review-card-details h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.review-card-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.score-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.score-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.score-label strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.review-card-details .description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
}

.spec-item .spec-label {
  color: var(--text-light);
}

.spec-item .spec-value {
  font-weight: 700;
  color: var(--text);
}

.review-card-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.review-card-pros-cons h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.review-card-pros-cons .rc-pros h4 {
  color: #059669;
}

.review-card-pros-cons .rc-cons h4 {
  color: #dc2626;
}

.review-card-pros-cons ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}

.review-card-pros-cons li {
  font-size: 0.88rem;
  margin-bottom: 5px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  color: var(--text);
}

.rc-pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 800;
}

.rc-cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.35;
}

/* Bottom line box */
.bottom-line {
  background: #eff6ff;
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin-top: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bottom-line h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 6px;
}

.bottom-line p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Methodology box */
.methodology-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
}

.methodology-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.methodology-box p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 12px;
}

.methodology-box ul {
  list-style: disc !important;
  padding-left: 20px !important;
  margin-bottom: 12px;
}

.methodology-box li {
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  margin: 48px 0;
}

.faq-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}

.faq-item:first-of-type {
  border-top: 1px solid #e2e8f0;
}

.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Responsive for roundup */
@media (max-width: 768px) {
  .roundup-hero h1 {
    font-size: 2rem;
  }

  .review-card-content {
    grid-template-columns: 1fr;
  }

  .review-card-image {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px;
  }

  .review-card-details {
    padding: 24px;
  }

  .review-card-specs {
    grid-template-columns: 1fr;
  }

  .review-card-pros-cons {
    grid-template-columns: 1fr;
  }

  .quick-picks-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .quick-pick-chip {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .comparison-table {
    font-size: 0.82rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }
}
