:root {
  --pink: #FF1493;
  --pink-dark: #cc1076;
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #888;
  --border: #222;
  --radius: 12px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pink); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1100px; margin: 0 auto;
}
.nav-logo { font-size: 20px; font-weight: 700; color: var(--text); }
.nav-logo span { color: var(--pink); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* HERO */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,20,147,.12) 0%, transparent 60%);
}
.hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 span { color: var(--pink); }
.hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-dark); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

/* FEATURES */
.features { padding: 80px 0; }
.features h2 { text-align: center; font-size: 32px; margin-bottom: 48px; font-weight: 700; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: border-color .2s;
}
.feature-card:hover { border-color: var(--pink); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* PRICING */
.pricing { padding: 80px 0; }
.pricing h2 { text-align: center; font-size: 32px; margin-bottom: 12px; font-weight: 700; }
.pricing .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 16px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; position: relative; transition: border-color .2s, transform .2s;
}
.price-card:hover { border-color: var(--pink); transform: translateY(-4px); }
.price-card.popular { border-color: var(--pink); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; text-transform: uppercase;
}
.price-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 16px; color: var(--text-muted); }
.price-amount { font-size: 40px; font-weight: 800; margin-bottom: 4px; }
.price-amount span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.price-period { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; text-align: left; }
.price-features li { padding: 6px 0; font-size: 14px; color: var(--text-muted); }
.price-features li::before { content: "\2713"; color: var(--pink); margin-right: 8px; font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; }

/* LEGAL PAGES */
.legal { padding: 60px 0 80px; }
.legal h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.legal .updated { color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; font-weight: 600; margin: 36px 0 16px; color: var(--text); }
.legal h3 { font-size: 18px; font-weight: 600; margin: 24px 0 12px; }
.legal p, .legal li { font-size: 15px; color: #ccc; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 24px; }
.legal li { margin-bottom: 8px; }

/* CONTACTS */
.contacts { padding: 60px 0 80px; }
.contacts h1 { font-size: 32px; font-weight: 700; margin-bottom: 40px; text-align: center; }
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center;
}
.contact-card .icon { font-size: 36px; margin-bottom: 16px; }
.contact-card h3 { font-size: 18px; margin-bottom: 8px; }
.contact-card p { font-size: 15px; color: var(--text-muted); }
.contact-card a { font-size: 16px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: var(--text-muted); font-size: 13px; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: #555; font-size: 12px; }

/* FAQ */
.faq { padding: 60px 0; }
.faq h2 { text-align: center; font-size: 28px; margin-bottom: 36px; font-weight: 700; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-weight: 600; font-size: 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: "+"; font-size: 20px; color: var(--pink); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding-top: 12px; font-size: 14px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; }
  .nav-toggle { display: block; }
  .hero { padding: 60px 24px 50px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .features, .pricing, .faq { padding: 50px 0; }
}
