:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --primary-light: #f8bbd0;
  --secondary: #1a1a2e;
  --accent: #ff6f00;
  --bg: #0f0f1a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #252542;
  --text: #e0e0e0;
  --text-light: #9e9e9e;
  --text-white: #ffffff;
  --gold: #ffd700;
  --gradient-primary: linear-gradient(135deg, #e91e63, #ff6f00);
  --gradient-dark: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ─── HEADER ─── */
header {
  background: rgba(15,15,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233,30,99,.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.5px;
}

nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }

nav a {
  color: var(--text);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .88rem;
  transition: background .2s, color .2s;
}
nav a:hover, nav a.active {
  background: rgba(233,30,99,.12);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(233,30,99,.12) 0%, transparent 60%);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 32px;
}

/* ─── CTA BUTTON ─── */
.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gradient-primary);
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(233,30,99,.35);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(233,30,99,.5);
  color: #fff !important;
}

.cta-btn-sm {
  padding: 12px 28px;
  font-size: .95rem;
}

.cta-block {
  text-align: center;
  padding: 50px 20px;
  margin: 50px 0;
  background: linear-gradient(135deg, rgba(233,30,99,.08), rgba(255,111,0,.08));
  border: 1px solid rgba(233,30,99,.15);
  border-radius: var(--radius);
}

.cta-block h2 {
  color: var(--text-white);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.cta-block p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,30,99,.25);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--text-white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p { color: var(--text-light); font-size: .95rem; margin-bottom: 16px; }

.card .badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(233,30,99,.15);
  color: var(--primary);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ─── RANKING ─── */
.ranking-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  transition: border-color .25s, box-shadow .25s;
}
.ranking-item:hover {
  border-color: rgba(233,30,99,.25);
  box-shadow: var(--shadow);
}

.ranking-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.ranking-content { flex: 1; }
.ranking-content h3 { color: var(--text-white); margin-bottom: 6px; font-size: 1.2rem; }
.ranking-content p { color: var(--text-light); font-size: .93rem; margin-bottom: 12px; }

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 8px; }

/* ─── SECTIONS ─── */
.section { padding: 60px 0; }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text-white);
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(26,26,46,.5), rgba(15,15,26,.5));
}

/* ─── ARTICLE CONTENT ─── */
.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.article h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-white);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.article h2 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(233,30,99,.2);
}

.article h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin: 28px 0 10px;
}

.article p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.02rem;
}

.article ul, .article ol {
  margin: 16px 0 16px 24px;
  color: var(--text);
}

.article li { margin-bottom: 8px; font-size: .98rem; }

.article blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(233,30,99,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-light);
  font-style: italic;
}

/* ─── TABLE ─── */
.table-wrap { overflow-x: auto; margin: 30px 0; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}

th {
  background: rgba(233,30,99,.12);
  color: var(--text-white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: .9rem;
}

td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .93rem;
}

tr:hover td { background: rgba(255,255,255,.02); }

/* ─── FAQ ─── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  padding: 20px 24px;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-question:hover { background: rgba(255,255,255,.03); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform .3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }

/* ─── FOOTER ─── */
footer {
  background: var(--secondary);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 0 24px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--text-white);
  margin-bottom: 14px;
  font-size: .95rem;
}

.footer-col a {
  display: block;
  color: var(--text-light);
  padding: 4px 0;
  font-size: .88rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--text-light);
  font-size: .82rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15,15,26,.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid rgba(233,30,99,.15);
  }
  nav.open { display: flex; }
  nav a { padding: 10px 16px; }

  .ranking-item { flex-direction: column; align-items: center; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 40px; }
}

/* ─── INLINE CTA BANNER ─── */
.inline-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(233,30,99,.1), rgba(255,111,0,.1));
  border: 1px solid rgba(233,30,99,.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin: 30px 0;
}
.inline-cta p { margin: 0; flex: 1; color: var(--text); font-size: .95rem; }
@media (max-width: 600px) { .inline-cta { flex-direction: column; text-align: center; } }

/* ─── PROS / CONS ─── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros-cons > div { padding: 20px; border-radius: var(--radius); }
.pros { background: rgba(76,175,80,.08); border: 1px solid rgba(76,175,80,.2); }
.cons { background: rgba(244,67,54,.08); border: 1px solid rgba(244,67,54,.2); }
.pros h4 { color: #66bb6a; margin-bottom: 10px; }
.cons h4 { color: #ef5350; margin-bottom: 10px; }
.pros li, .cons li { font-size: .92rem; margin-bottom: 6px; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 14px 0;
  font-size: .85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ─── PULSE ANIMATION ─── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,99,.4); }
  50% { box-shadow: 0 0 0 12px rgba(233,30,99,0); }
}
.cta-pulse { animation: pulse 2s infinite; }
