/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

:root {
  --bg-main: #f5f3f0;
  --bg-card: #ffffff;
  --text-primary: #2c2c34;
  --text-secondary: #5a5a6e;
  --text-muted: #8e8ea0;
  --accent-gold: #c9953c;
  --accent-gold-light: #f5e6c8;
  --accent-emerald: #2d7a5f;
  --accent-emerald-light: #e8f5ee;
  --accent-navy: #1e2a3a;
  --accent-navy-light: #e8ecf2;
  --accent-red: #c0392b;
  --border: #e4e2de;
  --border-light: #f0eeeb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-emerald); text-decoration: none; }
a:hover { color: #358c6b; }

/* ===== NAV ===== */
.site-nav {
  background: var(--accent-navy);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.nav-brand-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-emerald);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(165deg, #1a1f2e 0%, #2a3142 40%, #1e2a3a 100%);
  padding: 48px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,149,60,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 20%, rgba(45,122,95,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.page-header h1 span {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e8b95a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== CONTENT CARD ===== */
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px 40px;
  margin: 30px 0;
}
.content-card h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.content-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 8px;
}
.content-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.content-card ul, .content-card ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.content-card li {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.content-card strong { color: var(--text-primary); }

/* ===== REVIEW CARD ===== */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: 30px 0;
  transition: box-shadow 0.3s ease;
}
.review-card:hover { box-shadow: var(--shadow-lg); }

.review-banner {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  position: relative;
}
.review-logo {
  width: 150px;
  height: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.review-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-light);
}
.review-score {
  text-align: center;
  flex-shrink: 0;
}
.review-score-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-emerald);
  line-height: 1;
}
.review-score-stars { color: var(--accent-gold); font-size: 14px; margin-top: 4px; }
.review-score-label { font-size: 11px; color: var(--text-muted); }

.review-meta {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
  border: 1px solid rgba(45,122,95,0.15);
}

.review-cta-header {
  margin-left: auto;
  flex-shrink: 0;
}

.review-body {
  padding: 24px 28px;
}
.review-body p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.review-body strong { color: var(--text-primary); }

/* Ratings grid */
.ratings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.rating-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rating-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.rating-header span:first-child { color: var(--text-muted); }
.rating-header span:last-child { font-weight: 700; }
.rating-bar {
  background: var(--border-light);
  border-radius: 99px;
  height: 6px;
}
.rating-bar-fill {
  height: 6px;
  background: var(--accent-emerald);
  border-radius: 99px;
}

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.pros-box, .cons-box {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.pros-box-title, .cons-box-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pros-box-title { color: var(--accent-emerald); }
.cons-box-title { color: var(--accent-red); }
.pros-item, .cons-item {
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-item:last-child, .cons-item:last-child { border-bottom: none; }

/* Bonus bar */
.review-bonus {
  padding: 20px 28px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(201,149,60,0.04), rgba(201,149,60,0.02));
}
.bonus-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 4px;
}
.bonus-value {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}
.bonus-extra {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Payment methods */
.payment-methods {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-light);
}
.payment-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-item {
  padding: 6px 14px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* CTA */
.review-actions {
  padding: 24px 28px;
  display: flex;
  gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  flex: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-emerald), #358c6b);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,122,95,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #358c6b, #2d7a5f);
  box-shadow: 0 6px 20px rgba(45,122,95,0.35);
  transform: translateY(-1px);
  color: #fff;
}
.btn-secondary {
  background: var(--bg-main);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: #eae8e4;
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #d4a74a);
  color: #fff;
  box-shadow: 0 4px 14px rgba(201,149,60,0.25);
}
.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(201,149,60,0.35);
  transform: translateY(-1px);
  color: #fff;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--accent-navy);
  color: rgba(255,255,255,0.5);
  padding: 50px 20px 30px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-brand {
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.footer-bottom {
  max-width: 900px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-disclaimer {
  max-width: 900px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--accent-navy);
    flex-direction: column;
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .site-nav { position: relative; }
  
  .content-card { padding: 24px 20px; }
  .review-header { flex-direction: column; align-items: flex-start; }
  .review-cta-header { margin-left: 0; width: 100%; }
  .review-cta-header .btn { width: 100%; }
  .ratings-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .review-bonus { flex-direction: column; align-items: flex-start; }
  .review-actions { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header { padding: 36px 16px; }
}
