

/* === Hero Section === */
.hero {
  padding: 4rem 0;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a, var(--bg));
}
.heroTitle {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.heroSubtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.signupForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.signupForm input {
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}
.signupForm label {
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.ctaBtn {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ctaBtn:hover {
  transform: scale(1.05);
  background-color: #17a74a;
}

.formFeedback {
  min-height: 1.5em;
  color: var(--primary);
  font-weight: 500;
}

/* === Features Section === */
.features {
  background-color: #111;
  padding: 4rem 0;
  text-align: center;
}
.features h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}
.featuresGrid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.features article {
  background: var(--neutral);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
.features article h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* === CTA Section === */
.ctaSection {
  background-color: #1db95415;
  padding: 4rem 1rem;
  text-align: center;
}
.ctaSection h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ctaSection p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials {
  background-color: #1a1a1a;
  padding: 4rem 1rem;
  text-align: center;
}
.testimonials h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
.testimonialGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.testimonialGrid blockquote {
  background: #0f0f0f;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-style: italic;
}
.testimonialGrid footer {
  margin-top: 1rem;
  color: var(--text);
  font-weight: bold;
}


/* Services Section */
.services {
  background-color: #111;
  padding: 4rem 1rem;
  text-align: center;
}
.services h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
.servicesGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.serviceCard {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
.serviceCard h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.serviceCard p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Newsletter */
.newsletter {
  background-color: #0f0f0f;
  padding: 4rem 1rem;
  text-align: center;
}
.newsletter h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.newsletter p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter input[type="email"] {
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}
.newsletter button {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter button:hover {
  background-color: #17a74a;
}

@media (min-width: 769px) {
  .testimonialGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicesGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featuresGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.introSection,
.featuredTools,
.ctaSection {
  padding: 4rem 1rem;
  text-align: center;
}

.benefitList {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 600px;
}

.benefitList li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.toolCards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.toolCard {
  background: #121212;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.toolCard:hover {
  transform: translateY(-5px);
}

.ctaSection .primaryBtn {
  background-color: #04c2c9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
}


/* Tools.html Page */
/* Tools Page Section */
.toolsSection{
  margin: auto;

}
