@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary: #f47ead;
  --primary-dark: #ef8d9c;
  --secondary: #ff9a9e;
  --accent-blue: #93a5cf;
  --bg: #150d0d;
  --bg-secondary: #1a1111;
  --bg-card: #252020;
  --bg-hover: #2e2828;
  --text: #f2f2f2;
  --text-secondary: #8f8181;
  --text-muted: #5e5f5f;
  --accent-gradient: linear-gradient(90deg, #f47ead 0%, #ff9a9e 51%, #f47ead);
  --accent-gradient-blue: linear-gradient(90deg, #93a5cf 0%, #a8cae6 51%, #93a5cf);
  --card-bg: rgba(37, 32, 32, 0.9);
  --border-radius: 18px;
  --border-radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 4px 20px rgba(244, 126, 173, 0.15);
  --glow-pink: rgba(244, 126, 173, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(244, 126, 173, 0.2), 0 0 40px rgba(255, 154, 158, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(244, 126, 173, 0.3), 0 0 60px rgba(255, 154, 158, 0.2);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(21, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(21, 13, 13, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--text);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent-gradient);
  background-size: 200% auto;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(244, 126, 173, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 126, 173, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 126, 173, 0.12), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(147, 165, 207, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-inner > div:first-child {
  order: 2;
}

.hero-inner > .hero-media {
  order: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(244, 126, 173, 0.1);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(244, 126, 173, 0.2);
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-media {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  animation: float 6s ease-in-out infinite;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  text-align: center;
  letter-spacing: -0.3px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.7;
}

section {
  padding: 4rem 0;
  position: relative;
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 126, 173, 0.2);
  box-shadow: 0 8px 24px rgba(244, 126, 173, 0.08);
}

.stat-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.characters-section {
  padding: 4rem 0;
}

.characters-section .section-title {
  font-size: 1.5rem;
}

.char-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.char-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
}

.char-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(244, 126, 173, 0.25);
  box-shadow: 0 12px 40px rgba(244, 126, 173, 0.12);
}

.char-media {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: contain;
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-card));
}

.char-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(to top, rgba(21, 13, 13, 0.98), rgba(21, 13, 13, 0.4), transparent);
}

.char-overlay h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.char-overlay p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.char-tag {
  display: inline-block;
  font-size: 0.68rem;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  background: rgba(244, 126, 173, 0.12);
  color: var(--primary);
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.char-tag.blue {
  background: rgba(147, 165, 207, 0.12);
  color: var(--accent-blue);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(244, 126, 173, 0.15);
  box-shadow: 0 8px 30px rgba(244, 126, 173, 0.06);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-gradient);
  background-size: 200% auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(244, 126, 173, 0.25);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.feature-row-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  flex: 1;
  width: 100%;
}

.feature-row-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.feature-row-text {
  flex: 1;
}

.feature-row-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-row-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.feature-row-text ul {
  list-style: none;
  padding: 0;
}

.feature-row-text ul li {
  padding: 0.35rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-row-text ul li::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
}

.builder-step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.builder-step:hover {
  border-color: rgba(244, 126, 173, 0.15);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(244, 126, 173, 0.3);
}

.step-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.step-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex: 1;
}

.step-img img {
  width: 100%;
  height: auto;
  display: block;
}

.step-content {
  flex: 1;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
  border-color: rgba(244, 126, 173, 0.35);
  box-shadow: 0 0 40px rgba(244, 126, 173, 0.06), var(--shadow);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: var(--border-radius-lg);
  background: var(--accent-gradient);
  opacity: 0.12;
  z-index: -1;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  background-size: 200% auto;
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(244, 126, 173, 0.35);
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-card .price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .price-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-card ul li {
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: #fff;
  text-align: center;
  line-height: 18px;
}

.pricing-card ul li::before {
  content: '\2713';
}

.pricing-card .btn-primary {
  width: 100%;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.875rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p,
.faq-answer ol,
.faq-answer ul {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer ol,
.faq-answer ul {
  padding-left: 2.5rem;
}

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.45rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-countries {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-countries a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.footer-countries a:hover {
  color: var(--primary);
}

.affiliate-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-inner > div:first-child {
    order: 1;
  }

  .hero-inner > .hero-media {
    order: 2;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .char-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-row {
    flex-direction: row;
    gap: 3rem;
  }

  .feature-row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .builder-step {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
  }

  .builder-step:nth-child(even) {
    flex-direction: row-reverse;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.4rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .char-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid .pricing-card.popular {
    transform: scale(1.05);
  }

  .pricing-grid .pricing-card.popular:hover {
    transform: scale(1.07) translateY(-6px);
  }
}
