{% 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=League+Spartan:wght@300;400;600;700&display=swap" rel="stylesheet">
{% end_require_css %}

{% scope_css %}
/* ============================================
   AutomateNow About Middle Hero Module
   ============================================ */

.about-middle-hero-module {
  width: 100%;
  box-sizing: border-box;
}

.about-middle-hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 667px;
  background: linear-gradient(261.29deg, #81007F 2.12%, #332E61 145.96%);
  padding: 80px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-middle-hero__subtitle {
  font-family: "League Spartan", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 48px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  width: 100%;
}

.about-middle-hero__main-text {
  font-family: "League Spartan", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 64px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  width: 100%;
}

.about-middle-hero__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.about-middle-hero__logo {
  width: 220px;
  height: 52px;
  object-fit: contain;
  display: block;
}

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

@media (max-width: 1200px) {
  .about-middle-hero-container {
    height: auto;
    min-height: 667px;
    padding: 60px 40px;
    gap: 30px;
  }

  .about-middle-hero__subtitle {
    font-size: 40px;
  }

  .about-middle-hero__main-text {
    font-size: 52px;
  }

  .about-middle-hero__logo {
    width: 200px;
    height: auto;
    max-height: 48px;
  }
}

@media (max-width: 768px) {
  .about-middle-hero-container {
    height: auto;
    min-height: 667px;
    padding: 50px 30px;
    gap: 30px;
  }

  .about-middle-hero__subtitle {
    font-size: 32px;
  }

  .about-middle-hero__main-text {
    font-size: 40px;
  }

  .about-middle-hero__logo {
    width: 180px;
    height: auto;
    max-height: 42px;
  }
}

@media (max-width: 480px) {
  .about-middle-hero-container {
    padding: 40px 20px;
    gap: 24px;
  }

  .about-middle-hero__subtitle {
    font-size: 28px;
  }

  .about-middle-hero__main-text {
    font-size: 32px;
  }

  .about-middle-hero__logo {
    width: 160px;
    height: auto;
    max-height: 38px;
  }
}

{% end_scope_css %}

