/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #1E1E2E;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #1E1E2E;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1E1E2E;
}

.navbar .logo {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
}

.navbar .nav-links li {
  margin-left: 1.5rem;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: url('images/hero-background.jpg') no-repeat center center/cover;
  color: #FFFFFF;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 46, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-subheadline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-buttons, .cta {
  margin-top: 1.5rem;
}

.btn {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0.5rem;
  display: inline-block;
}

.btn.primary {
  background-color: #FF5C00;
  color: #FFFFFF;
}

.btn.primary:hover {
  background-color: #e04e00;
  transform: translateY(-2px);
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #FF5C00;
  color: #FF5C00;
}

.btn.secondary:hover {
  background-color: #FF5C00;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn.tertiary {
  background-color: #B2B2B2;
  color: #FFFFFF;
}

.btn.tertiary:hover {
  background-color: #a0a0a0;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 4rem 0;
}

/* How It Works Section */
.how-it-works .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.how-it-works .step {
  flex: 1;
  min-width: 300px;
}

.how-it-works ol {
  list-style: decimal inside;
  margin-top: 1rem;
}

.how-it-works li {
  margin-bottom: 0.5rem;
}

/* Why Choose Section */
.why-choose .features {
  list-style: none;
  margin-top: 1rem;
}

.why-choose .features li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Case Studies */
.case-studies .case {
  margin-bottom: 2rem;
}

.case-studies img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 1rem;
}

/* Pricing Section */
.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.plan {
  flex: 1;
  min-width: 250px;
  border: 1px solid #B2B2B2;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

/* FAQ Section */
.faq .faq-item {
  margin-bottom: 1.5rem;
}

/* Final CTA & Email Capture */
#email-capture {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#email-capture input[type="email"] {
  padding: 0.75rem;
  width: 300px;
  border: 1px solid #B2B2B2;
  border-radius: 50px;
  outline: none;
}

#email-capture button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  background-color: #FF5C00;
  color: #FFFFFF;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#email-capture button:hover {
  background-color: #e04e00;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #1E1E2E;
  color: #FFFFFF;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
  
  .how-it-works .steps {
    flex-direction: column;
  }
  
  .pricing-plans {
    flex-direction: column;
  }
}
