/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #e5e5e5;
  background: #131313;
  min-height: 100vh;
}

/* Header */
header {
  background: rgba(19, 19, 19, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.875rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 32px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: linear-gradient(135deg, #ff2d78 0%, #ff6eb4 100%);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.9;
  color: #fff !important;
}

/* Main */
main { padding-top: 66px; }

/* ───── HERO ───── */
.hero {
  background: #131313;
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto 3rem;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,45,120,0.12);
  border: 1px solid rgba(255,45,120,0.3);
  color: #ff6eb4;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #ff2d78 0%, #ff6eb4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #ff2d78 0%, #ff6eb4 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(255, 45, 120, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(255, 45, 120, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: rgba(255,255,255,0.07);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.hero-stats strong {
  color: #fff;
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Hero Character Grid */
.hero-characters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-end;
}

.hero-char {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  max-width: 280px;
}

.hero-char.center {
  flex: 1.3;
  max-width: 340px;
}

.hero-char img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-char-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.875rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* ───── SECTIONS ───── */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  background: linear-gradient(90deg, #ff2d78 0%, #ff6eb4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ───── FEATURES ───── */
.features {
  padding: 5rem 2rem;
  background: #0f0f0f;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.feature-card {
  background: #1c1c1c;
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 120, 0.25);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff;
}

.feature-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature-link {
  display: inline-block;
  margin-top: 0.875rem;
  color: #ff2d78;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-link:hover { text-decoration: underline; }

/* ───── HOW IT WORKS ───── */
.how-it-works {
  padding: 5rem 2rem;
  background: #131313;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #1c1c1c;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff2d78, #ff6eb4);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.step-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ───── CHARACTER GRIDS ───── */
.realistic-models,
.anime-models,
.featured-section {
  padding: 5rem 2rem;
}

.realistic-models { background: #0f0f0f; }
.anime-models { background: #131313; }
.featured-section { background: #0f0f0f; }

.characters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.character-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.character-card {
  background: #1c1c1c;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}

.character-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 120, 0.35);
}

.character-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0a0a0a;
}

.character-media img,
.character-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.character-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.character-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.character-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.character-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #ff2d78, #ff6eb4);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ───── MULTIMEDIA ───── */
.multimedia-section {
  padding: 5rem 2rem;
  background: #131313;
}

.multimedia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.multimedia-card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.multimedia-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 120, 0.25);
}

.multimedia-icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
  display: block;
}

.multimedia-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.multimedia-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ───── PRICING ───── */
.pricing-section {
  padding: 5rem 2rem;
  background: #0f0f0f;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.pricing-card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s;
  position: relative;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  border-color: #ff2d78;
  background: linear-gradient(160deg, #1c1c1c 0%, #221018 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff2d78, #ff6eb4);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.price {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  margin: 0.5rem 0 1.25rem;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: #ff2d78;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  padding: 0.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  background: rgba(255,255,255,0.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, #ff2d78, #ff6eb4);
  border: none;
  box-shadow: 0 4px 20px rgba(255,45,120,0.35);
}

/* ───── PRIVACY ───── */
.privacy-section {
  padding: 5rem 2rem;
  background: #131313;
}

/* ───── FAQ ───── */
.faq-section {
  padding: 5rem 2rem;
  background: #0f0f0f;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.faq-item {
  background: #1c1c1c;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(255,45,120,0.2);
}

.faq-question {
  padding: 1.125rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: #ff2d78;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.125rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ───── ABOUT ───── */
.about-section {
  padding: 5rem 2rem;
  background: #131313;
}

.about-content {
  max-width: 880px;
  margin: 0 auto;
}

.about-content p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ───── FINAL CTA ───── */
.final-cta {
  padding: 6rem 2rem;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a0810 50%, #0f0f0f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,45,120,0.1) 0%, transparent 65%);
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.875rem;
  position: relative;
}

.final-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
}

/* ───── FOOTER ───── */
footer {
  background: #0a0a0a;
  padding: 2.5rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 28px;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.language-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  transition: all 0.2s;
}

.language-link:hover {
  color: #fff;
  border-color: #e91e8c;
  background: rgba(233,30,140,0.15);
}

.social-media-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.social-media-icons a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  display: flex;
}

.social-media-icons a:hover { color: #ff2d78; }
.social-media-icons svg { width: 20px; height: 20px; }

footer p {
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .features-grid,
  .characters-grid,
  .pricing-grid,
  .multimedia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
  .section-title { font-size: 1.75rem; }
  .features-grid,
  .multimedia-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .characters-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.875rem !important;
  }
  .hero-characters {
    gap: 0.5rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    background: rgba(19,19,19,0.98);
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.active { display: flex; }
  .mobile-menu-toggle { display: flex; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .characters-grid {
    grid-template-columns: 1fr !important;
  }
  .hero h1 { font-size: 2rem; }
  .hero-characters { display: none; }
}
