{% require_css %}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Merriweather:wght@300;400;700&display=swap" rel="stylesheet">
{% end_require_css %}

{% scope_css %}
/* ============================================
   AutomateNow We Do Things Module
   ============================================ */

/* Main Section */
.automatenow-we-do-things {
  width: 100%;
  padding: 100px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.automatenow-we-do-things__container {
  width: 1179px;
  max-width: 100%;
  height: 563px;
  min-height: 563px;
  border-radius: 25px;
  background: linear-gradient(261.29deg, #332E61 2.12%, #4280C7 145.96%);
  padding: 60px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Title */
.automatenow-we-do-things__title {
  width: 100%;
  max-width: 1082px;
  height: auto;
  min-height: 120px;
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

/* Description */
.automatenow-we-do-things__description {
  width: 100%;
  max-width: 840px;
  height: auto;
  min-height: 120px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

/* Rich Text Content Styling */
.automatenow-we-do-things__description p {
  margin: 0 0 15px 0;
  padding: 0;
  color: #FFFFFF;
}

.automatenow-we-do-things__description p:last-child {
  margin-bottom: 0;
}

/* CTA Button */
.automatenow-we-do-things__cta {
  margin-top: 10px;
}

/* Style HubSpot CTA button */
.automatenow-we-do-things__cta .hs-cta-wrapper,
.automatenow-we-do-things__cta a.hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 287px;
  height: 35px;
  border-radius: 30px;
  background: #FF6B35 !important;
  color: #FFFFFF !important;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0 20px;
}

.automatenow-we-do-things__cta .hs-cta-wrapper:hover,
.automatenow-we-do-things__cta a.hs-button:hover {
  background: #E55A2B !important;
}

/* ============================================
   Responsive Styles
   ============================================ */

/* Tablet */
@media (max-width: 1200px) {
  .automatenow-we-do-things {
    padding: 80px 20px;
  }

  .automatenow-we-do-things__container {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 500px;
    padding: 50px 30px;
  }

  .automatenow-we-do-things__title {
    max-width: 100%;
    font-size: 40px;
    min-height: auto;
  }

  .automatenow-we-do-things__description {
    max-width: 100%;
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .automatenow-we-do-things {
    padding: 60px 15px;
  }

  .automatenow-we-do-things__container {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 400px;
    border-radius: 20px;
    padding: 40px 20px;
    gap: 25px;
  }

  .automatenow-we-do-things__title {
    max-width: 100%;
    font-size: 32px;
    line-height: 120%;
    min-height: auto;
  }

  .automatenow-we-do-things__description {
    max-width: 100%;
    font-size: 18px;
    line-height: 140%;
    min-height: auto;
  }

  .automatenow-we-do-things__cta .hs-cta-wrapper,
  .automatenow-we-do-things__cta a.hs-button {
    width: 100%;
    max-width: 287px;
    height: 40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .automatenow-we-do-things {
    padding: 40px 10px;
  }

  .automatenow-we-do-things__container {
    min-height: 350px;
    border-radius: 15px;
    padding: 30px 15px;
    gap: 20px;
  }

  .automatenow-we-do-things__title {
    font-size: 28px;
    line-height: 130%;
  }

  .automatenow-we-do-things__description {
    font-size: 16px;
    line-height: 150%;
  }

  .automatenow-we-do-things__cta .hs-cta-wrapper,
  .automatenow-we-do-things__cta a.hs-button {
    width: 100%;
    max-width: 100%;
  }
}
{% end_scope_css %}

