@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FE2858;
  --primary-hover: #ff4570;
  --secondary-color: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --text-white: #ffffff;
  --bg-light: #f9f9f9;
  --border-color: #e5e5e5;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(254, 40, 88, 0.3);
  --gradient-primary: linear-gradient(135deg, #FE2858, #ff4570);
  --gradient-bg: linear-gradient(180deg, #ffffff 0%, #fff5f7 100%);
  --radius: 16px;
}

body {
  font-family: "Mona Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--gradient-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px rgba(254, 40, 88, 0.4);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--text-white);
}

.btn-secondary:hover {
  background: #2a2a2a;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(254, 40, 88, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h1 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
}

.user-stats {
  margin: 32px 0;
}

.user-avatars {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  border: 3px solid white;
}

.avatar:nth-child(1) { background: linear-gradient(135deg, #ff9966, #ff5e62); }
.avatar:nth-child(2) { background: linear-gradient(135deg, #f093fb, #f5576c); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.avatar.play-btn {
  background: var(--gradient-primary);
  cursor: pointer;
}

.stats-text h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.stats-text p {
  color: var(--text-light);
  margin: 0;
}

.app-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s;
}

.app-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.app-btn.apple {
  background: var(--secondary-color);
}

.app-btn-icon {
  font-size: 32px;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-btn-text small {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.9;
}

.app-btn-text strong {
  font-size: 18px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease-out;
}

.phone-mockup {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 10;
}

.glow-effect {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 40, 88, 0.2), transparent);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.floating-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.floating-dot:nth-child(2) {
  top: 50px;
  right: 20px;
}

.floating-dot:nth-child(3) {
  bottom: 100px;
  left: 20px;
  animation-delay: 0.5s;
}

/* Features Section */
.features {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 80px 20px;
}

.cta-card {
  background: var(--gradient-primary);
  padding: 80px 40px;
  border-radius: var(--radius);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .app-buttons {
  justify-content: center;
}

.cta .app-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cta .app-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.footer-about p {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-links h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  opacity: 0.6;
}

/* Content Pages */
.content-page {
  padding: 120px 20px 80px;
  min-height: 100vh;
}

.content-page .container {
  max-width: 900px;
}

.content-page h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 800;
}

.page-meta {
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 15px;
}

.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-section ul {
  margin-left: 24px;
  color: var(--text-light);
  line-height: 2;
}

/* Contact Page */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.info-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.info-card:hover {
  box-shadow: var(--shadow);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: rgba(254, 40, 88, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-color);
  font-size: 24px;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.info-card p {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: white;
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-image {
    order: -1;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .section-header h2,
  .cta h2 {
    font-size: 32px;
  }
}


@media (max-width: 768px) {
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    gap: 20px;
    text-align: center;
    z-index: 999;
  }
}
