/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --green-500: #10b981;
  --green-600: #059669;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  color: white !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,100 Q300,200 600,100 T1200,100 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge .icon {
  width: 20px;
  height: 20px;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
}

.btn-hero {
  background: white;
  color: var(--purple-600);
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
  display: inline-block;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 20px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 120px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 40px;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--purple-600);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  stroke-width: 2;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-description {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* How It Works */
.how-it-works {
  padding: 120px 0;
  background: var(--gray-50);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}

.step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  margin: 0 auto 24px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-description {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: white;
}

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

.pricing-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--purple-600);
  border-width: 3px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--gray-100);
}

.plan-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.plan-price {
  margin-bottom: 12px;
}

.price {
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-900);
}

.period {
  font-size: 18px;
  color: var(--gray-600);
  font-weight: 500;
}

.plan-description {
  font-size: 16px;
  color: var(--gray-600);
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--gray-700);
}

.check-icon {
  width: 24px;
  height: 24px;
  color: var(--green-600);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  color: white;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.pricing-card.featured .plan-button {
  background: linear-gradient(135deg, var(--purple-700), var(--blue-700));
}

.plan-annual {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-600);
}

/* Trial Notice */
.trial-notice {
  margin-top: 32px;
  margin-bottom: 48px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--purple-50), var(--blue-50));
  border: 2px solid var(--purple-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trial-icon {
  width: 32px;
  height: 32px;
  color: var(--purple-600);
  flex-shrink: 0;
  stroke-width: 2;
}

.trial-notice p {
  font-size: 18px;
  color: var(--gray-700);
  margin: 0;
}

.trial-notice strong {
  color: var(--purple-600);
  font-weight: 700;
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: var(--gray-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--purple-600);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.faq-question {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  background: white;
  color: var(--purple-600);
  padding: 20px 48px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-note {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 400px;
}

.footer-description {
  color: var(--gray-300);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.footer-column a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  font-size: 14px;
}

/* Legal Pages */
.legal-content {
  padding: 80px 0;
  background: white;
}

.legal-header {
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 3px solid var(--purple-600);
}

.legal-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-date {
  font-size: 16px;
  color: var(--gray-600);
  font-weight: 500;
}

.legal-body {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--gray-700);
}

.legal-body h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 48px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--gray-200);
}

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

.legal-body h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-body p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-body ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-body li {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-body strong {
  font-weight: 600;
  color: var(--gray-900);
}

.legal-body a {
  color: var(--purple-600);
  text-decoration: underline;
  transition: color 0.3s;
}

.legal-body a:hover {
  color: var(--purple-700);
}

.legal-footer {
  margin-top: 64px;
  padding: 32px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 2px solid var(--purple-200);
}

.legal-footer p {
  margin-bottom: 12px;
  font-size: 16px;
}

.legal-footer p:last-child {
  margin-bottom: 0;
  color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .features {
    padding: 80px 0;
  }

  .how-it-works {
    padding: 80px 0;
  }

  .pricing {
    padding: 80px 0;
  }

  .faq {
    padding: 80px 0;
  }

  .cta {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
