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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #3E3E3B;
  background-color: #e3dace;
  font-size: 16px;
}

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

/* Header */
.header {
  background: #142632;
  color: #e3dace;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(20, 38, 50, 0.25);
  border-bottom: 3px solid #4C586F;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e3dace;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #e3dace;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #62ABBD;
  background-color: rgba(98, 171, 189, 0.1);
}

/* Hero Section */
.hero {
  background: #142632;
  color: #e3dace;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  border-bottom: 4px solid #4C586F;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: #e3dace;
  position: relative;
  z-index: 1;
}

.hero .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A2AAB0;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.hero .supporting-copy {
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A2AAB0;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  background: #62ABBD;
  color: #e3dace;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s ease;
  border: 3px solid #4C586F;
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  background: #4C586F;
  transform: translateY(-3px);
  border-color: #62ABBD;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  position: relative;
}

.section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #142632;
  line-height: 1.2;
}

.section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #3E3E3B;
  line-height: 1.3;
}

.section p {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  color: #3E3E3B;
  line-height: 1.7;
}

.section ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.section li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

/* Problem Section */
.problem {
  background: #e3dace;
  position: relative;
  border-top: 4px solid #4C586F;
  border-bottom: 4px solid #4C586F;
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.timeline {
  background: #e3dace;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 12px 40px rgba(20, 38, 50, 0.2);
  margin: 3rem 0;
  border: 4px solid #4C586F;
  position: relative;
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-left: 6px solid #62ABBD;
  background: #e3dace;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(20, 38, 50, 0.15);
  border: 2px solid #A2AAB0;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(20, 38, 50, 0.2);
  border-color: #62ABBD;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-period {
  font-weight: 700;
  color: #142632;
  min-width: 140px;
  font-size: 1.1rem;
}

.timeline-description {
  margin-left: 1.5rem;
  color: #3E3E3B;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Solution Section */
.solution {
  background: #e3dace;
  position: relative;
  border-top: 4px solid #4C586F;
  border-bottom: 4px solid #4C586F;
}

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

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

.benefit {
  background: #e3dace;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  border: 4px solid #4C586F;
  box-shadow: 0 8px 25px rgba(20, 38, 50, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(20, 38, 50, 0.25);
  border-color: #62ABBD;
  background: #e3dace;
}

.benefit h4 {
  color: #142632;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Proof Section */
.proof {
  background: #e3dace;
  position: relative;
  border-top: 4px solid #4C586F;
  border-bottom: 4px solid #4C586F;
}

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

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.result-item {
  background: #e3dace;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(20, 38, 50, 0.2);
  border: 4px solid #4C586F;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.result-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(20, 38, 50, 0.25);
  border-color: #62ABBD;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #62ABBD;
  margin-bottom: 0.8rem;
}

.result-label {
  color: #3E3E3B;
  font-size: 1rem;
  font-weight: 500;
}

/* Urgency Section */
.urgency {
  background: #4C586F;
  color: #e3dace;
  text-align: center;
  position: relative;
  border-top: 4px solid #142632;
  border-bottom: 4px solid #142632;
}

.urgency h2 {
  color: #e3dace;
  position: relative;
  z-index: 1;
}

.urgency p {
  color: #A2AAB0;
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Lead Magnet Section */
.lead-magnet {
  background: #e3dace;
  border: 5px solid #142632;
  border-radius: 20px;
  padding: 4rem;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 15px 50px rgba(20, 38, 50, 0.25);
  position: relative;
  overflow: hidden;
}

.lead-magnet h2 {
  color: #142632;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
}

.lead-magnet .subtitle {
  font-size: 1.4rem;
  color: #3E3E3B;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.assessment-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  background: #e3dace;
  padding: 2rem;
  border-radius: 12px;
  border-left: 6px solid #62ABBD;
  border: 3px solid #4C586F;
  box-shadow: 0 6px 20px rgba(20, 38, 50, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 38, 50, 0.2);
  border-color: #62ABBD;
}

.feature h4 {
  color: #142632;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Email Form */
.email-form {
  background: #e3dace;
  padding: 3rem;
  border-radius: 15px;
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 12px 35px rgba(20, 38, 50, 0.2);
  border: 4px solid #4C586F;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #142632;
  font-size: 1.1rem;
}

.form-group input {
  width: 100%;
  padding: 1.2rem;
  border: 3px solid #A2AAB0;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background-color: #e3dace;
  color: #3E3E3B;
}

.form-group input:focus {
  outline: none;
  border-color: #62ABBD;
  background-color: #e3dace;
}

.form-button {
  width: 100%;
  background: #62ABBD;
  color: #e3dace;
  padding: 1.3rem;
  border: 3px solid #4C586F;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}

.form-button:hover {
  background: #4C586F;
  transform: translateY(-2px);
  border-color: #62ABBD;
}

.form-button:disabled {
  background: #A2AAB0;
  cursor: not-allowed;
  transform: none;
  border-color: #A2AAB0;
}

.form-success {
  display: none;
  background: #62ABBD;
  color: #e3dace;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
  border: 3px solid #4C586F;
}

/* Authority Section */
.authority {
  background: #e3dace;
  position: relative;
  border-top: 4px solid #4C586F;
  border-bottom: 4px solid #4C586F;
}

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

.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.credential {
  background: #e3dace;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(20, 38, 50, 0.2);
  border: 4px solid #4C586F;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.credential:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(20, 38, 50, 0.25);
  border-color: #62ABBD;
}

.credential h4 {
  color: #142632;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Final CTA Section */
.final-cta {
  background: #142632;
  color: #e3dace;
  text-align: center;
  position: relative;
  border-top: 4px solid #4C586F;
  border-bottom: 4px solid #4C586F;
}

.final-cta h2 {
  color: #e3dace;
  position: relative;
  z-index: 1;
}

.final-cta p {
  color: #A2AAB0;
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #142632;
  color: #A2AAB0;
  padding: 3rem 0;
  text-align: center;
  border-top: 3px solid #4C586F;
}

.footer p {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2.2rem;
  }
  
  .hero .subtitle {
      font-size: 1.2rem;
  }
  
  .section h2 {
      font-size: 2.2rem;
  }
  
  .nav {
      display: none;
  }
  
  .benefits {
      grid-template-columns: 1fr;
  }
  
  .results-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .assessment-features {
      grid-template-columns: 1fr;
  }
  
  .credentials {
      grid-template-columns: 1fr;
  }
  
  .timeline-item {
      flex-direction: column;
      text-align: left;
  }
  
  .timeline-period {
      min-width: auto;
      margin-bottom: 0.8rem;
  }
  
  .cta-button {
      font-size: 1.1rem;
      padding: 1rem 2rem;
  }
  
  .form-button {
      font-size: 1.1rem;
      padding: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .hero {
      padding: 3rem 0;
  }
  
  .section {
      padding: 3rem 0;
  }
  
  .lead-magnet {
      padding: 2.5rem 1.5rem;
  }
  
  .results-grid {
      grid-template-columns: 1fr;
  }
  
  .hero h1 {
      font-size: 1.8rem;
  }
  
  .section h2 {
      font-size: 1.8rem;
  }
  
  .timeline {
      padding: 1.5rem;
  }
  
  .email-form {
      padding: 2rem;
  }
}
