/* style.css */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #0d0d11;
  --bg-secondary: #16161d;
  --bg-card: #1c1c28;
  --bg-card-hover: #242436;
  --accent-pink: #e8365d;
  --accent-gold: #f5a623;
  --accent-orange: #ff7a2e;
  --text-main: #e8e6e3;
  --text-muted: #9a97a0;
  --text-heading: #ffffff;
  --border-color: #2a2a3a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --transition: .25s ease;
  --max-w: 1140px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent-pink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold); }

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

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,17,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: #fff; background: rgba(232,54,93,.12); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pink);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.header-cta:hover { background: #c92a4d; color: #fff; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  padding: 56px 0 48px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a0e1e 50%, var(--bg-primary) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,54,93,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.hero-stack h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
}
.hero-stack h1 span { color: var(--accent-pink); }
.hero-stack .lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.hero-banner {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-banner a { display: block; }
.hero-banner img { width: 100%; height: auto; display: block; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pink);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: #c92a4d; color: #fff; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-pink);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--accent-pink);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline:hover { background: var(--accent-pink); color: #fff; }

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Sections --- */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-color);
}
.section:last-of-type { border-bottom: none; }

.section-alt { background: var(--bg-secondary); }

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 720px;
}
.section-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 20px;
}
.section-text strong { color: var(--text-heading); }

/* --- Info Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .925rem;
}
.info-table thead th {
  background: var(--accent-pink);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
}
.info-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}
.info-table tbody tr { background: var(--bg-card); }
.info-table tbody tr:nth-child(even) { background: var(--bg-secondary); }
.info-table tbody tr:hover { background: var(--bg-card-hover); }
.info-table td:first-child { color: var(--text-muted); font-weight: 500; }

/* --- Feature Cards / Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232,54,93,.12);
  border-color: var(--accent-pink);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.card p {
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Pros/Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}
.pros-list, .cons-list {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border-color);
}
.pros-list h3, .cons-list h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-list h3 { color: #2ecc71; }
.cons-list h3 { color: var(--accent-pink); }
.pros-list li, .cons-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: .925rem;
  color: var(--text-main);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: 700;
}
.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--accent-pink);
  font-weight: 700;
}

/* --- Rating Box --- */
.rating-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
}
.rating-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  min-width: 80px;
  text-align: center;
}
.rating-score small {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}
.rating-stars { color: var(--accent-gold); font-size: 1.4rem; margin-bottom: 6px; }
.rating-text { font-size: .925rem; color: var(--text-muted); }


/* --- Checklist --- */
.checklist {
  margin: 20px 0;
  columns: 2;
  column-gap: 32px;
}
.checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .95rem;
  break-inside: avoid;
}
.checklist li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* --- FAQ Accordion --- */
.faq-list { margin: 24px 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
  font-family: inherit;
}
.faq-question:hover { background: rgba(255,255,255,.03); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent-pink);
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.active .faq-answer {
  max-height: 600px;
}

/* --- Score Badge --- */
.score-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.score-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.score-badge .score-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}
.score-badge .score-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Image Section --- */
.section-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 14px 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent-pink); }
.breadcrumbs span { margin: 0 6px; }

/* --- Footer --- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
}
.footer-links h4, .footer-nav h4 {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-links li, .footer-nav li { margin-bottom: 8px; }
.footer-links a, .footer-nav a {
  color: var(--text-muted);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-nav a:hover { color: var(--accent-pink); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--text-muted);
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-pink);
  color: #fff;
  font-weight: 700;
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 4px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero-stack h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .checklist { columns: 1; }
}

@media (max-width: 768px) {
  .main-nav { 
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; padding: 14px 16px; }
  .burger { display: flex; }
  .header-cta-wrap { display: none; }
  
  .hero { padding: 36px 0 32px; }
  .hero-stack h1 { font-size: 1.65rem; }
  .section { padding: 44px 0; }
  .section-title { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .info-table { font-size: .825rem; }
  .info-table thead th { padding: 10px 12px; }
  .info-table tbody td { padding: 10px 12px; }
  
  .score-badges { gap: 10px; }
  .score-badge { min-width: 100px; padding: 14px 10px; }
  
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stack h1 { font-size: 1.4rem; }
  .btn-primary, .btn-outline { padding: 12px 24px; font-size: .9rem; }
  .rating-box { flex-direction: column; text-align: center; }
  .rating-score { font-size: 2.5rem; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.hidden { display: none; }