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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #0a0f1f;
  background: #fff;
}

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

/* Gradient Styles */
.gradient-text {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

.logo img {
  height: 120px;
  width: auto;
}

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

.nav-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0a0f1f;
}

/* Buttons */
.btn {
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.btn-primary {
  background: #0a0f1f;
  color: white;
}

.btn-primary:hover {
  background: #1a2332;
}

.btn-secondary {
  background: transparent;
  color: #0a0f1f;
  border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: #0a0f1f;
}

.btn-gradient {
  background: linear-gradient(to right, #2563eb, #9333ea);
  color: white !important;
}

.btn-gradient:hover {
  opacity: 0.9;
  color: white !important;
}

/* Mobile Menu */
#mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

#mobile-menu {
  display: none;
  border-top: 1px solid #e5e7eb;
  padding: 16px 0;
}

#mobile-menu a {
  display: block;
  padding: 12px 20px;
  color: #6b7280;
  text-decoration: none;
  margin: 4px 0;
}

#mobile-menu .btn {
  margin: 8px 20px;
  display: inline-block;
  text-align: center;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 32px;
}

.email-form {
  display: flex;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 32px;
}

.email-input {
  flex: 1;
  padding: 12px 24px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 16px;
}

.email-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.success-message {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 1.5rem 0;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-message p {
  color: white;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.success-message.hidden {
  display: none;
}

/* Optional: Add a subtle animation when it appears */
.success-message {
  animation: slideIn 0.3s ease-out;
}

.interested-prompt {
  font-size: 1.1rem;
  font-weight: 500;
  color: #4a5568;
  text-align: center;
  margin: 2rem 0 1.5rem 0;
  opacity: 0.9;
}

.interested-prompt:hover {
  opacity: 1;
}

/* Problem Section */
.problem-section {
  background: linear-gradient(to bottom, #fafbfc, #f7f9fb);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(239, 68, 68, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.problem-section h2 {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
  color: #1a1f2e;
  line-height: 1.2;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.problem-item {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(229, 231, 235, 0.5);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.problem-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff6b6b, #ff8787);
  opacity: 0.8;
  transition: width 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.problem-item:hover::before {
  width: 6px;
}

.problem-item h3 {
  color: #2d3748;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem-item:nth-child(1) h3::before {
  content: "📉";
  font-size: 1.2rem;
}

.problem-item:nth-child(2) h3::before {
  content: "📅";
  font-size: 1.2rem;
}

.problem-item:nth-child(3) h3::before {
  content: "📄";
  font-size: 1.2rem;
}

.problem-item p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.solution-preview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
  overflow: hidden;
}

.solution-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.solution-preview h3 {
  margin-bottom: 1.2rem;
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.solution-preview p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.problem-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.problem-item:nth-child(1) {
  animation-delay: 0.1s;
}

.problem-item:nth-child(2) {
  animation-delay: 0.2s;
}

.problem-item:nth-child(3) {
  animation-delay: 0.3s;
}

.solution-preview {
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

/* Features Section */
.features {
  padding: 80px 0;
}

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

.feature-card {
  background: white;
  padding: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #dbeafe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: #2563eb;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: #6b7280;
}

/* Pricing Section */
.pricing {
  background: #f9fafb;
  padding: 80px 0;
}

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

.pricing-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 3px solid #2563eb;
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #2563eb, #9333ea);
  color: white;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  margin: 16px 0;
}

.price span {
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
}

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

.pricing-features li {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-features i {
  color: #10b981;
  margin-top: 2px;
}

/* General Sections */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

/* How It Works */
.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}

.step-number {
  width: 64px;
  height: 64px;
  background: #0a0f1f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.step p {
  color: #6b7280;
}

/* Testimonials Section */
.testimonial {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.testimonial h2 {
  color: white;
  position: relative;
  z-index: 1;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 320px;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem 5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stars {
  margin-bottom: 1.5rem;
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-card blockquote {
  margin-bottom: 2rem;
  font-style: italic;
  color: white;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card cite {
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-weight: 500;
  display: block;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 16px;
  z-index: 2;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

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

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card blockquote {
    font-size: 1.1rem;
  }

  .testimonials-carousel {
    min-height: 380px;
  }
}

/* Carousel Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* FAQ */
.faq {
  background: #f9fafb;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.faq-item p {
  color: #6b7280;
}

/* Footer */
footer {
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:first-child.centered {
  align-items: center;
  text-align: center;
}

.footer-grid img {
  height: 120px;
  width: auto;
}

.footer-grid h4 {
  margin-bottom: 16px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
}

.footer-grid a:hover {
  color: #0a0f1f;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 14px;
}

/* Utilities */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: 14px;
  color: #9ca3af;
}

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

  #mobile-menu-btn {
    display: block;
  }

  #mobile-menu {
    display: block;
  }

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

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

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

  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step-number {
    margin: 0 auto 16px;
  }

  .interested-prompt {
    font-size: 1rem;
    margin: 1.5rem 0 1rem 0;
  }

  .problem-section {
    padding: 3rem 0;
  }

  .problem-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .problem-item {
    padding: 2rem;
  }

  .problem-item h3 {
    font-size: 1.2rem;
  }

  .solution-preview {
    padding: 2rem;
    margin-top: 2rem;
  }

  .solution-preview h3 {
    font-size: 1.5rem;
  }

  .solution-preview p {
    font-size: 1.05rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-grid > div:first-child {
    align-items: center;
    margin-bottom: 16px;
  }

  .footer-grid img {
    height: 80px;
    margin-bottom: 16px;
  }
}
