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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #111827;
  background-color: #f8fafc;
}

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

/* Typography */
h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 16px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.25px;
  line-height: 1.3;
  margin-bottom: 12px;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #111827;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background-color: #065f46;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
  color: white;
  padding: 60px 0 80px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.logo {
  margin-bottom: 32px;
}

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

.hero h1 {
  color: white;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image {
  margin-top: 40px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Pain Points Section */
.pain-points {
  padding: 60px 0;
  text-align: center;
}

.pain-points h2 {
  color: #065f46;
  margin-bottom: 36px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pain-item {
  background: white;
  padding: 28px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.pain-item:hover {
  transform: translateY(-2px);
}

.pain-item h3 {
  color: #065f46;
  font-size: 20px;
  margin-bottom: 12px;
}

.pain-item p {
  color: #6b7280;
  font-size: 16px;
}

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

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.feature-reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-reverse .feature-content {
  order: 2;
}

.feature-reverse .feature-image {
  order: 1;
}

.feature-content h3 {
  color: #065f46;
  margin-bottom: 16px;
}

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

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Additional Features Section */
.additional-features {
  padding: 60px 0;
  background: white;
}

.additional-features h2 {
  text-align: center;
  color: #065f46;
  margin-bottom: 32px;
}

.features-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.checkmark {
  color: #10b981;
  font-size: 20px;
  font-weight: bold;
  margin-right: 16px;
  min-width: 24px;
}

.feature-item span:last-child {
  font-size: 16px;
  color: #111827;
}

.jira-integration {
  text-align: center;
  margin-top: 48px;
  padding: 40px 32px;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
}

.integration-text {
  font-size: 20px;
  color: #065f46;
  margin-bottom: 20px;
  font-weight: 600;
}

.jira-logo {
  height: 48px;
  width: auto;
  opacity: 1;
}

/* FAQs Section */
.faqs {
  padding: 60px 0;
}

.faqs h2 {
  text-align: center;
  color: #065f46;
  margin-bottom: 36px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #065f46;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: #6b7280;
}

.faq-answer a {
  color: #059669;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.final-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
  color: white;
  text-align: center;
}

.final-cta h2 {
  color: white;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 20px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .logo img {
    height: 48px;
  }

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

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .feature-reverse {
    grid-template-columns: 1fr;
  }

  .feature-reverse .feature-content,
  .feature-reverse .feature-image {
    order: initial;
  }

  .features,
  .pain-points,
  .additional-features,
  .faqs,
  .final-cta {
    padding: 40px 0;
  }

  .feature {
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .final-cta p {
    font-size: 18px;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 15px;
  }
}
