/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #333;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

/* Color Palette based on the document */
:root {
  --primary-blue: #015ab4;
  --secondary-blue: #248cf7;
  --third-blue: #549bde;
  --light-blue: #9fd2ff;
  --accent-orange: #f97316;
  --dark-gray: #202945;
  --medium-gray: #ddefff;
  --light-gray: #f0f4f8;
  --white: #ffffff;
}

.big-font {
  font-size: 2.8rem;
}

.show-only-pc {
  display: none;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  background: var(--white);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding: 8px 20px;
}

.logo h1 {
  display: inline-block;
  background-image: radial-gradient(circle, rgba(0, 160, 233, 1) 0%, rgba(127, 16, 132, 1) 100%);
  -webkit-background-clip: text;
  font-size: 1.5rem;
  font-weight: bold;

  -webkit-text-fill-color: transparent;
}

.nav-right {
  display: flex;
  flex-direction: row;

  gap: 30px;
}

.nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.nav a {
  transition: color 0.3s ease;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary-blue);
}

.header-inquiry {
  display: flex;
  align-items: center;

  gap: 30px;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;

  gap: 10px;
}

.cta-button .cta-icon {
  fill: #fff;
}

.cta-button:hover .cta-icon {
  fill: var(--accent-orange);
}

.cta-icon {
  width: 24px;
  height: 24px;
}

.btn-style6 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  border: 2px solid var(--accent-orange);
  background-color: var(--accent-orange);
  font-weight: 600;
}

.btn-style6::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  transition: width 0.3s ease;
  background-color: var(--white);
}

.btn-style6:hover {
  color: var(--accent-orange);
}

.btn-style6:hover::before {
  width: 100%;
}

.size-small {
  padding: 0.5em 1em;
  font-size: 0.875rem;
}
.size-medium {
  padding: 0.75em 1.5em;
  font-size: 1rem;
}
.size-large {
  padding: 1em 2em;
  font-size: 1.125rem;
}

.width-auto {
  width: auto;
}
.width-full {
  display: block;
  box-sizing: border-box;
  width: 100%;
}

.radius-none {
  border-radius: 0;
}
.radius-small {
  border-radius: 4px;
}
.radius-medium {
  border-radius: 8px;
}
.radius-large {
  border-radius: 50px;
}

.header-tel {
  position: relative;
  padding-left: 32px;
  text-decoration: none;
  letter-spacing: -0.04em;
  color: var(--primary-blue);
  font-size: 25px;
  font-weight: 700;
}

.header-tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  content: "";
  transform: translateY(-50%);
  background: url(./img/tel-icon.png) no-repeat center center / contain;
}

.cta-button.primary {
  padding: 15px 30px;
  border-color: var(--accent-orange);
  background: var(--accent-orange);
  font-size: 14px;
}

.cta-button.primary:hover {
  border-color: #ea580c;
  background: #ea580c;
}

.cta-button.large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.header__open {
  display: none;
}

.drawer-content {
  display: none;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transform: translateY(20px);
  opacity: 0;
  background: linear-gradient(60deg, #015ab4 0%, #015ab4 35%, #9fd2ff 100%);
}

.hero.loaded {
  transform: translateY(0);
  opacity: 1;
}

.hero .container {
  display: grid;
  align-items: center;
  max-width: 1200px;

  grid-template-columns: 58% 39%;
  gap: 30px;
}

.hero-title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.6;
}

.hero-title .highlight {
  color: var(--white);
}

.hero-subtitle {
  margin-bottom: 60px;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
  color: var(--medium-gray);
  border-radius: 12px;
  background: var(--light-gray);
  font-size: 1.1rem;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;

  object-fit: cover;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  color: var(--primary-blue);
  font-size: 2.2rem;
  font-weight: 800;
}

.section-subtitle {
  margin-bottom: 50px;
  text-align: center;
  color: var(--third-blue);
  font-size: 1.1rem;
  font-weight: 400;
}

.logo-scroll-section {
  padding: 20px 0;
}

.logo-slide {
  display: block;
  width: 160px;
  height: 120px;
  margin: 0 auto;
}

.logo-slide img {
  max-width: 100%;
  height: auto;
}

.myLogoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Problem Section */
.problem {
  position: relative;
  background: var(--white);
}

.problem::after {
  position: absolute;
  z-index: 10;
  bottom: -120px;
  left: 50%;
  width: 100vw;
  height: 120px;
  content: "";
  transform: translateX(-50%);
  background-color: #ffffff;

  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.problem .section-title {
  margin-bottom: 50px;
}

.problem-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.problem-item {
  padding: 30px;
  transition: transform 0.3s ease;
  text-align: center;
  border-radius: 12px;
  background: var(--light-gray);
}

.problem-item:hover {
  transform: translateY(-5px);
}

.problem-icon {
  margin-bottom: 20px;
}

.icon-placeholder {
  margin-bottom: 15px;
  font-size: 3rem;
}

.problem-item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(1.6rem * 1.6 * 2);
  margin-bottom: 15px;
  color: #333;
  font-size: 1.6rem;
  font-weight: 800;
}

.problem-item p {
  color: #333;
  line-height: 1.6;
}

/* Features Section */
.features-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
  padding: 40px;
  transition: transform 0.3s ease;
  border-left: 5px solid var(--primary-blue);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-item h3 {
  margin-bottom: 15px;
  color: var(--dark-gray);
  font-size: 1.4rem;
  font-weight: bold;
}

.feature-description {
  margin-bottom: 20px;
  color: var(--medium-gray);
  line-height: 1.6;
}

.feature-benefit {
  padding: 15px;
  color: var(--dark-gray);
  border-radius: 8px;
  background: var(--light-blue);
  line-height: 1.5;
}

/* Process Section */
.process {
  padding-top: 200px;
  background: var(--medium-gray);
}

.process-steps {
  display: grid;
  max-width: 840px;

  margin-inline: auto;
  gap: 40px;
}

.process-step {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 20px 40px;
  border-radius: 12px;
  background: var(--white);

  gap: 40px;
}

.process-step .step-image {
  flex-shrink: 0;
  width: 28%;
}

.process-step .process-step-right {
  flex-grow: 1;
}

.process-step-right {
  text-align: left;
}

.step-texts-lead {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 800;
}

.step-text {
  margin-top: 16px;
  line-height: 1.6;
}

.step-number {
  padding-bottom: 10px;
  color: var(--primary-blue);
  border-bottom: 1px dashed var(--secondary-blue);
  font-size: 1.8rem;
  font-weight: 800;
}

.step-image img {
  width: 100%;
  height: auto;
}

.process-steps .process-step:not(:last-child) {
  position: relative;
  margin-bottom: 30px;
}

.process-steps .process-step:not(:last-child)::after {
  position: absolute;
  bottom: -62px;
  left: 50%;
  width: 50px;
  height: 50px;
  content: "";
  transform: translateX(-50%);
  background: url(./img/down-arrow.png) no-repeat center center / contain;
}

/* Comparison Section */
.comparison-table {
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px;
}

.comparison-table table {
  overflow: hidden;
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
  color: #333;
  background: var(--light-blue);
  font-weight: bold;
}

.comparison-table th:first-child {
  background: var(--white);
}

.comparison-table td:first-child {
  color: var(--primary-blue);
  background: var(--light-blue);
  font-weight: bold;
}

.comparison-table td:last-child {
  color: var(--primary-blue);
  background: var(--white);
  font-weight: 800;
}

.comparison-table .highlight-column {
  color: var(--white);
  border-right: 4px solid var(--primary-blue);
  border-left: 4px solid var(--primary-blue);
  background: var(--primary-blue);
  font-size: 20px;
  font-weight: 800;
}

.comparison-table table tbody tr:last-child .highlight-column {
  border-bottom: 4px solid var(--primary-blue);
}

/* Pricing Section */
.pricing {
  background: var(--light-gray);
}

.pricing-subtitle {
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  font-size: 1.2rem;
}

.pricing-table {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.pricing-table table {
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  background: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 25px;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
  border-left: 1px solid var(--light-gray);
  font-weight: 600;
}

.pricing-table th {
  text-align: center;
  color: var(--white);
  background: var(--primary-blue);
  font-weight: bold;
}

.pricing-table td:last-child {
  text-align: center;
  color: var(--primary-blue);
  font-size: 20px;
  font-weight: 800;
}

.pricing-note {
  margin-top: 30px;
  text-align: center;
  color: #333;
}

/* Results Section */
.results-container {
}

.results-subtitle {
  margin-bottom: 50px;
  text-align: center;
  color: #333;
  font-size: 1.2rem;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;

  gap: 30px;
}

.result-item {
  width: 100%;
  max-width: 330px;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  background: var(--white);
}

.results-grid .result-item:nth-child(1) {
  background-color: var(--third-blue);
}

.results-grid .result-item:nth-child(2) {
  background-color: var(--light-blue);
}

.results-grid .result-item:nth-child(3) {
  background-color: var(--medium-gray);
}

.result-item h3 {
  margin-bottom: 15px;
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: bold;
}

.result-item p {
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}

.highlight {
  color: var(--primary-blue);
  font-weight: 800;
}

.results-categories {
  text-align: center;
}

.results-categories h3 {
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-size: 1.4rem;
  font-weight: bold;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 10px;
}

.tag {
  padding: 8px 16px;
  color: var(--primary-blue);
  border-radius: 20px;
  background: var(--light-blue);
  font-size: 0.9rem;
  font-weight: 500;
}

.case-button {
  margin-top: 60px;
  text-align: center;
}

.case-button > .cta-button {
  justify-content: center;
  width: 100%;
  max-width: 400px;

  gap: 20px;
  margin-inline: auto;
}

/* FAQ Section */
.faq {
  background: var(--light-gray);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 12px;
  background: var(--white);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #333;
}

.faq-question:hover {
  color: var(--white);
  background: var(--primary-blue);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: bold;
}

.faq-toggle {
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 25px 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  color: #333;
  font-weight: 400;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 25px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* CTA Section */
.cta {
  text-align: center;
  color: var(--white);
  background: var(--white);
}

.cta h2 {
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
}

.cta p {
  margin-bottom: 40px;
  opacity: 0.9;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hubspot-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  background: var(--white);
}

#hubspot-form {
  color: #333;
}

/* HubSpot Form Styling */
#hubspot-form .hs-form {
  font-family: inherit;
}

#hubspot-form .hs-form-field {
  margin-bottom: 20px;
}

#hubspot-form .hs-form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-weight: 600;
}

#hubspot-form .hs-input {
  width: 100%;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
}

#hubspot-form .hs-input:focus {
  border-color: var(--primary-blue);
  outline: none;
}

#hubspot-form .hs-button {
  width: auto !important;
  padding: 13px 28px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  color: var(--white) !important;
  border: 2px solid var(--accent-orange) !important;
  border-radius: 8px !important;
  background: var(--accent-orange) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}

#hubspot-form .hs-button:hover {
  border-color: #ea580c !important;
  background: #ea580c !important;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3) !important;
}

/* Footer */
.footer {
  padding: 50px 0 20px;
  color: var(--white);
  background: var(--primary-blue);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-logo p {
  color: var(--medium-gray);
}

.footer-links {
  display: flex;

  gap: 30px;
}

.footer-links a {
  transition: color 0.3s ease;
  text-decoration: none;
  color: var(--white);
}

.footer-links a:hover {
  color: var(--secondary-blue);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  color: var(--white);
  border-top: 1px solid var(--medium-gray);
}

/* Responsive Design */
@media screen and (min-width: 769px) and (max-width: 999px) {
  .nav {
    display: none;
  }

  .header-inquiry {
    display: none;
  }

  .header__open {
    display: block !important;
  }

  .drawer-icon {
    position: relative;
    z-index: 1050;
    width: 36px;
    height: 21px;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
    top: 10px;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
    top: 10px;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  .drawer-icon__bar {
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    width: 36px;
    height: 3px;
    -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
    transition: top 0.3s linear, -webkit-transform 0.3s linear;
    transition: transform 0.3s linear, top 0.3s linear;
    transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
    border-radius: 6px;
    background: var(--primary-blue);
  }
  .drawer-icon__bar:nth-of-type(2) {
    top: 9px;
  }
  .drawer-icon__bar:nth-of-type(3) {
    top: 18px;
  }
  .drawer-content {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    display: block;
    width: 320px;
    height: 100vh;
    padding: 86px 40px 40px;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background-color: var(--light-gray);
  }
  .drawer-content.is-checked {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .drawer-content__link {
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: right;
    text-decoration: none;
    letter-spacing: 0.48px;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
  }

  .drawer-content__button {
    margin-top: 24px;
    text-align: right;
  }

  .drawer-content__button > .cta-button {
    font-size: 20px;
  }

  #js-drawer-icon.header__open.drawer-icon {
    z-index: 1010;
    border: none;
    background-color: transparent;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-inquiry {
    display: none;
  }

  .header__open {
    display: block !important;
  }

  .drawer-icon {
    position: relative;
    z-index: 1050;
    width: 36px;
    height: 21px;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
    top: 10px;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
    top: 10px;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  .drawer-icon__bar {
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    width: 36px;
    height: 3px;
    -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
    transition: top 0.3s linear, -webkit-transform 0.3s linear;
    transition: transform 0.3s linear, top 0.3s linear;
    transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
    border-radius: 6px;
    background: var(--primary-blue);
  }
  .drawer-icon__bar:nth-of-type(2) {
    top: 9px;
  }
  .drawer-icon__bar:nth-of-type(3) {
    top: 18px;
  }
  .drawer-content {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    display: block;
    width: 320px;
    height: 100vh;
    padding: 86px 40px 40px;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background-color: var(--light-gray);
  }
  .drawer-content.is-checked {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .drawer-content__link {
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: right;
    text-decoration: none;
    letter-spacing: 0.48px;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
  }

  .drawer-content__button {
    margin-top: 24px;
    text-align: right;
  }

  .drawer-content__button > .cta-button {
    font-size: 20px;
  }

  #js-drawer-icon.header__open.drawer-icon {
    z-index: 1010;
    border: none;
    background-color: transparent;
  }

  .hero .container {
    text-align: center;

    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .problem-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .process-step {
    padding: 10px 20px;
    text-align: center;

    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-table td:last-child {
    font-size: 1.05rem;
  }

  .comparison-table {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .comparison-table table {
    width: auto;
    min-width: 700px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;

    gap: 30px;
  }

  .footer-links {
    flex-direction: column;

    gap: 15px;
  }

  .comparison-table,
  .pricing-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td,
  .pricing-table th,
  .pricing-table td {
    padding: 15px 10px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .big-font {
    font-size: 2.6rem;
  }

  .container {
    padding: 0 15px;
  }

  .logo h1 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .process-step {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;

    gap: 10px;
  }

  .process-step .process-step-right {
    text-align: center;
  }

  .feature-item,
  .problem-item,
  .step-content {
    padding: 25px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .cta-button.large {
    padding: 15px 25px;
    font-size: 1rem;
  }
}
