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

html {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f8fafc;
}

/* Construction Banner */
.construction-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ff6b6b;
  color: white;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

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

/* Header */
.header {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin: 51px 3rem;
    padding: 16px 28px;
  
}

.header-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.navbar {
  display: flex;
  gap: 2rem;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.navbar a:hover {
  opacity: 0.8;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  position: relative;
  padding-top: 4rem; /* Space for banner */
}

.hero-content {
  max-width: 800px;
  padding: 0 1rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button.primary {
  background: #fff;
  color: #667eea;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-button.secondary:hover {
  background: #5d57a885;
  color: #667eea;
}

.hero-teaser {
  margin-top: 2rem;
  font-size: 1.1rem;
  opacity: 0.8;
  font-style: italic;
}

/* Audience */
.audience {
  padding: 4rem 0;
  background: white;
}

.audience-text {
  font-size: 1.25rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Features */
.features {
  padding: 4rem 0;
  background: #f8fafc;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  opacity: 0.9; /* Subtle "coming soon" fade */
}

.feature-card:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.features-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  opacity: 0.7;
}

/* Pricing */
.pricing {
  padding: 4rem 0;
  background: white;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0.9;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.pricing-card.featured .cta-button.secondary {
  border-color: white;
  color: white;
}

.pricing-card.featured .features-list li {
  color: rgba(255, 255, 255, 0.9);
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price span {
  font-size: 0.5em;
  font-weight: 400;
}

.price-desc {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  margin-top: 2rem;
}

.features-list li {
  padding: 0.5rem 0;
  border-left: 3px solid transparent;
}

.pricing-card.featured .features-list li {
  border-left-color: rgba(255, 255, 255, 0.3);
}

.payment-note {
  text-align: center;
  margin-top: 3rem;
  opacity: 0.6;
  font-size: 0.9rem;
  font-style: italic;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: #f8fafc;
}

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

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-style: italic;
  opacity: 0.8;
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.testimonial cite {
  font-weight: 600;
  color: #667eea;
  font-style: normal;
}

.testimonials-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  opacity: 0.7;
}

/* Footer CTA */
.footer-cta {
  padding: 4rem 0 2rem;
  background: white;
  text-align: center;
}

.footer-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 1rem;
}

.signup-form button {
  padding: 1rem 2rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.signup-form button:hover {
  background: #5a67d8;
}

.footer-cta a {
  color: #667eea;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .construction-banner {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  .header {
    padding: 1rem;
    margin: 0;
    border-radius: 0;
  }
  .navbar {
    gap: 1rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .signup-form {
    flex-direction: column;
    align-items: center;
  }
  .signup-form input {
    width: 100%;
    max-width: 300px;
  }
}

/* Demo Section */
.demo {
  padding: 4rem 0;
  background: white;
  text-align: center;
}

.demo-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Policies (as before, but ensure it's in your file) */
.policies {
  padding: 4rem 0;
  background: #f8fafc;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.policy-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.policy-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.policy-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.policy-card a {
  color: #667eea;
  text-decoration: none;
}

.policies-note {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive (add to existing media query) */
@media (max-width: 768px) {
  .policies-grid {
    grid-template-columns: 1fr;
  }
  .demo-text {
    font-size: 1.1rem;
  }
}