:root {
  --color-bg: #ffffff;
  --color-bg-light: #fafafa;
  --color-purple: #912585;
  --color-brown: #40210f;
  --color-blue: #009bdd;
  --color-green: #6eb93c;
  --color-accent-red: #e32d20;
  --color-text-main: #101828;
  --color-text-muted: #4a5565;
  --color-text-light: #738196;
  --font-main: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 1.6rem;
  background: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.45;
}

.page {
  min-height: 100vh;
}

/* Layout helpers */

.section {
  padding: 80px 160px;
  position: relative;
}

.section--light {
  background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.section--green {
  background: rgba(110, 185, 60, 0.3);
}

.section__heading {
  max-width: 768px;
  margin: -40px auto 40px;
  text-align: center;
  padding: 40px 256px 0;
  position: relative;
  height: auto;
}

#message .section__heading {
  background-image: url("../images/message_ttl_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 30% top;
}

#why-us .section__heading {
  background-image: url("../images/why-us_ttl_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 70% bottom;
}

#services .section__heading {
  background-image: url("../images/services_ttl_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 28% top;
}

#process .section__heading {
  background-image: url("../images/process_ttl_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 60% bottom;
}

#portfolio .section__heading {
  background-image: url("../images/portfolio_ttl_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 40% top;
}

.section__title {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.64px;
  margin: 0;
  color: #101828;
  white-space: nowrap;
}

.section__narrow {
  max-width: 896px;
  margin: 0 auto 40px;
}

.section__paragraph {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.45;
  color: #4a5565;
  letter-spacing: -0.08px;
  text-align: center;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
  height: 80px;
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 100%;
  padding: 24px 64px;
}

.header__logo img {
  height: 80px;
  display: block;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__link {
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  font-family: Arial, sans-serif;
  position: relative;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__link:hover {
  background-color: #e5e7eb;
  border-radius: 23px;
}

.header__button {
  padding: 13px 20px;
  background-image: url("../images/contact_off.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 3px;
  color: #fff;
  border: none;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: Arial, sans-serif;
  display: inline-block;
}

.header__button:hover {
  background-image: url("../images/contact_on.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 3px;
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
}

.header__menu-toggle-line {
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.header__menu-toggle.is-active .header__menu-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__menu-toggle.is-active .header__menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.is-active .header__menu-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  background: linear-gradient(to bottom, #fafafa, #ffffff);
  overflow: hidden;
  min-height: 946px;
}


.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 64px 80px;
  position: relative;
  background: url("../images/hero__bg.png");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: right 64px top -60px;
  pointer-events: none;
}

.hero__text {
  max-width: 714px;
  margin-bottom: 60px;
}

.hero__title {
  font-size: 4.0rem;
  line-height: 56px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 0 35px;
  color: #000;
}

.hero__lead {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 16px;
  color: #000;
  letter-spacing: -0.12px;
}

.hero__body {
  font-size: 2.0rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: -0.1px;
}

/* Hero cards */

.hero-cards {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  max-width: 1280px;
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  flex: 0 0 auto;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  min-height: 384px;
}

.hero-card:nth-child(1) {
  width: 340px;
}

.hero-card:nth-child(2) {
  width: 340px;
}

.hero-card:nth-child(3) {
  width: 408px;
}

.hero-card__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.48px;
  line-height: 1.2;
}

.hero-card__desc {
  font-size: 1.8rem;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 20px;
  letter-spacing: -0.09px;
}

.hero-card__image-wrap {
  position: absolute;
  left: 57px;
  top: 179px;
  width: 345px;
  height: 330px;
  border-radius: 32px;
  border: 8px solid #fff;
  box-shadow: 0 0 4.4px rgba(0, 0, 0, 0.08), 0 -5px 19px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card:nth-child(2) .hero-card__image-wrap {
  width: 346px;
  height: 331px;
}

.hero-card:nth-child(3) .hero-card__image-wrap {
  width: 381px;
  height: 323px;
}

/* Problems */

.problem-grid {
  max-width: 896px;
  margin: 40px auto 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 240px 210px;
  gap: 24px;
}

.problem-grid > .problem-card:nth-child(1) {
  grid-area: 1 / 1;
}

.problem-grid > .problem-card:nth-child(2) {
  grid-area: 1 / 2;
}

.problem-grid > .problem-card:nth-child(3) {
  grid-area: 2 / 1;
}

.problem-grid > .problem-card:nth-child(4) {
  grid-area: 2 / 2;
}

.problem-card {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-purple);
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 6px;
  transform: rotate(10deg);
}

.problem-card__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.32;
  padding:20px 0;
  border-top: 4px solid var(--color-purple);
  border-bottom: 2px solid var(--color-purple);
  width: 100%;
}

.problem-card__text {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  letter-spacing: -0.08px;
}

/* Message banners */

.message-banner {
  max-width: 896px;
  margin: 100px auto 0;
  border-radius: 16px;
  padding: 40px 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.08px;
  position: relative;
  overflow: visible;
}

.message-banner::before,
.message-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.message-banner::before {
  width: 128px;
  height: 128px;
  left: -64px;
  top: -64px;
}

.message-banner::after {
  width: 160px;
  height: 160px;
  right: -70px;
  top: 80px;
}

.message-banner--purple {
  background: var(--color-purple);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.message-banner--blue {
  background: var(--color-blue);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.message-banner p {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Features (強み) */

.feature-grid {
  max-width: 1280px;
  margin: 40px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.feature-card {
  width: 298px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 33px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 486px;
  align-items: center;
  text-align: center;
}

.feature-card:nth-child(3) {
  align-items: center;
  justify-content: center;
}

.feature-card__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__icon-wrap--blue {
  background: #e1f0f8;
}

.feature-card__icon-wrap--cyan {
  background: rgba(0, 155, 221, 0.1);
}

.feature-card__icon {
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-card:nth-child(1) .feature-card__icon {
  background-image: url('../images/icon_b_page.png');
}

.feature-card:nth-child(2) .feature-card__icon {
  background-image: url('../images/icon_b_layer.png');
}

.feature-card:nth-child(3) .feature-card__icon {
  background-image: url('../images/icon_b_people.png');
}

.feature-card__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.32;
}

.feature-card__text {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  letter-spacing: -0.08px;
}

/* Services circles */

.service-grid {
  max-width: 1280px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.service-circle {
  width: 300px;
  height: 300px;
  border-radius: 150px;
  background: rgba(255, 255, 255, 0.6);
  padding: 100px 20px 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center 40px;
}

.service-circle:nth-child(1) {
  background-image: url('../images/icon_g_check.png');
}

.service-circle:nth-child(2) {
  background-image: url('../images/icon_g_star.png');
}

.service-circle:nth-child(3) {
  background-image: url('../images/icon_g_search.png');
}

.service-circle:nth-child(4) {
  background-image: url('../images/icon_g_page.png');
}

.service-circle:nth-child(5) {
  background-image: url('../images/icon_g_palet.png');
}

.service-circle:nth-child(6) {
  background-image: url('../images/icon_g_layer.png');
}


.service-circle__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.32;
}

.service-circle__text {
  font-size: 1.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: -0.08px;
}

/* Process */

.process {
  max-width: 960px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px;
  justify-content: center;
  position: relative;
}

.process-step {
  margin-bottom: 40px;
  width: 260px;
  text-align: center;
  position: relative;
}

.process-step:nth-child(5) {
  width: 260px;
}

.process-step__number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #fbdc00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.process-step__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fbdc00;
  line-height: 1.32;
}

.process-step__text {
  min-height: 100px;
  font-size: 1.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin: 8px 0 0;
  letter-spacing: -0.08px;
}

.process-arrow {
  width: 32px;
  height: 150px;
  background-image: url("../images/icon_y_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  flex-shrink: 0;

}

/* Portfolio */

.portfolio-category {
  max-width: 960px;
  margin: 64px auto 0;
}

.portfolio-category:first-child {
  margin-top: 0;
}

.portfolio-category__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  height: 48px;
}

.portfolio-category__icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: rgba(227, 45, 32, 0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.portfolio-category__icon img {
  display: none;
}

.portfolio-category__icon--bag {
  background-image: url("../images/icon_r_bag.png");
}

.portfolio-category__icon--phone {
  background-image: url("../images/icon_r_phone.png");
}

.portfolio-category__icon--heart {
  background-image: url("../images/icon_r_heart.png");
}

.portfolio-category__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.32;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.portfolio-card {
  width: 300px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}

.portfolio-card--tall {
  min-height: 290px;
}

.portfolio-card__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.45;
  letter-spacing: -0.09px;
}

.portfolio-card__text {
  font-size: 1.8rem;
  line-height: 1.625;
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: -0.08px;
}

.portfolio-card__role {
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-accent-red);
  font-size: 1.8rem;
  color: #6a7282;
  letter-spacing: -0.08px;
}

/* Company section */

.company-logo {
  width: 363px;
  margin: 0 auto 44px;
}

.company-logo img {
  width: 100%;
  display: block;
}

.company-block {
  margin: 0 auto 44px auto;
  text-align: center;
}

.company-block__label {
  font-size: 2.0rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 8px;
  line-height: 1.32;
}

.company-block__title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 8px;
  line-height: 40px;
}

.company-block__text {
  font-size: 2.0rem;
  margin: 0;
  line-height: 1.45;
  letter-spacing: -0.1px;
}

/* Footer */

.footer {
  background: var(--color-brown);
  color: #fff;
  padding: 80px 64px 120px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

.footer__left {
  flex: 1;
}

.footer__logo {
  font-size: 3.6rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.72px;
  line-height: 1.45;
}

.footer__desc {
  font-size: 1.8rem;
  margin: 0 0 40px;
  letter-spacing: -0.08px;
  line-height: 1.45;
}


.footer__desc h3 {
    font-size: 2.4rem;
}

.footer__copy {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.45;
}

.footer__right {
  display: flex;
  gap: 40px;
}

.footer__nav {
  width: 130px;
}

.footer__nav-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.08px;
  line-height: 1.45;
}

.footer__nav-link {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-decoration: none;
  color: #fff;
  letter-spacing: -0.08px;
  line-height: 1.45;
}

.footer__nav-link:hover {
  text-decoration: underline;
}

/* ページトップへ戻るボタン */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52x;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.back-to-top img {
  width: 52px;
  height: 52px;
  display: block;
}

.back-to-top__img-on {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s;
}

.back-to-top:hover .back-to-top__img-off {
  opacity: 0;
}

.back-to-top:hover .back-to-top__img-on {
  opacity: 1;
}

/* Responsive */

@media (max-width: 1280px) {
  .section {
    padding: 80px 64px;
  }

  .section__heading {
    padding: 0 64px;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 16px 24px;
  }

  .header__inner {
    padding: 0;
  }
  .hero__inner {
   padding: 40px 24px 60px;
   background-size: 80%;
   background-repeat: no-repeat;
   background-position: right 0px top -30px;
  }

  .hero-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
  }

  .hero-card {
    flex: 0 0 calc(50% - 16px);
    width: auto;
    min-height: 304px;
  }

  .hero-card:nth-child(3) {
    flex-basis: 100%;
    max-width: 408px;
    margin: 0 auto;
  }

  .hero-card__image-wrap {
    position: absolute;
    left: 57px;
    top: 180px;
    height: 185px;
    border-radius: 32px;
    border: 8px solid #fff;
    box-shadow: 0 0 4.4px rgba(0, 0, 0, 0.08), 0 -5px 19px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .hero-card:nth-child(2) .hero-card__image-wrap {
    height: 165.5px;
  }

  .hero-card:nth-child(3) .hero-card__image-wrap {
    height: 161.5px;
  }

  .problem-grid {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
  }

  .problem-grid > .problem-card {
    grid-area: auto;
  }

  .message-banner {
    padding: 24px;
    max-width: 100%;
    overflow: hidden;
  }

  .feature-grid,
  .service-grid {
    justify-content: center;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
  }

  .process-step {
    margin-bottom: 40px;
    width: 260px;
    height: 200px;
    text-align: center;
    position: relative;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(3),
  .process-step:nth-child(5),
  .process-step:nth-child(7),
  .process-step:nth-child(9) {
    flex-basis: calc(33.333% - 0px);
  }

  .process-step:nth-child(2),
  .process-step:nth-child(4),
  .process-step:nth-child(6),
  .process-step:nth-child(8),
  .process-step:nth-child(10) {
    display: none;
  }

  .process-arrow {
    margin: 16px 0;
    display: block;
    height: 32px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .section {
    padding: 56px 32px;
  }

  .section__heading {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .section__title {
    font-size: 2.4rem;
  }

  .section__heading {
    margin: -40px auto 40px;
    padding: 40px 16px 0;
  }

  .back-to-top {
    right: 10px;
  }

  #message .section__heading {
  background-position: left top;
  }
  #why-us .section__heading {
  }

  #services .section__heading {
  background-position: 5% top;
  }

  #process .section__heading {
  background-position: 70% bottom;
  }

  #portfolio .section__heading {
  background-position: 30% top;
  }

  .hero-card__title {
    font-size: 2.0rem;
  }

  .header__menu-toggle {
    display: flex;
    position: absolute;
    right: 24px;
  }

  .header__inner {
    padding: 0;
  }

  .header__logo img {
    height: 50px;
  }

  .header__nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: -9;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__link,
  .header__button {
    width:90%;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    background: none !important;
  }

  .header__link:last-child {
    border-bottom: none;
  }

  .header__button {
    background: var(--color-brown) !important;
    color: #fff;
    border-radius: 4px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__button:hover {
    opacity: 0.8;
    }

  .hero__title {
    font-size: 2.4rem;
    line-height: 1.4;
  }

  .hero-cards {
    flex-direction: column;
  }

  .hero-card {
    flex: 0 0 auto !important;
    width: auto !important;
    padding: 24px 20px;
    min-height: 280px;
  }

  .hero-card:nth-child(3) {
    flex-basis: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-card:nth-child(1),
  .hero-card:nth-child(2),
  .hero-card:nth-child(3) {
    width: auto;
  }

  .hero-card__image-wrap{
    top: 140px;
  }

  .hero__bg-shape {
    right: -10px;
    top: -50px;
    width: 329px;
    height: 308.5px;
  }

  .hero__lead {
    font-size: 2.0rem;
  }

  .hero__body {
    font-size: 1.8rem;
  }

  .section {
    padding: 56px 24px;
  }

  .feature-card {
    width: 100%;
    margin: 0 20px;
    align-items: center;
    text-align: center;
  }

  .feature-card:nth-child(3) {
    align-items: center;
    justify-content: center;
  }

  .problem-card__title,
  .feature-card__title,
  .service-circle__title,
  .process-step__title {
    font-size: 1.8rem;
  }

  .message-banner {
    padding: 24px;
    max-width: 100%;
    overflow: hidden;
  }

  .process {
    flex-direction: column;
  }

  .process-step {
    margin-bottom: 0px;
    width: 100%;
    max-width: 260px;
    text-align: center;
    position: relative;
  }

  .process-arrow {
    margin: 16px 0;
    display: block;
    height: 32px;
    transform: rotate(90deg);
  }

  .process-step__text {
  min-height: 60px;
}

  .portfolio-card {
    width: 100%;
    min-height: 200px;
  }

  .company-block__title {
    font-size: 2.4rem;
  }

  .company-block__text {
    font-size: 1.8rem;
  }

  .problem-card {
    width: 100%;
  }

  .problem-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .footer {
    padding: 56px 24px 80px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 0rem;
  }
  .footer__left {
    position: relative;
  }
  /*.footer__copy {
    position: absolute;
    bottom: -180px;
    left: 0px;
    margin-top: auto;
    padding-top: 24px;
    order: 10;
  }*/
}