:root {
  --orange: #f56600;
  --dark: #545454;
  --text: #111111;
  --muted: #555555;
  --line: #bdbdbd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1210px, calc(100% - 72px));
  margin: 0 auto;
}

.section-white {
  background: #ffffff;
}

.section-dark {
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  min-height: 58px;
  padding: 15px 30px;
  background: var(--orange);
  color: #ffffff;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.section-title {
  position: relative;
  margin: 0;
  padding-left: 42px;
  color: var(--dark);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 78px;
  background: currentColor;
}

.section-title.light {
  color: #ffffff;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: min(330px, 36%);
  margin: 0 52px 16px auto;
  color: var(--dark);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.section-kicker::before {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(245, 102, 0, 0.55);
}

.section-kicker.light {
  color: #ffffff;
}

.section-kicker.light::before {
  background: rgba(255, 255, 255, 0.5);
}

.cta-kicker {
  width: 180px;
  margin: -34px 16px 18px auto;
}

.hero {
  min-height: 768px;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.strength-bg,
.strength-overlay {
  display: none;
}

.hero-bg {
  z-index: -1;
  background: url("images/hero-automation.png") center 58% / 112% auto no-repeat;
  opacity: 0.2;
}

.hero-overlay {
  z-index: -2;
  background: #545454;
}

.hero-inner {
  position: relative;
  width: min(1240px, calc(100% - 96px));
  min-height: 768px;
  margin: 0 auto;
}

.hero-nav {
  position: absolute;
  top: 38px;
  right: 2px;
  z-index: 5;
}

.hero-menu {
  display: flex;
  gap: clamp(24px, 3vw, 54px);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-menu a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  color: #ffffff;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(15px, 1.25vw, 22px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.hero-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.hero-menu a:hover,
.hero-menu a:focus-visible {
  color: var(--orange);
}

.hero-menu a:hover::after,
.hero-menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.logo-wrap {
  position: absolute;
  top: 18px;
  left: -22px;
  width: 156px;
  height: 142px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 8px -4px 2px -4px;
  background: rgba(84, 84, 84, 0.1);
  border-radius: 8px;
}

.logo {
  position: relative;
  width: 137px;
  height: auto;
}

.hero-copy {
  position: absolute;
  top: 172px;
  left: 380px;
  width: 780px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 5.1vw, 72px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.no-break {
  white-space: nowrap;
}

.mobile-break {
  display: none;
}

.hero-button {
  margin-top: 38px;
  margin-left: 515px;
}

.hero-points {
  position: absolute;
  left: -26px;
  bottom: 143px;
  padding-left: 22px;
  border-left: 4px solid var(--orange);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.28;
}

.hero-points p {
  position: relative;
  margin: 0;
}

.hero-points p:nth-child(3) {
  padding-bottom: 12px;
}

.hero-points p:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 230px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-points span,
.hero-points strong {
  color: var(--orange);
}

.hero-points span {
  display: inline-block;
  min-width: 56px;
}

.hero-points strong {
  font-weight: 700;
}

.event-info {
  position: absolute;
  left: 50%;
  bottom: 37px;
  transform: translateX(-50%);
  min-width: 360px;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}

.event-info p {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.event-title {
  border-bottom: 2px solid #ffffff;
}

.booth-info {
  position: absolute;
  right: 0;
  bottom: 48px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.problems {
  padding: 84px 0 142px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 110px;
}

.problem-item {
  --problem-color: var(--orange);
  position: relative;
  min-height: 320px;
  padding-top: 92px;
}

.problem-item::before {
  display: none;
}

.problem-item::after {
  display: none;
}

.problem-item-orange {
  --problem-color: var(--orange);
}

.problem-item-blue {
  --problem-color: #2ea7e0;
}

.problem-item-green {
  --problem-color: #00a95f;
}

.problem-number {
  position: absolute;
  left: -2px;
  top: 4px;
  z-index: 1;
  color: var(--problem-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0;
}

.problem-item h3 {
  margin: 0 0 18px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.45;
}

.problem-item p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.problem-item .audience {
  margin-top: 36px;
  font-size: 24px;
  font-weight: 700;
}

.solutions {
  padding: 0 0 76px;
}

.waste-list {
  width: min(1040px, 100%);
  margin: 58px auto 0;
}

.waste-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr 270px;
  align-items: center;
  min-height: 110px;
  margin-bottom: 22px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1);
}

.waste-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 2px;
  height: 22px;
  background: var(--orange);
}

.waste-item:last-child::after {
  display: none;
}

.waste-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-left: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.waste-text {
  padding: 16px 18px 16px 8px;
}

.waste-text h3 {
  margin: 0 0 4px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
}

.waste-text p {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.waste-item img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.automation-support {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
  width: min(1040px, 100%);
  margin: 64px auto 0;
}

.automation-copy {
  text-align: center;
}

.automation-copy h3 {
  display: inline-block;
  margin: 0 0 16px;
  border-bottom: 2px solid var(--orange);
  color: var(--dark);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.automation-copy p {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.automation-support img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.28);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
  margin-top: 58px;
}

.solution-card {
  overflow: hidden;
  border: 1px solid #d0c7bb;
  background: #ffffff;
}

.solution-card img {
  width: 100%;
  height: 236px;
  object-fit: cover;
}

.solution-card:nth-child(3) img {
  width: 200%;
  max-width: none;
  object-position: left center;
}

.solution-body {
  min-height: 186px;
  padding: 25px 24px 24px;
  text-align: center;
}

.solution-body h3 {
  margin: 0 0 15px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.38;
}

.solution-body p {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.strengths {
  min-height: 1120px;
  isolation: isolate;
  background: var(--dark);
}

.strength-inner {
  position: relative;
  padding: 84px 0 78px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 40px;
  width: min(1180px, 100%);
  margin-top: 72px;
  margin-left: 18px;
}

.strength-item {
  display: grid;
  grid-template-columns: 162px 1fr;
  align-items: center;
  gap: 34px;
}

.strength-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 162px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  outline: 4px solid var(--orange);
  background: var(--orange);
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.28;
}

.strength-item p {
  max-width: 380px;
  margin: 0;
  color: #ffffff;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
}

.improvement {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 54px;
  margin-top: 76px;
}

.improvement-copy {
  color: #ffffff;
}

.improvement-copy h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.22;
}

.improvement-copy h3 .accent {
  color: var(--orange);
}

.improvement-copy h3 span:not(.accent) {
  color: #ffffff;
}

.improvement-copy ol {
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.improvement-copy li {
  margin-top: 15px;
  color: #ffffff;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.improvement-copy li span {
  margin-right: 10px;
  color: var(--orange);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 700;
}

.improvement-copy li strong {
  display: inline-block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 23px;
}

.improvement img {
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.flow {
  padding: 84px 0 72px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.flow-step {
  position: relative;
  text-align: center;
}

.flow-step::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 246px;
  width: 1px;
  height: 64px;
  background: #b5b5b5;
}

.flow-step > p {
  margin: 78px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.step-label,
.flow-step h3 {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.flow-step > p {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

.step-label {
  position: relative;
  height: 54px;
  border: 1px solid var(--line);
  border-bottom: 0;
  padding-top: 23px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.step-label span {
  color: var(--orange);
}

.step-label::after,
.step-label::before,
.step-icon::after,
.step-icon::before {
  content: "";
  position: absolute;
  background: var(--orange);
}

.step-label::after {
  right: -1px;
  top: -6px;
  width: 6px;
  height: 38px;
}

.step-label::before {
  right: -1px;
  top: -6px;
  width: 38px;
  height: 6px;
}

.flow-step h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75px;
  margin: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: #111111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.38;
}

.step-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 118px;
  border: 1px solid var(--line);
  border-top: 0;
}

.step-icon::after {
  left: -1px;
  bottom: -6px;
  width: 6px;
  height: 38px;
}

.step-icon::before {
  left: -1px;
  bottom: -6px;
  width: 38px;
  height: 6px;
}

.step-icon svg {
  width: 74px;
  height: 74px;
  fill: none;
  stroke: #5d5d5d;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.cta {
  background: #ffffff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 560px 300px;
}

.cta-panel {
  padding: 78px 72px 50px max(78px, calc((100vw - 1210px) / 2));
  background: var(--orange);
  color: #ffffff;
}

.cta-panel h2 {
  position: relative;
  margin: 0;
  padding-left: 34px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.14;
}

.cta-panel h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 3px;
  height: 72px;
  background: #ffffff;
}

.cta-panel p {
  margin: 54px 0 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.65;
}

.cta-button {
  min-width: 250px;
  min-height: 58px;
  margin-top: 54px;
  padding: 20px 28px;
  background: var(--dark);
  font-size: 22px;
}

.cta-consult,
.cta-factory {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-consult {
  object-position: center;
}

.cta-factory {
  object-position: center;
}

.cta-event {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 86px 0 96px;
  background: var(--dark);
  color: #ffffff;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.55;
}

.cta-event p {
  margin: 0 0 6px;
}

.cta-event-line {
  white-space: nowrap;
}

.proof {
  background: var(--dark);
}

.proof-inner {
  position: relative;
  padding: 58px 0 70px;
  text-align: center;
}

.proof-inner::before {
  display: none;
}

.proof-inner h2 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  width: min(940px, 100%);
  margin: 42px auto 0;
}

.proof-cards::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -120px;
  right: -120px;
  top: 50%;
  height: 82px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(245, 102, 0, 0) 0%,
    rgba(245, 102, 0, 0.42) 18%,
    rgba(245, 102, 0, 0.86) 50%,
    rgba(245, 102, 0, 0.42) 82%,
    rgba(245, 102, 0, 0) 100%
  );
  opacity: 0.72;
}

.proof-card {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 28px 14px 20px;
  border-left: 8px solid var(--orange);
  background: #ffffff;
  color: var(--dark);
  box-shadow: 8px 10px 0 rgba(245, 102, 0, 0.22);
}

.proof-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.proof-card p {
  margin: 0;
  color: var(--dark);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.proof-card strong {
  color: var(--dark);
  font-size: 44px;
}

.proof-card span {
  display: block;
  margin-top: 12px;
  color: var(--dark);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 67px;
  padding: 0 83px;
  color: #111111;
  background: #ffffff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-weight: 700;
}

.footer p {
  margin: 0;
}

.footer > p {
  grid-column: 2;
  text-align: center;
}

.footer div {
  grid-column: 3;
  text-align: right;
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .hero-inner {
    width: min(100% - 56px, 920px);
  }

  .hero-menu {
    gap: 24px;
  }

  .hero-menu a {
    font-size: 15px;
  }

  .hero-copy {
    left: 260px;
    width: calc(100% - 260px);
  }

  .hero-button {
    margin-left: 42%;
  }

  .problem-grid,
  .solution-grid {
    gap: 34px;
  }

  .waste-item {
    grid-template-columns: 86px 1fr 220px;
  }

  .strength-grid {
    gap: 54px 70px;
  }

  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 20px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 520px);
  }

  .section-title {
    padding-left: 24px;
    font-size: 30px;
  }

  .section-title::before {
    top: 6px;
    height: 48px;
  }

  .section-kicker {
    width: min(220px, 58%);
    margin: 0 8px 14px auto;
    font-size: 11px;
  }

  .cta-kicker {
    width: 150px;
    margin: -22px 0 16px auto;
  }

  .button {
    min-height: 50px;
    min-width: 150px;
    font-size: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg {
    background-position: 43% 50%;
    background-size: auto 120%;
    opacity: 0.2;
  }

  .hero-inner {
    width: calc(100% - 32px);
    min-height: 720px;
  }

  .hero-nav {
    top: 18px;
    right: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 7;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(84, 84, 84, 0.22);
    color: #ffffff;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-menu {
    position: absolute;
    top: 58px;
    right: 0;
    z-index: 6;
    display: grid;
    gap: 0;
    width: 190px;
    padding: 13px 18px;
    background: rgba(84, 84, 84, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .hero-nav.is-open .hero-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-menu a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    text-align: right;
  }

  .logo {
    width: 86px;
  }

  .logo-wrap {
    width: 104px;
    height: 96px;
    top: 14px;
    left: -8px;
  }

  .hero-copy {
    top: 136px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(35px, 10.5vw, 50px);
    line-height: 1.48;
  }

  .hero-button {
    margin: 34px auto 0;
  }

  .hero-points {
    left: 0;
    bottom: 150px;
    font-size: 23px;
    text-align: left;
  }

  .event-info {
    bottom: 66px;
    min-width: 280px;
  }

  .event-info p {
    font-size: 14px;
  }

  .booth-info {
    right: 50%;
    bottom: 28px;
    transform: translateX(50%);
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .problems {
    padding: 60px 0 84px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 58px;
  }

  .problem-item {
    min-height: auto;
    padding-top: 76px;
  }

  .problem-item::before {
    display: none;
  }

  .problem-item::after {
    display: none;
  }

  .problem-number {
    left: -2px;
    top: 0;
    font-size: 68px;
  }

  .problem-item h3 {
    font-size: 20px;
  }

  .problem-item p {
    font-size: 15px;
  }

  .problem-item .audience {
    margin-top: 24px;
    font-size: 18px;
  }

  .solutions {
    padding-bottom: 72px;
  }

  .waste-list {
    margin-top: 40px;
  }

  .waste-item {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding: 28px 20px 22px;
    text-align: center;
  }

  .waste-item::after {
    left: 50%;
  }

  .waste-number {
    width: 62px;
    height: 62px;
    margin: 0 0 14px;
    font-size: 22px;
  }

  .waste-text {
    padding: 0;
  }

  .waste-text h3 {
    font-size: 20px;
  }

  .waste-text p {
    font-size: 14px;
  }

  .waste-item img {
    width: min(100%, 280px);
    height: 112px;
    margin-top: 18px;
  }

  .automation-support {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 54px;
  }

  .automation-copy {
    text-align: center;
  }

  .automation-copy h3 {
    font-size: 25px;
  }

  .automation-copy p {
    font-size: 15px;
  }

  .automation-support img {
    width: min(100%, 440px);
    justify-self: center;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .solution-card img,
  .solution-card:nth-child(3) img {
    width: 100%;
    max-width: 100%;
    height: 240px;
    aspect-ratio: 1.48 / 1;
    object-fit: cover;
  }

  .solution-card:nth-child(3) img {
    width: 185%;
    max-width: none;
    transform: none;
    object-position: left center;
  }

  .strengths {
    min-height: auto;
  }

  .strength-inner {
    padding: 62px 0;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 46px 0 0;
  }

  .strength-item {
    grid-template-columns: 118px 1fr;
    gap: 22px;
  }

  .strength-badge {
    width: 118px;
    height: 118px;
    font-size: 23px;
  }

  .strength-item p {
    font-size: 16px;
  }

  .improvement {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 58px;
    text-align: center;
  }

  .improvement-copy ol {
    margin: 0 auto;
    text-align: left;
  }

  .improvement-copy h3 {
    font-size: 29px;
  }

  .improvement-copy li {
    font-size: 14px;
  }

  .improvement-copy li strong {
    font-size: 19px;
  }

  .improvement img {
    width: min(100%, 420px);
  }

  .flow {
    padding: 60px 0 70px;
  }

  .flow .section-title {
    max-width: 340px;
  }

  .mobile-break {
    display: inline;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 46px;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 116px 1fr;
    grid-template-areas:
      "card body";
    column-gap: 18px;
    align-items: center;
    text-align: left;
  }

  .flow-step::after {
    display: none;
  }

  .step-label,
  .flow-step h3,
  .step-icon {
    grid-column: 1;
  }

  .step-label {
    height: 46px;
    padding-top: 17px;
    text-align: center;
    font-size: 13px;
  }

  .flow-step h3 {
    min-height: 60px;
    font-size: 16px;
    text-align: center;
  }

  .step-icon {
    height: 94px;
  }

  .step-icon svg {
    width: 58px;
    height: 58px;
  }

  .flow-step > p {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin: 0;
    font-size: 14px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cta-panel {
    padding: 52px 28px 48px;
  }

  .cta-panel h2 {
    padding-left: 24px;
    font-size: 34px;
  }

  .cta-panel p {
    margin-top: 34px;
    font-size: 14px;
  }

  .cta-button {
    margin-top: 34px;
  }

  .cta-consult,
  .cta-factory {
    height: 250px;
  }

  .cta-event {
    min-height: 210px;
    padding: 0 32px;
    font-size: 20px;
  }

  .proof-inner {
    padding: 40px 0 44px;
  }

  .proof-inner::before {
    display: none;
  }

  .proof-inner h2 {
    font-size: 18px;
  }

  .proof-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 24px;
  }

  .proof-cards::before {
    left: -18px;
    right: -18px;
    height: 36px;
  }

  .proof-card {
    min-height: 118px;
    padding: 14px 4px 10px;
    border-left-width: 4px;
    box-shadow: 4px 5px 0 rgba(245, 102, 0, 0.22);
  }

  .proof-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .proof-card p {
    font-size: 9px;
  }

  .proof-card strong {
    font-size: 21px;
  }

  .proof-card span {
    margin-top: 6px;
    font-size: 7px;
  }

  .footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    min-height: 55px;
    height: 55px;
    padding: 0 8px;
    text-align: center;
    font-size: 5px;
  }

  .footer > p {
    grid-column: 1;
    align-self: center;
    text-align: left;
    white-space: nowrap;
  }

  .footer div {
    grid-column: 2;
    align-self: center;
    justify-self: end;
    text-align: right;
    font-size: 7px;
    line-height: 1.35;
  }

  .footer div p {
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-points {
    font-size: 21px;
  }

  .hero-points span {
    min-width: 48px;
  }

  .section-title {
    font-size: 28px;
  }
}
