/* PoopMates Landing Page Styles */

:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #1a1a2e;
  --gold: #FFD93D;
  --gold-dark: #F4B400;
  --mint: #7DD3C0;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--mint);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 217, 61, 0.1);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  max-width: 600px;
}

.hero-icon {
  width: 180px;
  height: 180px;
  border-radius: 40px;
  margin-bottom: 30px;
  box-shadow: 0 20px 60px rgba(255, 217, 61, 0.2);
  animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--mint);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(125, 211, 192, 0.3);
}

.cta-button svg {
  width: 24px;
  height: 24px;
}

/* Features Section */
.features {
  padding: 100px 20px;
  background: rgba(26, 26, 46, 0.5);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 217, 61, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(255, 217, 61, 0.05);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--mint);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* CTA Sections */
.cta-section {
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-bottom {
  background: rgba(26, 26, 46, 0.5);
}

/* Pricing Section */
.pricing {
  padding: 100px 20px;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.pricing-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 217, 61, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.premium {
  border-color: var(--gold);
  background: rgba(255, 217, 61, 0.05);
}

.pricing-card.premium:hover {
  box-shadow: 0 10px 40px rgba(255, 217, 61, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: var(--mint);
  margin-bottom: 15px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-period {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.trial-note {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-top: 25px;
}

.pricing-features li {
  color: var(--text-secondary);
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "\2713";
  color: var(--mint);
  font-weight: 700;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .pricing h2 {
    font-size: 2rem;
  }
}

/* Footer */
footer {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 217, 61, 0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-secondary);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Page Header (for privacy/support) */
.page-header {
  padding: 120px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-secondary);
}

/* Content Section */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.content h2 {
  font-size: 1.5rem;
  color: var(--mint);
  margin: 40px 0 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 217, 61, 0.1);
}

.content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.content ul {
  color: var(--text-secondary);
  margin-left: 20px;
  margin-bottom: 15px;
}

.content li {
  margin-bottom: 8px;
}

/* Contact Box */
.contact-box {
  background: rgba(255, 217, 61, 0.1);
  border: 1px solid var(--gold);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin: 40px 0;
}

.contact-box h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

.contact-box a {
  font-size: 1.2rem;
  font-weight: 600;
}

/* FAQ Section */
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 217, 61, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--mint);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-item p {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .tagline {
    font-size: 1.2rem;
  }

  .hero-icon {
    width: 140px;
    height: 140px;
    border-radius: 30px;
  }

  .nav-links {
    gap: 15px;
  }

  .features h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  nav .container {
    flex-direction: column;
    gap: 15px;
  }

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

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
