@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 8rem 5% 5rem;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.logo-icon {
  width: 40px;
  height: 40px;
  color: #2563eb;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: #2563eb;
  font-weight: 800;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: white;
  color: #2563eb;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Email Signup Styles */
.email-signup {
  max-width: 400px;
  margin: 0 auto;
}

.email-signup h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 500;
  opacity: 0.95;
}

.email-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: stretch;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}

.email-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.email-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.submit-button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.submit-button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Email form in final CTA section */
.final-cta .email-signup {
  max-width: 450px;
}

.final-cta .email-signup h3 {
  display: none;
}

/* Features Section */
.features {
  padding: 6rem 5%;
  background: #f8fafc;
}

.features h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #1e293b;
  font-weight: 600;
}

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

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: #2563eb;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
}

/* Benefits Section */
.benefits {
  padding: 6rem 5%;
  background: #f8fafc;
  color: #333;
}

.benefits h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #1e293b;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.benefit-item h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.benefit-item p {
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 5%;
  background: white;
}

.how-it-works h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #1e293b;
  font-weight: 600;
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  border-radius: 15px;
  background: #f8fafc;
  transition: transform 0.3s ease;
  position: relative;
  text-align: left;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}


.process-step p {
  color: #64748b;
  line-height: 1.8;
  font-weight: 400;
  font-size: 1.05rem;
  margin: 0;
}

/* Final CTA Section */
.final-cta {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  text-align: center;
}

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

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.final-cta p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: #1e293b;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Responsive Design */
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

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

  .benefits h2 {
    font-size: 2.5rem;
  }

  .email-signup {
    max-width: 320px;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input[type="email"] {
    width: 100%;
    font-size: 1rem;
  }

  .submit-button {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 5% 3rem;
  }

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

/* Scroll-triggered animation classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits-grid .benefit-item:nth-child(1) {
  transition-delay: 0.2s;
}

.benefits-grid .benefit-item:nth-child(2) {
  transition-delay: 0.4s;
}

.benefits-grid .benefit-item:nth-child(3) {
  transition-delay: 0.6s;
}

.process-grid .process-step:nth-child(1) {
  transition-delay: 0.1s;
}

.process-grid .process-step:nth-child(2) {
  transition-delay: 0.2s;
}

.process-grid .process-step:nth-child(3) {
  transition-delay: 0.3s;
}

.process-grid .process-step:nth-child(4) {
  transition-delay: 0.4s;
}