/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* General */
body {
  margin: 0;
  font-family: 'muli', sans-serif;
  background: #242C37;
  color: white;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}



a.lp-btn {
  font-family: 'Muli', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(to right, #f37a2b 0%, #f28d2c 100%);
  display: inline-block;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: auto;
  max-width: max-content;
  transition: background 0.3s ease;
}

a.lp-btn:hover {
  background: #f37a2b;
  color: #fff;
  text-decoration: none;
}



/* Hero Section */
.lp-hero {
  background-color: #242c37;
  color: #fff;
  padding: 0;
}

.lp-hero-inner {
  display: flex;
  width: 100vw;
  height: 100%;
  min-height: 550px;
  margin: 0;
  padding: 0;
}

.lp-hero-text {
  width: 50%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-hero-text h1 {
  position: relative;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.3;
  padding-left: 20px;
  margin-bottom: 20px;
}

.lp-hero-text h1::before {
  content: "";
  height: 100%;
  width: 5px;
  background: #f37a2b;
  position: absolute;
  left: 0;
  top: 0;
}

.lp-hero-text h1 span {
  color: #f37a2b;
}

.lp-hero-text {
  width: 50vw;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-hero-subheadline-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 90%;
  color: #ffffff;
}

.lp-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.lp-btn {
  font-family: 'Muli', sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #f37a2b 0%, #f28d2c 100%);
  display: inline-block;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.lp-rating {
  font-size: 0.9rem;
}

.lp-rating span {
  color: gold;
  margin-left: 5px;
}

.lp-google-rating {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.4;
}

.lp-google-rating-score {
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.lp-google-stars {
  display: inline-block;
  vertical-align: middle;
  color: #fb8e28;
  font-size: 1rem;
  letter-spacing: 1px;
}

.lp-google-stars .star {
  display: inline-block;
}

.lp-google-based {
  font-size: 0.75rem;
  color: #ccc;
}


.lp-hero-image-wrapper {
  width: 50vw;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.lp-hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlays */
.lp-gradient-top,
.lp-gradient-left {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.lp-gradient-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, #242c37 0%, rgba(36, 44, 55, 0) 100%);
}

.lp-gradient-left {
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, #242c37 0%, rgba(36, 44, 55, 0) 100%);
}







/* Guarantees Bar */
.lp-guarantees {
  background: #f37021;
  color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
}

.lp-guarantee-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 3rem;
}

.lp-guarantee-list li {
  flex: 1 1 200px;
  max-width: 220px;
}

.lp-guarantee-list img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.lp-guarantee-list h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0 0;
  font-family: 'Muli', sans-serif;
}

.lp-guarantee-list p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  font-family: 'Muli', sans-serif;
  font-weight: 400;
}





/* Wrapper: light background */
.lp-form-wrap {
  background-color: #f6f6f6;
  padding: 3rem 1rem;
}

/* Dark form box */
.lp-form-box {
  background-color: #1f2732;
  color: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.lp-form-box h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

/* Grid layout */
.lp-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Input groups */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  outline: none;
  font-family: 'Muli', sans-serif;
}

/* Button + disclaimer container */
.lp-form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.lp-privacy-note {
  font-size: 0.85rem;
  color: #ccc;
  order: 2;
}

/* Desktop layout changes */
@media (min-width: 768px) {
  .lp-form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
    .lp-privacy-note {
    order: 1;
  }

  .lp-form-footer .lp-btn {
    order: 2;
  }



/* Button */
.lp-btn {
  background: linear-gradient(to right, #f37a2b 0%, #f28d2c 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Muli', sans-serif;
  white-space: nowrap;
}

.lp-btn:hover {
  background: #f37a2b;
}

/* Disclaimer */
.lp-privacy-note {
  font-size: 0.85rem;
  color: #ccc;
  flex: 1 1 auto;
}





  /* Value Proposition Section */
.lp-value-prop {
  background: #fff;
  text-align: center;
  padding: 4rem 1rem 3rem;
  color: #1e242c;
}

.lp-value-prop h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: #1e242c;
}

.lp-value-prop p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

  
  







/* Intro Section */
.lp-intro {
  background: #ffffff;
  padding: 4rem 1rem;
  text-align: left;
}
.lp-intro h2 {
  color: #ff6f1f;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.lp-intro .lp-content {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #2c2f36;
  max-width: 600px;
}



  
/* Process Section */
.lp-process {
  background-color: #ffffff;
  padding: 4rem 1rem;
  color: #1e242c;
}

.lp-process-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.lp-process-text,
.lp-steps {
  flex: 1 1 48%;
  max-width: 48%;
}

.lp-process-text h2 {
  font-size: 1rem;
  text-transform: uppercase;
  color: #f37021;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.lp-intro-title {
  font-size: 2rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #1e242c;
}

.lp-process-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #4b5563;
}

.lp-steps ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-steps li {
  background: #ffffff;
  border-left: 4px solid #f37021;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.lp-steps li h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e242c;
  margin-bottom: 0.5rem;
}

.lp-steps li p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
}

/* Mobile Fix */
@media (max-width: 992px) {
  .lp-process-flex {
    flex-direction: column;
  }

  .lp-process-text,
  .lp-steps {
    max-width: 100%;
    flex: 0 0 100%;
  }
}



/* Case Study */
.lp-case-study {
  padding: 4rem 1rem;
  background: #fff;
  color: #1e242c;
}

.lp-case-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.lp-case-image {
  flex: 1;
  min-width: 300px;
}

.lp-case-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.lp-case-content {
  flex: 1;
  min-width: 300px;
}

.lp-case-label {
  font-size: 1rem;
  text-transform: uppercase;
  color: #f37021;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lp-case-content h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #1e242c;
}

.lp-case-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}








/* Quote Strip */
  .lp-container{
    padding-bottom:4rem;
  }  
  
.lp-quote-strip {
  background: #f37021;
  color: #fcd9c5;
  padding: 4rem 1rem;
  text-align: center;
}

.lp-quote-strip blockquote {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-quote-strip blockquote p {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lp-quote-strip .highlight {
  color: white;
}

.lp-quote-strip cite {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal; /* <-- This removes the italics */
  color: #fcd9c5;
}

  
  
  
  
/* Final CTA */
.lp-final-cta {
  background-color: #f9f9f9;
  text-align: center;
  padding: 4rem 1rem;
}

.lp-final-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #1e242c;
}

.lp-final-cta .lp-btn {
  background-color: #f37021;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.lp-final-cta .lp-btn:hover {
  background-color: #d95f1c;
}



