/* Landing Page Specific Styles */

/* Prevent text overflow */
.feature-card,
.testimonial-content,
.start-info,
.description-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  overflow: hidden;
}

/* Landing Hero Adjustments */
.landing-hero {
  padding-top: 100px;
  padding-bottom: 80px;
  background-image: linear-gradient(to top, #5fb9d7, #035197);
}

.landing-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  font-family: "Raleway", "open sans", helvetica, arial;
  text-align: center;
  margin-bottom: 10px;
}

.landing-hero .intro-text {
  color: #fff;
}

.landing-hero .btn-container {
  margin: 30px 0 40px;
}

.landing-hero .download {
  border-radius: 2px;
  background-color: #a5be00;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  border: solid 2px #a5be00;
}

.landing-hero .download:hover {
  background-color: #96ad00;
}

.landing-hero .hero-img {
  margin-top: 40px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 -10px 35px 0 rgba(0, 0, 0, 0.25);
  padding: 8px;
}

.landing-hero .hero-img img {
  width: 100%;
  display: block;
}

/* Problem/Solution Section */
.problem-solution {
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: #f2f6fa;
  position: relative;
  z-index: 1;
}

.problem-solution:before,
.problem-solution:after {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  transform: skewY(-4deg);
}

.problem-solution:before {
  top: 0;
  transform-origin: 0 100%;
}

.problem-solution:after {
  bottom: 0;
  transform-origin: 100%;
}

.problem-solution .description-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.problem-solution .description-text strong {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 700;
}

/* Benefits Section */
.benefits-section {
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: #f2f6fa;
  position: relative;
  z-index: 1;
}

.benefits-section:before,
.benefits-section:after {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  transform: skewY(-4deg);
}

.benefits-section:before {
  top: 0;
  transform-origin: 0 100%;
}

.benefits-section:after {
  bottom: 0;
  transform-origin: 100%;
}

.benefits-section .feature-card {
  min-height: 320px;
  margin-bottom: 30px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.benefits-section .row > div {
  margin-bottom: 30px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
  color: #035197;
  text-align: center;
  margin: 15px 0 10px;
  line-height: 1.3;
}

.benefits-section .feature-text {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background-color: #035197;
  padding: 60px 0;
  margin: 60px 0;
}

.stat-item {
  margin-bottom: 30px;
  color: #fff;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  font-family: "Raleway", "open sans", helvetica, arial;
  color: #fff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Highlight Section */
.features-highlight {
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: #f2f6fa;
  position: relative;
  z-index: 1;
}

.features-highlight:before,
.features-highlight:after {
  background: inherit;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  transform: skewY(-4deg);
}

.features-highlight:before {
  top: 0;
  transform-origin: 0 100%;
}

.features-highlight:after {
  bottom: 0;
  transform-origin: 100%;
}

.features-highlight .feature-card {
  min-height: 280px;
  margin-bottom: 30px;
  padding: 30px 20px;
  height: 100%;
}

.features-highlight .row > div {
  margin-bottom: 30px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #035197;
  text-align: center;
  margin: 15px 0 15px;
  line-height: 1.3;
}

.features-highlight .feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}

/* Testimonial Section */
.testimonial-section {
  background-color: #f2f6fa;
  padding: 80px 0;
  margin: 60px 0;
}

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

.testimonial-quote {
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote:before {
  content: '"';
  font-size: 60px;
  position: absolute;
  left: -30px;
  top: -10px;
  color: #035197;
  opacity: 0.3;
}

.testimonial-author {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.testimonial-author strong {
  color: #035197;
}

/* CTA Section */
.cta-section {
  padding-top: 80px;
}

.cta-section .start-text p {
  margin-bottom: 15px;
}

.cta-section .start-text strong {
  color: #035197;
  font-weight: 700;
  font-size: 18px;
}

/* Responsive Adjustments */
@media all and (max-width: 1013px) {
  .landing-hero {
    padding-top: 60px;
  }

  .landing-hero h1 {
    font-size: 42px;
  }

  .problem-solution:before,
  .problem-solution:after,
  .benefits-section:before,
  .benefits-section:after,
  .features-highlight:before,
  .features-highlight:after {
    transform: skewY(-8deg);
  }

  .problem-solution,
  .benefits-section,
  .features-highlight {
    padding-top: 100px;
  }
}

@media all and (max-width: 991px) {
  .benefits-section .feature-card,
  .features-highlight .feature-card {
    min-height: auto;
  }

  .stat-number {
    font-size: 36px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

  .testimonial-quote:before {
    font-size: 40px;
    left: -20px;
  }
}

@media all and (max-width: 767px) {
  .landing-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .landing-hero h1 {
    font-size: 32px;
  }

  .landing-hero .intro-text {
    font-size: 16px;
  }

  .problem-solution,
  .benefits-section,
  .features-highlight {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .description-title {
    font-size: 28px;
  }

  .problem-solution .description-text,
  .description-text {
    font-size: 16px;
  }

  .stats-section {
    padding: 40px 0;
    margin: 40px 0;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 16px;
  }

  .benefit-title,
  .feature-title {
    font-size: 18px;
  }

  .testimonial-section {
    padding: 60px 0;
    margin: 40px 0;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .testimonial-quote:before {
    display: none;
  }
}
