@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #8b2252;
  --primary-light: #a83279;
  --primary-bg: #fdf2f7;
  --accent: #d4a373;
  --accent-light: #e8c9a0;
  --dark: #2c1320;
  --text: #3d2b35;
  --text-light: #6b5a63;
  --bg: #fefcfa;
  --white: #ffffff;
  --border: #e8dde4;
  --success: #4caf50;
  --star: #f9a825;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--primary); }

/* NAVIGATION */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary-light) !important; }

.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5a1636 100%);
  color: white;
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* PAGE HERO (smaller) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5a1636 100%);
  color: white;
  padding: 56px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1,
.page-hero .page-hero-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p { opacity: 0.92; max-width: 600px; margin: 0 auto; }
.breadcrumbs {
  max-width: 1100px;
  margin: 16px auto 0;
  padding: 0 24px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--text-light); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); }

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  text-align: center;
}
.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-light);
}
.trust-item { display: flex; align-items: center; gap: 6px; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* SECTION HEADERS */
.section-header {
  text-align: center;
  padding: 60px 0 40px;
}
.section-header h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* CONTENT BLOCKS (for articles/reviews/legal) */
.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
  margin: 32px 0;
}
.content-block h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin: 24px 0 12px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin: 20px 0 8px;
}
.content-block p { margin-bottom: 16px; color: var(--text); }
.content-block ul, .content-block ol { margin: 0 0 16px 24px; }
.content-block li { margin-bottom: 8px; }
.content-block a { color: var(--primary); }

/* COMPARISON TABLE */
.comparison-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.comparison-card:hover { box-shadow: 0 4px 20px rgba(139,34,82,0.08); }
.comparison-card.featured { border: 2px solid var(--primary); }
.comparison-card.featured .card-rank { background: var(--primary); }

.card-inner {
  display: grid;
  grid-template-columns: 60px 1fr 140px 120px 140px;
  align-items: center;
  padding: 24px;
  gap: 20px;
}

.card-rank {
  background: var(--accent);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.card-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.card-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-score { text-align: center; }
.score-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.score-label { font-size: 0.75rem; color: var(--text-light); }
.stars { color: var(--star); font-size: 0.9rem; letter-spacing: 1px; }

.card-price { text-align: center; font-size: 0.9rem; }
.card-price strong { display: block; color: var(--dark); font-size: 1rem; }
.card-price span { color: var(--text-light); font-size: 0.8rem; }

.card-cta { text-align: center; }
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 8px;
  transition: all 0.2s;
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: white; }

.featured-label {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* REVIEW HEADER (single-site reviewpage) */
.review-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-top: -32px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: center;
}
.review-header h1 {
  font-family: 'Merriweather', serif;
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.review-header .tagline { color: var(--text-light); margin-bottom: 12px; }
.review-score {
  text-align: center;
  background: var(--primary-bg);
  padding: 20px;
  border-radius: 12px;
}
.review-score .big-score {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.review-score .big-stars { color: var(--star); font-size: 1.1rem; letter-spacing: 2px; margin: 6px 0; }
.review-score .score-desc { font-size: 0.82rem; color: var(--text-light); }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.pros, .cons {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.pros h3, .cons h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.pros h3 { color: var(--success); }
.cons h3 { color: #c0392b; }
.pros ul, .cons ul { list-style: none; margin: 0; padding: 0; }
.pros li, .cons li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
}
.pros li::before { content: '✓'; color: var(--success); position: absolute; left: 0; font-weight: 700; }
.cons li::before { content: '×'; color: #c0392b; position: absolute; left: 0; font-weight: 700; }

.review-meta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}
.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.meta-item { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.meta-item:last-child, .meta-item:nth-last-child(2) { border-bottom: none; }
.meta-item .meta-label { color: var(--text-light); }
.meta-item .meta-value { color: var(--dark); font-weight: 600; }

/* HOW IT WORKS */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 0 60px;
}
.how-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.how-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.how-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
.how-card p { font-size: 0.9rem; color: var(--text-light); }

/* BLOG SECTION */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 60px;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-bg), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-content { padding: 20px; }
.blog-content .tag { margin-bottom: 8px; }
.blog-content h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); line-height: 1.4; }
.blog-content p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 12px; }
.blog-content a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.9rem; }

/* FAQ */
.faq-section { padding-bottom: 60px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q:hover { background: var(--primary-bg); }
.faq-a {
  padding: 0 24px 18px;
  color: var(--text-light);
  font-size: 0.95rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-toggle { font-size: 1.3rem; transition: transform 0.2s; color: var(--primary); }

/* DISCLAIMER */
.disclaimer-bar {
  background: var(--primary-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 24px;
  margin: 40px auto;
  max-width: 1100px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
}

/* ARTICLE HEADER */
.article-header {
  text-align: center;
  padding: 40px 0 24px;
}
.article-header .tag { margin-bottom: 12px; }
.article-header h1 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.article-meta {
  color: var(--text-light);
  font-size: 0.88rem;
}
.article-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
}
.article-body p { margin-bottom: 18px; }
.article-body h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin: 32px 0 14px;
}
.article-body h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin: 24px 0 10px;
}
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 8px 20px;
  margin: 20px 0;
  background: var(--primary-bg);
  font-style: italic;
  color: var(--text);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #5a1636 100%);
  color: white;
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
}
.cta-banner h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.cta-banner p { opacity: 0.92; margin-bottom: 20px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: var(--white); color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--primary-bg); }

/* FORM */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,34,82,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.footer-col p { font-size: 0.88rem; margin-bottom: 12px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .card-inner {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }
  .card-score, .card-price { text-align: left; }
  .card-cta { grid-column: 1 / -1; text-align: left; }
  .how-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .review-header { grid-template-columns: 1fr; margin-top: 0; }
  .pros-cons { grid-template-columns: 1fr; }
  .meta-grid { grid-template-columns: 1fr; }
  .article-body { padding: 24px; }
  .content-block { padding: 24px; }
}
