:root {
  --color-base: #fffdf7;
  --color-text: #111111;
  --color-orange: #fb9039;
  --color-blue: #2563eb;
  --color-green: #00a23f;
  --color-pink: #f33558;
  --color-purple: #6613e8;
  --color-cyan: #00ccd0;
  --color-border: #1f1f1f;
  --color-footer: #f4ede1;
  --content-width: 75rem;
  --side-padding: 1rem;
  --header-height: 5.5rem;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background: var(--color-base);
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.page-loader__bubble {
  position: relative;
  width: 4.5rem;
  height: 3.25rem;
  border-radius: 1.5rem;
  background: var(--color-orange);
}

.page-loader__bubble::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: -0.625rem;
  width: 1rem;
  height: 1rem;
  background: var(--color-orange);
  clip-path: polygon(0 0, 100% 0, 35% 100%);
}

.page-loader__dots {
  position: relative;
  width: 3.5rem;
  height: 1.5rem;
  color: var(--color-orange);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.page-loader__dot-line {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: page-loader-dots 1.5s steps(1, end) infinite;
}

.page-loader__dot-line--one { animation-delay: 0s; }
.page-loader__dot-line--two { animation-delay: 0.5s; }
.page-loader__dot-line--three { animation-delay: 1s; }

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.l-container {
  width: min(100% - 2rem, var(--content-width));
  margin-inline: auto;
}

.c-section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 1rem 1.5rem 0;
}

.site-header__logo {
  width: 10rem;
  pointer-events: auto;
}

.site-header__menu-button {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 220;
  display: grid;
  gap: 0.5rem;
  width: 5.5rem;
  height: 5.5rem;
  padding: 1.25rem;
  border-radius: 0 0 0 1.5rem;
  background: #000;
  pointer-events: auto;
  place-content: center;
  transition: background-color 0.3s ease;
}

.site-header__menu-line {
  display: block;
  width: 2.25rem;
  height: 0.1875rem;
  background: #fff;
  border-radius: 999rem;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  width: min(28rem, 100%);
  padding: 6.5rem 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.35s ease, visibility 0.35s ease;
}

.global-nav__inner {
  height: 100%;
  padding: 2rem 0;
}

.global-nav__list {
  display: grid;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.global-nav__item a {
  display: block;
  padding: 0.75rem 0;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .site-header__menu-button {
  background: #111;
}

body.is-menu-open .site-header__menu-line:nth-child(1) {
  transform: translateY(0.6875rem) rotate(45deg);
}

body.is-menu-open .site-header__menu-line:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .site-header__menu-line:nth-child(3) {
  transform: translateY(-0.6875rem) rotate(-45deg);
}

body.is-menu-open .global-nav {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.hero,
.problems,
.scene,
.about,
.happy,
.industries,
.contact-cta,
.site-footer {
  padding-block: 4rem;
}

.hero {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 2rem;
}

.hero__inner {
  position: relative;
}

.hero__content {
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.hero__heading {
  max-width: 50rem;
  text-align: center;
}

.hero__title {
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.hero__eyebrow {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.hero__visual {
  width: min(100%, 52rem);
}

.hero__visual-image {
  display: grid;
  place-items: center;
}

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

.hero__copy {
  display: grid;
  gap: 0.5rem;
  max-width: 44rem;
  justify-items: center;
  text-align: center;
}

.hero__copy-line {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  text-wrap: balance;
}

.hero__copy-line--accent {
  margin-bottom: 0.25rem;
}

.problems {
  padding-top: 1rem;
}

.problems__box,
.scene__movie,
.feature-card,
.industry-card,
.contact-cta__button {
  border-radius: 32px;
}

.problems__frame {
  position: relative;
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
}

.problems__box {
  position: relative;
  width: 100%;
  padding: 1.75rem 1.25rem 3.75rem;
  border-color: var(--color-orange);
  border-width: 0.25rem;
  border-radius: 32px;
  background: #fff;
}

.problems__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.problems__title-line {
  display: block;
}

.problems__bubbles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 100%;
  margin-inline: 0;
  margin-top: 1.5rem;
}

.problems__bubble {
  --bubble-rotate: 0deg;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: auto;
  padding: 1.125rem 1.125rem 1.25rem;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 0.625rem 1.5rem rgba(17, 17, 17, 0.08);
  transform: rotate(var(--bubble-rotate));
}

.problems__bubble:nth-child(1) { animation-delay: 0.08s; }
.problems__bubble:nth-child(2) { animation-delay: 0.2s; }
.problems__bubble:nth-child(3) { animation-delay: 0.32s; }
.problems__bubble:nth-child(4) { animation-delay: 0.44s; }
.problems__bubble:nth-child(5) { animation-delay: 0.56s; }

.problems__bubble::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 2.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 30% 100%);
}

.problems__bubble-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 100%;
  text-align: left;
  width: 100%;
}

.problems__bubble--blue {
  background: var(--color-blue);
  border-radius: 8px;
  --bubble-rotate: -1.6deg;
}

.problems__bubble--pink {
  background: var(--color-pink);
  border-radius: 999px;
  --bubble-rotate: 1.35deg;
}

.problems__bubble--pink::after,
.problems__bubble--purple::after {
  left: auto;
  right: 2.5rem;
}

.problems__bubble--green {
  background: var(--color-green);
  border-radius: 20px;
  --bubble-rotate: -0.9deg;
}

.problems__bubble--purple {
  background: var(--color-purple);
  border-radius: 8px;
  --bubble-rotate: 0.85deg;
}

.problems__bubble--cyan {
  background: var(--color-cyan);
  border-radius: 999px;
  --bubble-rotate: -1.6deg;
}

.problems__bubble--pink,
.problems__bubble--green,
.problems__bubble--purple,
.problems__bubble--cyan {
  margin-top: 0;
  margin-left: 0;
  max-width: none;
}

.problems__message {
  margin-top: 1.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-orange);
  text-align: left;
}

.problems__message-break {
  display: block;
}

.problems__character {
  position: absolute;
  right: 0.75rem;
  bottom: -8rem;
  width: 9rem;
}

.scene__media {
  position: relative;
  margin-top: 2rem;
}

.scene__movie {
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 12rem;
  background: #333;
  color: #fff;
  border-radius: 4px;
  place-items: center;
}

.scene__movie-text {
  font-size: 2rem;
  font-weight: 700;
}

.scene__phone,
.scene__clerk {
  position: absolute;
  z-index: 1;
}

.scene__phone {
  top: -2rem;
  left: 1rem;
  width: 3.25rem;
  transform: rotate(-8deg);
}

.scene__clerk {
  right: 1rem;
  bottom: -2.5rem;
  width: 4.75rem;
}

.about__inner {
  text-align: center;
}

.about__formula {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.about__formula-group,
.about__formula-result {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.about__formula-group {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.about__formula-result {
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.about__formula-text,
.about__formula-symbol {
  color: var(--color-text);
}

.about__formula-text--accent {
  color: var(--color-blue);
}

.about__formula-note {
  font-size: 0.75em;
  font-weight: 700;
}

.about__formula-logo {
  display: inline-flex;
  align-items: center;
}

.about__formula-logo img {
  width: 12rem;
  height: auto;
}

.about__body {
  display: block;
  margin-top: 2rem;
  font-weight: 700;
  text-align: left;
}

.about__body p {
  display: inline;
}

.greetings-banner {
  overflow: hidden;
  background: #fff;
  border-top: 0.0625rem solid var(--color-pink);
  border-bottom: 0.0625rem solid var(--color-pink);
}

.greetings-banner__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  white-space: nowrap;
  font-size: 2.5rem;
  font-weight: 400;
  animation: greetings-marquee 18s linear infinite;
}

.greetings-banner__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 1rem;
}

.greetings-banner__word--blue {
  color: var(--color-blue);
}

.greetings-banner__word--orange {
  color: var(--color-orange);
}

.greetings-banner__word--green {
  color: var(--color-green);
}

.greetings-banner__word--pink {
  color: var(--color-pink);
}

@keyframes greetings-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 2rem));
  }
}

@keyframes page-loader-dots {
  0%,
  33.333% {
    opacity: 0;
  }

  33.334%,
  100% {
    opacity: 1;
  }
}

@keyframes hero-content-popup {
  from {
    opacity: 0;
    transform: translateY(1.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes problems-bubble-pop {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.92) rotate(var(--bubble-rotate));
  }

  72% {
    opacity: 1;
    transform: translateY(-0.25rem) scale(1.03) rotate(var(--bubble-rotate));
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--bubble-rotate));
  }
}

@keyframes feature-card-image-fade {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js .hero__content {
  opacity: 0;
  transform: translateY(1.75rem);
}

.js .hero__content.is-inview {
  animation: hero-content-popup 1.15s ease-out 0.08s both;
}

.js .problems__bubble {
  opacity: 0;
  transform: translateY(1.5rem) scale(0.92) rotate(var(--bubble-rotate));
}

.js .problems__bubble.is-inview {
  animation: problems-bubble-pop 0.72s cubic-bezier(0.2, 0.8, 0.2, 1.15) both;
}

.js .feature-card,
.js .industry-card {
  opacity: 0;
  transform: translateY(1.25rem);
}

.js .feature-card.is-inview,
.js .industry-card.is-inview {
  animation: feature-card-image-fade 0.8s ease-out both;
}

.happy__list,
.industries__list {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-card {
  display: grid;
  overflow: hidden;
  color: #fff;
}

.feature-card:nth-child(1) { animation-delay: 0.08s; }
.feature-card:nth-child(2) { animation-delay: 0.22s; }
.feature-card:nth-child(3) { animation-delay: 0.36s; }
.feature-card:nth-child(4) { animation-delay: 0.5s; }

.feature-card__image {
  height: 100%;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card--pink { background: var(--color-pink); }
.feature-card--green { background: var(--color-green); }
.feature-card--orange { background: var(--color-orange); }
.feature-card--purple { background: var(--color-purple); }

.feature-card--pink .feature-card__icon-item { color: var(--color-pink); }
.feature-card--green .feature-card__icon-item { color: var(--color-green); }
.feature-card--orange .feature-card__icon-item { color: var(--color-orange); }
.feature-card--purple .feature-card__icon-item { color: var(--color-purple); }

.feature-card__content {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.feature-card__title {
  font-size: 1.75rem;
  font-weight: 800;
}

.feature-card__icon-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-card__icon-item {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 0.375rem;
  flex: 0 0 6.5rem;
  align-self: flex-start;
  width: 6.5rem;
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 0.625rem;
  border-radius: 4px;
  background: #fff;
  color: currentColor;
  text-align: center;
  font-weight: 700;
}

.feature-card__icon-item img {
  width: 3rem;
  margin-inline: auto;
  align-self: center;
}

.feature-card__icon-item span {
  display: block;
  align-self: start;
  font-size: 0.75rem;
  line-height: 1.3;
}

.industries {
  position: relative;
  background: var(--color-base);
  padding-bottom: 0;
}

.industries__dome {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  background: var(--color-blue);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin-top: 2rem;
  overflow: hidden;
}

.industries__dome-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 100%;
  padding-bottom: 0;
}

.industries__group {
  width: clamp(11.5rem, 40vw, 15rem);
  margin-bottom: 0;
}

.industries__group img {
  width: 100%;
  height: auto;
  display: block;
}

.industries__content {
  background: var(--color-blue);
}

.industries__inner {
  padding-top: 1.5rem;
  padding-bottom: 6rem;
}

.industries__title {
  margin: 0 0 2rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  text-align: center;
}

.industries__bottom-wave {
  display: block;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: -0.0625rem;
  background: var(--color-blue);
  line-height: 0;
}

.industries__bottom-wave svg {
  display: block;
  width: 100%;
  height: 4.5rem;
}

.industry-card {
  display: grid;
  overflow: hidden;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #000;
  background: #fff;
}

.industry-card:nth-child(1) { animation-delay: 0.08s; }
.industry-card:nth-child(2) { animation-delay: 0.22s; }
.industry-card:nth-child(3) { animation-delay: 0.36s; }
.industry-card:nth-child(4) { animation-delay: 0.5s; }

.industry-card__image {
  overflow: hidden;
  border-radius: 32px;
}

.industry-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
}

.industry-card__content {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.industry-card__title {
  width: min(100%, 15rem);
  margin-top: -3rem;
  margin-left: 0.75rem;
  transform: rotate(-7deg);
  transform-origin: left center;
  pointer-events: none;
}

.industry-card__title img {
  width: 100%;
  height: auto;
}

.industry-card__points {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
  align-content: center;
  font-weight: 700;
}

.contact-cta {
  margin-top: -0.0625rem;
  background: var(--color-orange);
}

.contact-cta__inner {
  position: relative;
  display: grid;
  gap: 8rem;
  justify-items: center;
  padding-bottom: 6rem;
  text-align: center;
  color: #fff;
}

.contact-cta__lead {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 800;
}

.contact-cta__lead-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 64rem);
  min-height: clamp(7.5rem, 15vw, 10rem);
}

.contact-cta__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(8rem, 16vw, 11rem);
  height: auto;
  opacity: 0.42;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: contact-ring-spin 16s linear infinite;
  will-change: transform;
}

.contact-cta__ring-text {
  fill: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.contact-cta__cta {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 30rem);
}

.contact-cta__button {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2.125rem minmax(0, 1fr) 2.125rem;
  align-items: center;
  column-gap: 0.875rem;
  width: 100%;
  padding: 1.75rem 2.75rem;
  border: 1px solid #000;
  border-radius: 9999px;
  background: #fff;
  color: var(--color-orange);
  font-size: 1.5rem;
  font-weight: 800;
}

.contact-cta__button::before {
  content: "";
  grid-column: 1;
  width: 2.125rem;
  height: 2.125rem;
}

.contact-cta__button-text {
  display: block;
  grid-column: 2;
  text-align: center;
}

.contact-cta__button-arrow {
  grid-column: 3;
  display: grid;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 300;
  justify-self: center;
  transform: translateY(-1px);
  place-items: center;
}

.contact-cta__person {
  position: absolute;
  z-index: 2;
  width: 4.75rem;
  pointer-events: none;
}

.contact-cta__person--left {
  top: -1.75rem;
  left: -0.5rem;
  width: 3rem;
}

.contact-cta__person--right {
  right: -0.625rem;
  bottom: -2.5rem;
  width: 4rem;
}

@keyframes contact-ring-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.site-footer {
  padding-block: 1.75rem;
  background: var(--color-footer);
}

.site-footer__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.site-footer__logo {
  width: 10rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.875rem;
}

.site-footer__copyright {
  padding-top: 1.5rem;
  border-top: 0.0625rem solid #888;
  font-size: 0.75rem;
  text-align: center;
}

.contact-page__main {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.contact-page__intro {
  padding-top: 2rem;
}

.contact-page__intro-inner {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.contact-page__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact-page__lead {
  max-width: 42rem;
  font-size: 1rem;
  text-wrap: balance;
}

.contact-form-section {
  padding-top: 2rem;
}

.contact-form-section__inner {
  display: grid;
  gap: 0;
}

.contact-form-section__panel {
  width: min(100%, 52rem);
  margin-inline: auto;
  padding: 1.5rem;
  border: 2px solid var(--color-orange);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 0.875rem 2rem rgba(17, 17, 17, 0.06);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form-section__panel .wpcf7 {
  width: 100%;
}

.contact-form-section__panel .wpcf7-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form-section__panel .wpcf7-form p {
  margin: 0;
}

.contact-form-section__panel .wpcf7-form label {
  display: grid;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
}

.contact-form-section__panel .wpcf7-form-control-wrap {
  display: grid;
}

.contact-form-section__panel .wpcf7-text,
.contact-form-section__panel .wpcf7-email,
.contact-form-section__panel .wpcf7-tel,
.contact-form-section__panel .wpcf7-textarea {
  width: 100%;
  padding: 0.9375rem 1rem;
  border: 0.0625rem solid #d2c9ba;
  border-radius: 1rem;
  background: #fffdfb;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form-section__panel .wpcf7-textarea {
  min-height: 12rem;
  resize: vertical;
}

.contact-form-section__panel .wpcf7-text:focus,
.contact-form-section__panel .wpcf7-email:focus,
.contact-form-section__panel .wpcf7-tel:focus,
.contact-form-section__panel .wpcf7-textarea:focus {
  border-color: var(--color-blue);
  outline: 0.1875rem solid rgba(37, 99, 235, 0.18);
  outline-offset: 0.125rem;
}

.contact-form-section__panel .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.contact-form-section__panel .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 400;
}

.contact-form-section__panel .wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: auto;
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1875rem;
  border: 1px solid #000;
  border-radius: 0.25rem;
  background: #fff;
  accent-color: var(--color-orange);
  flex-shrink: 0;
  cursor: pointer;
}

.contact-form-section__panel .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 18rem);
  padding: 1rem 2rem;
  border: 1px solid #000;
  border-radius: 9999px;
  background: var(--color-orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.contact-form-section__panel .wpcf7-spinner {
  margin: 0.5rem 0 0;
}

.contact-form-section__panel .wpcf7-not-valid-tip,
.contact-form-section__panel .wpcf7-response-output {
  font-size: 0.875rem;
}

.contact-form-section__panel .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: var(--color-pink);
}

.contact-form__note {
  font-size: 0.875rem;
  color: #555;
}

.contact-form__field {
  display: grid;
  gap: 0.625rem;
}

.contact-form__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.contact-form__label {
  font-size: 1rem;
  font-weight: 700;
}

.contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.1875rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-form__badge--required {
  background: var(--color-pink);
  color: #fff;
}

.contact-form__badge--optional {
  background: #f2ede4;
  color: #555;
}

.contact-form__control {
  display: grid;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.9375rem 1rem;
  border: 0.0625rem solid #d2c9ba;
  border-radius: 1rem;
  background: #fffdfb;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form__textarea {
  min-height: 12rem;
  resize: vertical;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-blue);
  outline: 0.1875rem solid rgba(37, 99, 235, 0.18);
  outline-offset: 0.125rem;
}

.contact-form__error {
  min-height: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-pink);
}

.contact-form__agreement {
  display: grid;
  gap: 0.5rem;
}

.contact-form__agreement-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-form__checkbox {
  -webkit-appearance: checkbox;
  appearance: auto;
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1875rem;
  border: 1px solid #000;
  border-radius: 0.25rem;
  background: #fff;
  accent-color: var(--color-orange);
  flex-shrink: 0;
  cursor: pointer;
}

.contact-form__agreement-text {
  display: block;
}

.contact-form__actions {
  padding-top: 0.5rem;
  text-align: center;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 18rem);
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: var(--color-orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.thanks-page__main {
  flex: 1;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks-page__section {
  padding-top: 2rem;
}

.thanks-page__inner {
  display: grid;
}

.thanks-page__panel {
  width: min(100%, 46rem);
  margin-inline: auto;
  padding: 2rem 1.5rem;
  border: 0.1875rem solid var(--color-orange);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 0.875rem 2rem rgba(17, 17, 17, 0.06);
  text-align: center;
}

.thanks-page__eyebrow {
  color: var(--color-orange);
  font-size: 1.25rem;
  font-weight: 800;
}

.thanks-page__title {
  margin-top: 0.75rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
  text-wrap: balance;
}

.thanks-page__lead {
  margin-top: 0.75rem;
  font-size: 1rem;
}

.thanks-page__actions {
  margin-top: 2rem;
}

.thanks-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 16rem);
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: var(--color-orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

@media (min-width: 435px) {
  .contact-form-section__panel {
    padding: 2rem;
  }

  .thanks-page__panel {
    padding: 2.5rem 2rem;
  }

  .contact-cta__cta {
    width: min(100%, 33rem);
  }

  .contact-cta__person {
    width: 5.5rem;
  }

  .contact-cta__person--left {
    top: -6rem;
    left: 2.2rem;
    width: 4.5rem;
  }

  .contact-cta__person--right {
    right: 4rem;
    bottom: -7rem;
  }

  .industries__group {
    width: min(100%, 19rem);
  }

  .industries__dome {
    margin-top: 2.5rem;
  }

  .industries__inner {
    padding-top: 1.75rem;
  }

  .industries__dome-inner {
    padding-bottom: 0;
  }

  .industries__title {
    font-size: 2.125rem;
  }

  .about__body {
    display: grid;
    gap: 0.75rem;
    text-align: center;
  }

  .about__body p {
    display: block;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .problems__bubbles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
    max-width: 32rem;
    margin-inline: auto;
  }

  .problems__bubble {
    max-width: 15rem;
    min-height: 6rem;
  }

  .problems__character {
    bottom: -4.75rem;
    width: 14rem;
  }

  .scene__phone {
    width: 4rem;
  }

  .scene__clerk {
    width: 7rem;
  }
}

@media (min-width: 768px) {
  :root {
    --side-padding: 1.5rem;
  }

  .c-section-title {
    font-size: 2.75rem;
  }

  .contact-page__main {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 5rem;
  }

  .thanks-page__main {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 5rem;
  }

  .contact-page__intro {
    padding-top: 3rem;
  }

  .thanks-page__section {
    padding-top: 3rem;
  }

  .contact-page__intro-inner {
    gap: 1rem;
  }

  .contact-page__title {
    font-size: 3rem;
  }

  .thanks-page__title {
    font-size: 2rem;
  }

  .contact-page__lead,
  .contact-form-section__description {
    font-size: 1.0625rem;
  }

  .thanks-page__eyebrow {
    font-size: 1.5rem;
  }

  .thanks-page__lead {
    font-size: 1.0625rem;
  }

  .contact-form-section {
    padding-top: 3rem;
  }

  .contact-form-section__inner {
    gap: 0;
  }

  .contact-form-section__panel {
    padding: 2.5rem;
  }

  .hero,
  .problems,
  .scene,
  .about,
  .happy,
  .contact-cta {
    padding-block: 6rem;
  }

  .site-footer {
    padding-block: 2.5rem;
  }

  .industries {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 2.5rem;
  }

  .hero__content {
    gap: 2.5rem;
  }

  .hero__title {
    font-size: 4.25rem;
  }

  .hero__eyebrow {
    font-size: 1rem;
  }

  .hero__visual {
    width: min(100%, 64rem);
  }

  .hero__copy {
    gap: 0.75rem;
  }

  .hero__copy-line {
    font-size: 2rem;
  }

  .problems {
    padding-top: 0.5rem;
  }

  .problems__box {
    padding: 2.75rem 2.5rem 3.5rem;
  }

  .problems__title {
    font-size: 1.375rem;
  }

  .problems__bubbles {
    margin-top: 2rem;
  }

  .problems__bubble {
    max-width: none;
    min-height: 6.5rem;
  }

  .problems__character {
    right: 1rem;
    bottom: -2.5rem;
    width: 7rem;
  }

  .feature-card,
  .industry-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .industry-card__title {
    width: min(100%, 18rem);
    margin-top: 0;
    margin-left: -4rem;
    margin-bottom: -0.25rem;
  }

  .about__formula {
    flex-direction: row;
    gap: 0.25rem 0.5rem;
    font-size: 1.625rem;
  }

  .about__formula-result {
    gap: 0.25rem;
    margin-top: 0;
  }

  .greetings-banner__track {
    gap: 4rem;
    font-size: 4rem;
  }

  .greetings-banner__group {
    gap: 4rem;
  }

  .industries__dome {
    margin-top: 3rem;
  }

  .industries__group {
    width: clamp(20rem, 50vw, 32rem);
  }

  .industries__inner {
    padding-top: 2rem;
  }

  .industries__dome-inner {
    padding-bottom: 2.5rem;
  }

  .industries__title {
    font-size: 2.5rem;
  }

  .industries__bottom-wave svg {
    height: 6rem;
  }

  .contact-cta__lead {
    font-size: 1.5rem;
  }

  .contact-cta__cta {
    width: min(100%, 36rem);
  }

  .contact-cta__button {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    column-gap: 1rem;
    padding: 2rem 4.5rem;
    font-size: 1.75rem;
  }

  .contact-cta__button::before {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact-cta__button-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .contact-cta__person {
    width: 6.25rem;
  }

  .contact-cta__person--left {
    top: -3rem;
    left: -2.75rem;
    width: 5rem;
  }

  .contact-cta__person--right {
    right: -1.75rem;
    bottom: -4rem;
  }

  .site-footer__inner {
    grid-template-columns: auto 1fr;
    gap: 2rem 2rem;
  }

  .site-footer__nav {
    justify-content: flex-end;
    justify-self: end;
  }

  .site-footer__copyright {
    grid-column: 1 / -1;
    padding-top: 1rem;
  }
}

@media (min-width: 435px) and (max-width: 767px) {
  .industries__group {
    width: min(100%, 19rem);
  }
}

@media (min-width: 1024px) {
  .c-section-title {
    font-size: 3.5rem;
  }

  .problems__message-break {
    display: none;
  }

  .problems__bubbles {
    grid-template-columns: repeat(5, minmax(11.25rem, 1fr));
    align-items: start;
    gap: 0;
    margin-top: 2rem;
    max-width: 58rem;
    margin-inline: 0 auto;
  }

  .problems__bubble {
    min-height: 7rem;
    padding: 1.25rem 1.25rem 1.375rem;
  }

  .problems__bubble--blue {
    --bubble-rotate: -1.5deg;
    z-index: 2;
  }

  .problems__bubble--pink {
    --bubble-rotate: -3deg;
    margin-top: 5rem;
    margin-left: -1.75rem;
    z-index: 3;
  }

  .problems__bubble--green {
    --bubble-rotate: -3.5deg;
    margin-left: -3.5rem;
    max-width: 12.25rem;
    z-index: 1;
  }

  .problems__bubble--purple {
    --bubble-rotate: 0.75deg;
    margin-top: 4.6rem;
    margin-left: -4.5rem;
    z-index: 2;
  }

  .problems__bubble--cyan {
    --bubble-rotate: 2.5deg;
    margin-top: -0.125rem;
    margin-left: -6rem;
    z-index: 2;
  }

  .hero__title {
    font-size: 4.875rem;
  }

  .hero__copy-line {
    font-size: 2.25rem;
  }

  .problems__character {
    right: 0.5rem;
    bottom: -4.5rem;
    width: 13rem;
  }

  .scene__movie {
    min-height: 16rem;
  }

  .about__formula {
    font-size: 2rem;
  }

  .greetings-banner__track {
    gap: 4rem;
    font-size: 5rem;
  }

  .greetings-banner__group {
    gap: 4rem;
  }

  .industries__dome {
    margin-top: 4rem;
  }

  .industries__group {
    width: clamp(32rem, 54vw, 55rem);
  }

  .industries__inner {
    padding-top: 2.25rem;
  }

  .industries__dome-inner {
    padding-bottom: 2.75rem;
  }

  .industries__title {
    font-size: 3rem;
  }

  .industries__bottom-wave svg {
    height: 7rem;
  }

  .contact-cta__lead {
    font-size: 1.5rem;
  }
}

@media (hover: hover) {
  a,
  button {
    transition: opacity 0.3s ease;
  }

  a:hover,
  button:hover {
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader__dot-line {
    transition: none;
    animation: none;
  }

  .page-loader__dot-line--three {
    opacity: 1;
  }

  .hero__content {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .problems__bubble {
    animation: none;
    opacity: 1;
    transform: rotate(var(--bubble-rotate));
  }

  .feature-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .industry-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
