
body {
  background: #fff;
}

.form-plugin-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: #2068a5;
  color: #fff;
}
.header-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-sizing: border-box;
}

.header-inner h1 {
  font-size: 24px;
  white-space: nowrap;
}
.header-inner h2 {
  background: none;
}

.header-left {
  flex: 1;
  justify-items: end;
  font-size: 16px;
}

.header-plugin {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-self: left;
  gap: 30px;
}

.header-plugin img {
  width: 100px;
  height: 100px;
}

.header-plugin h2 {
  margin: 0;
  white-space: nowrap;
}

.header-info {
  display: grid;
  grid-auto-rows: min-content;
  justify-items: center;
}

.header-info h1 {
  background: transparent;
  font-size: 24px;
}
.header-info p {
  text-align: center;
}

.header-right {
  align-self: center;
}

.header-right img {
  max-width: 100%;
  max-height: 360px;
  height: auto;
  aspect-ratio: auto;
  transition: max-width 0.3s ease, max-height 0.3s ease;
}

.header-info .form-plugin-cta {
  display: inline-block;
  margin-top: 36px;
}

section {
  padding: 5rem 1rem 4rem 1rem;
  width: 100%;
  background: #fff;
  font-size: 16px;
}
section:nth-child(even) {
  background-image: url(https://kaizen-style.com/wp-content/uploads/2025/05/bg-scaled.png);
}

section h2 {
  background: none;
  color: #0c437a;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 3.5rem;
  text-align: center;
}
section h3 {
  color: #0c437a;
}

.section-inner {
  margin: 0 auto;
  width: 1140px;
}

section.features .section-inner {
  display: grid;
  grid-auto-rows: min-content;
}
section.features .section-inner > div {
  display: flex;
  column-gap: 2rem;
  justify-self: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
  width: 100%;
}
section.features .section-inner > div:last-child {
  margin-bottom: 0;
}
section.features .section-inner > div > div {
  width: 45%;
}
section.features .section-inner > div h3 {
  margin-top: 5px;
  margin-bottom: 28px;
}
section.features .section-inner > div p {
  margin-top: 12px;
  margin-bottom: 4px;
}
section.features .section-inner > div img {
  width: 55%;
  max-width: 600px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.36);
}

section.recommend img {
  width: 100%;
}
section.recommend ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2vw;
  margin: 0;
  padding: 4px 2.5vw;
  width: 100%;
  list-style: none;
}
section.recommend ul li {
  text-align: center;
}

section.price p {
  font-size: 2rem;
  text-align: center;
}

section.flow .section-inner > ul {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  column-gap: 28px;
  margin: 0;
  padding: 2rem;
  width: 100%;
  background: #f7f7f7;
  border-radius: 8px;
  list-style: none;
  user-select: none;
}
section:nth-child(even).flow .section-inner > ul {
  background: none;
}
section.flow .section-inner > ul > li {
  display: grid;
  grid-auto-rows: min-content;
  align-items: center;
  justify-items: center;
}
section.flow .section-inner > ul > li div {
  display: grid;
  grid-auto-rows: 150px min-content;
  align-items: center;
  justify-items: center;
  padding: 10px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
}
section.flow .section-inner > ul > li img {
  width: 100%;
  max-width: 120px;
}
section.flow .section-inner > ul > li span {
  display: block;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}
section.flow .section-inner > ul ul {
  list-style: none;
  padding: 0;
}
section.flow .section-inner > ul ul li {
  padding: 4px;
}
section.flow svg {
  font-size: 2rem;
  color: #1d55be;
}
section.flow .fa-angles-right {
  margin-top: 84px;
}
section.flow .fa-angles-down {
  justify-self: center;
  display: none;
}

section.contract {
  padding: 3rem 1rem 5rem 1rem;
  background: #fff;
}
section.contract a {
  margin: 0 8px;
}

.plugin-cta {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 0.75rem 1.5rem;
  width: 145px;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}

.signup {
  display: inline-block;
  background: #1d55be;
  color: #fff;
  padding: 0.75rem 1.5rem;
  width: 145px;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}


@media (max-width: 1172px) {
  .section-inner {
    width: 100%;
  }
}
@media (max-width: 1150px) {
  .form-plugin-header h1 {
    font-size: 20px;
  }

  .header-plugin {
    gap: 16px;
  }
  .header-plugin img {
    width: 100px;
    height: 100px;
  }

  section.flow .section-inner > ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    align-items: center;
    justify-items: start;
    row-gap: 20px;
    margin: 0 auto;
    padding: 2rem 5vw;
    width: 700px;
  }
  section.flow .section-inner > ul > li {
    grid-template-columns: 200px 1fr;
    justify-items: start;
    column-gap: 1rem;
  }
  section.flow .fa-angles-right {
    display: none;
  }
  section.flow .fa-angles-down {
    display: block;
  }
}
@media (max-width: 770px) {
  section h3 {
    text-align: center;
  }
  .header-inner {
    flex-direction: column;
  }
  section.features .section-inner > div {
    display: grid;
    grid-template-rows: min-content;
    justify-items: center;
    row-gap: 1rem;
  }
  section.features .section-inner > div > div {
    grid-row: 1;
    width: 100%;
  }
  section.features .section-inner > div img {
    grid-row: 2;
    width: 100%;
  }

  section.flow .section-inner > ul {
    width: 100%;
  }
  section.flow .section-inner > ul > li {
    grid-template-columns: 140px 1fr;
  }
  section.flow .section-inner > ul > li div {
    grid-auto-rows: 100px min-content;
  }
  section.flow .section-inner > ul > li img {
    width: 100px;
  }
  section.flow .section-inner > ul > li span {
    font-size: 11px;
  }
}

@media (max-width: 660px) {
  .form-plugin-header h1 {
    font-size: 1.2rem;
  }
  .form-plugin-header h2 {
    font-size: 1.2rem;
  }
  .header-plugin img {
    width: 60px;
    height: 60px;
  }

  section {
    padding: 3rem 1rem 2rem 1rem;
  }

  section h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  section h3 {
    font-size: 1.3rem;
  }

  section.features .section-inner > div {
    padding: 0 1rem;
  }
}
@media (max-width: 420px) {
  .form-plugin-header h1 {
    font-size: 1rem;
  }
  .form-plugin-header h2 {
    font-size: 1rem;
  }
  section h2 {
    font-size: 1.6rem;
  }
  section h3 {
    font-size: 1.2rem;
  }
}
