:root {
  --bg: #f6f7f5;
  --accent: #e97a3d;
  --accent-dark: #d7662a;
  --main: #1f3c45;
  --sub: #5e7480;
  --ink: #101828;
  --white: #ffffff;
  --line: rgba(31, 60, 69, 0.14);
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--main);
  background: var(--bg);
  font-family: var(--font-jp);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0;
}

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

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 245, 0.86);
  border-bottom: 1px solid rgba(31, 60, 69, 0);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(31, 60, 69, 0.06);
}

.header-inner {

  min-height: 74px;
  margin: 0 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.brand img {
  width: 176px;
}

.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.global-nav a {
  transition: color 0.2s ease;
}

.global-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.hero-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(233, 122, 61, 0.24);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-outline {
  color: var(--main);
  border-color: rgba(31, 60, 69, 0.58);
  background: rgba(255, 255, 255, 0.22);
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--white);
}

.button-small {
  min-width: 136px;
  min-height: 40px;
  padding: 0 24px;
  font-size: 16px;
}

.sp-no {
  display: block;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 526px;
  padding: 80px 0 40px;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero::before {
  width: 650px;
  height: 300px;
  right: -122px;
  top: 0;
  background-image: url("../images/bg02.png");
  background-position: right top;
}

.hero::after {
  width: 460px;
  height: 966px;
  left: -292px;
  bottom: 170px;
  background-image: url("../images/bg01.png");
  background-position: left bottom;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(540px, 1fr) minmax(520px, 0.95fr);
  gap: 0;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: 6px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 25px;
  padding: 5px 12px 6px;
  color: var(--white);
  background: var(--main);
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.15em;
}

.hero h1 {
  margin: 0 0 24px;
  color: #121929;
  font-size: clamp(40px, 3.8vw, 64px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-title-line {
  display: inline;
}

.hero-lead,
.hero-text {
  margin: 0;
  color: #16202f;
  font-size: 16px;
  line-height: 1.9;
}

.hero-text {
  margin-top: 7px;
}

.hero-cta {
  position: relative;
  width: min(512px, 100%);
  min-height: 132px;
  margin-top: 46px;
  padding: 30px 92px 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 18px 36px rgba(233, 122, 61, 0.26);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 22px 40px rgba(233, 122, 61, 0.3);
}

.hero-cta span {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.hero-cta strong {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.hero-cta>img {
  position: absolute;
  right: 44px;
  top: 50%;
  width: 26px;
  height: 24px;
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 440px;
  align-self: stretch;
  margin-left: -120px;
}

.hero-visual img {
  position: absolute;
  user-select: none;
  pointer-events: none;
}

.visual-before {
  width: min(47vw, 520px);
  left: -80px;
  bottom: 2px;
  z-index: 2;
}

.visual-arrow {
  width: 48px;
  left: 40%;
  top: 49%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.visual-after {
  width: min(35vw, 448px);
  right: -34px;
  bottom: -10px;
  z-index: 1;
}

.challenges {
  position: relative;
  overflow: hidden;
  padding: 128px 0 64px;
}

.challenges::before {
  position: absolute;
  content: "";
  width: 560px;
  height: 1066px;
  left: -118px;
  top: 24px;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg01.png") left top / contain no-repeat;
}

.challenges-inner {
  position: relative;
  z-index: 1;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
}

.section-label {
  display: grid;
  justify-items: center;
  color: var(--ink);
  text-align: center;
}

.section-label span {
  width: 8px;
  height: 8px;
  margin-bottom: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.section-label p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.section-label h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.heading-line {
  width: 41px;
  height: 3px;
  margin: 30px auto 27px;
  background: var(--sub);
}

.challenges-heading {
  text-align: center;
}

.challenges-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.35vw, 40px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

.challenges-heading p {
  margin: 40px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.challenges-heading p+p {
  margin-top: 8px;
}

.challenges-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.challenge-card {
  min-height: 184px;
  padding: 32px 14px 32px;
  display: grid;
  justify-items: center;
  align-content: start;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.challenge-card img {
  width: 32px;
  height: 34px;
  object-fit: contain;
}

.challenge-card h4 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.challenge-card p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.approach {
  --approach-wave-height: 163px;
  position: relative;
  overflow: hidden;
  padding: 108px 0 118px;
  color: var(--white);
  background: linear-gradient(180deg,
      rgba(31, 60, 69, 0) 0,
      rgba(31, 60, 69, 0) var(--approach-wave-height),
      var(--main) var(--approach-wave-height),
      var(--main) 100%);
}

.approach::before,
.approach::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  pointer-events: none;
}

.approach::before {
  top: 0;
  z-index: 0;
  height: var(--approach-wave-height);
  background: url("../images/approach-bg-wave.png") top center / 2600px 163px no-repeat;
}

.approach::after {
  top: calc(var(--approach-wave-height) + 520px);
  z-index: 0;
  height: 100%;
  background: url("../images/approach-bg.png") top center / min(2000px, 130vw) auto no-repeat;
  opacity: 0.55;
}

.approach-inner {
  position: relative;
  z-index: 1;
  width: min(1190px, calc(100% - 48px));
  margin: 0 auto;
}

.approach-label {
  display: grid;
  justify-items: center;
  color: var(--white);
  text-align: center;
  transform: translateY(-12px);
}

.approach-label span {
  width: 8px;
  height: 8px;
  margin-bottom: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.approach-label p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.approach-label h2 {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.approach-line {
  width: 48px;
  height: 3px;
  margin: 24px auto 22px;
  background: rgba(255, 255, 255, 0.34);
}

.approach-title {
  width: fit-content;
  margin: 56px auto 0;
  color: var(--white);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0;
}

.approach-title span {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.86);
}

.approach-lead {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}

.approach-visual {
  min-width: 0;
}

.approach-visual img {
  width: min(100%, 660px);
  margin: 0 auto;
}

.approach-copy {
  color: rgba(255, 255, 255, 0.88);
  padding-top: 72px;
}

.approach-copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.15;
}

.approach-copy p+p {
  margin-top: 4px;
}

.approach-steps-heading {
  margin-top: 80px;
  text-align: center;
}

.approach-steps-heading h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(27px, 2.7vw, 32px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
}

.approach-steps {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 84px 24px;
}

.step-card {
  position: relative;
  min-height: 264px;
  padding: 80px 32px 24px;
  display: grid;
  align-content: start;
  justify-items: center;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.step-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -56px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sub);
}

.step-badge span {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.step-badge strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.step-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.15vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.step-card p {
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.step-period {
  width: 100%;
  min-height: 36px;
  margin-top: 28px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: #eef7f7;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.case-studies {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background: var(--bg);
}

.case-studies::before,
.case-studies::after {
  position: absolute;
  content: "";
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.case-studies::before {
  width: 710px;
  height: 1066px;
  left: -270px;
  bottom: 0;
  background-image: url(../images/bg01.png);
  background-position: left top;
}

.case-studies::after {
  width: 650px;
  height: 320px;
  right: -160px;
  top: 40px;
  background-image: url("../images/bg02.png");
  background-position: right top;
  opacity: 0.7;
}

.case-studies-inner {
  position: relative;
  z-index: 1;
  width: auto;
  margin-left: max(24px, calc((100vw - 1340px) / 2));
  margin-right: 0;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.case-intro {
  position: sticky;
  top: 104px;
}

.case-studies .section-label {
  justify-items: start;
  text-align: left;
}

.case-studies .heading-line {
  margin: 30px 0 70px;
}

.case-intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0;
}

.case-intro>p {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}

.case-intro>p+p {
  margin-top: 10px;
}

.case-list {
  min-width: 0;
  display: grid;
  gap: 72px;
}

.case-item {
  min-width: 0;
}

.case-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.case-meta {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.case-meta span {
  min-width: 64px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-family: var(--font-en);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.08em;
}

.case-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.case-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-tags span {
  min-width: 82px;
  padding: 8px 24px;
  border: 1px solid #99BDE2;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.case-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  padding-right: 164px;
}

.case-arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.case-arrow:hover {
  transform: translateY(-2px);
}

.case-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  transform: none;
}

.case-arrow img {
  width: 40px;
  height: 40px;
}

.case-slider {
  overflow: hidden;
  min-width: 0;
}

.case-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-track::-webkit-scrollbar {
  display: none;
}

.case-step-card {
  flex: 0 0 clamp(500px, 58vw, 670px);
  min-height: clamp(330px, 28vw, 400px);
  padding: 40px 32px 32px;
  display: grid;
  justify-items: center;
  align-content: start;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(31, 60, 69, 0.04);
  scroll-snap-align: start;
  text-align: center;
}

.case-step-card img {
  width: min(100%, clamp(280px, 24vw, 380px));
  height: clamp(150px, 15vw, 210px);
  object-fit: contain;
}

.case-step-card span {
  margin-top: 24px;
  color: var(--sub);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.case-step-card h4 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.case-step-card p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

.case-dots {
  min-height: 10px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(94, 116, 128, 0.18);
  cursor: pointer;
}

.case-dots button.is-active {
  background: var(--main);
}

/* ==== Section CTA ==== */

.section-cta {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 8px;
}

.section-cta p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(20px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
}

.section-cta .button {
  position: relative;
  z-index: 1;
  min-width: 260px;
  min-height: 64px;
  padding: 0px 64px;
  font-size: 22px;
  font-weight: 600;
}

.section-cta-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.section-cta-dark p {
  color: rgba(255, 255, 255, 0.94);
}

.section-cta-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(31, 60, 69, 0.04);
}

.section-cta-button-only {
  display: flex;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.section-cta-button-only .button {
  min-width: 340px;
}

.price {
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
  background: var(--bg);
}

.price::before,
.price::after {
  position: absolute;
  content: "";
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.price::before {
  width: 590px;
  height: 1066px;
  left: -200px;
  bottom: 0;
  background-image: url(../images/bg01.png);
  background-position: left bottom;
  opacity: 1;
}

.price::after {
  width: 650px;
  height: 400px;
  right: -40px;
  top: 20px;
  background-image: url("../images/bg02.png");
  background-position: right top;
  opacity: 0.8;
}

.price-inner {
  position: relative;
  z-index: 1;
  width: min(1190px, calc(100% - 48px));
  margin: 0 auto;
}

.price-heading {
  text-align: center;
}

.price-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.price-heading p {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.9;
}

.price-heading p+p {
  margin-top: 8px;
}

.price-grid {
  margin-top: 98px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: visible;
  border: 1px solid #bfddf5;
  border-radius: 8px;
  background: var(--white);
}

.price-card.is-featured {
  border: 3px solid var(--accent);
}

.price-recommend {
  position: absolute;
  left: 50%;
  top: -18px;
  min-width: 74px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: translateX(-50%);
}

.price-card-head,
.price-features {
  background: #eef7f7;
}

.price-card-head {
  min-height: 186px;
  padding: 32px 24px 24px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.price-card-head p {
  margin: 0;
  color: var(--sub);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.price-card-head h4 {
  margin: 32px 0 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.price-card-head span {
  margin-top: 24px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

.price-card-cost {
  min-height: 164px;
  padding: 24px 28px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 4px;
  background: var(--white);
  text-align: center;
}

.price-card-cost strong {
  color: var(--main);
  font-family: var(--font-en);
  font-size: clamp(54px, 5.2vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}

.price-card-cost span {
  color: var(--main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 11px;
}

.price-card-cost b {
  flex: 0 0 auto;
  margin-top: 18px;
  margin-left: 100%;
  margin-right: 100%;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sub);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.price-features {
  margin: 0;
  padding: 32px clamp(28px, 3vw, 48px) 34px;
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
}

.price-features li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--main);
  transform: translateY(-50%);
}

.price-features li+li {
  margin-top: 6px;
}

.contract-flow {
  position: relative;
  overflow: hidden;
  padding: 88px 0 120px;
  background: var(--bg);
}

.contract-flow::before {
  position: absolute;
  content: "";
  width: 560px;
  height: 1066px;
  right: -260px;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg01.png") right top / contain no-repeat;
  opacity: 0.8;
  transform: scaleX(-1);
}

.contract-flow::after {
  position: absolute;
  content: "";
  width: 720px;
  height: 460px;
  left: -100px;
  bottom: 40px;
  z-index: 0;
  pointer-events: none;
  background: url("../images/bg02.png") left bottom / contain no-repeat;
  opacity: 0.8;
}

.contract-flow-inner {
  position: relative;
  z-index: 1;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
}

.contract-flow-heading {
  text-align: center;
}

.contract-flow-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.contract-flow-heading p {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.9;
}

.contract-flow-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.contract-flow-card {
  position: relative;
  min-height: 474px;
  padding: 64px 24px 32px;
  display: grid;
  align-content: start;
  justify-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(31, 60, 69, 0.04);
  text-align: center;
}

.contract-flow-card::after {
  position: absolute;
  content: "";
  right: -22px;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 2;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 18px solid var(--sub);
  transform: translateY(-50%);
}

.contract-flow-card:last-child::after {
  display: none;
}

.contract-flow-number {
  position: absolute;
  left: 50%;
  top: -34px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sub);
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  transform: translateX(-50%);
  letter-spacing: 0.05em;
}

.contract-flow-day {
  width: fit-content;
  margin: 0 0 22px;
  padding: 6px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.contract-flow-image {
  width: min(100%, 200px);
  height: 150px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.contract-flow-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

.contract-flow-card p:not(.contract-flow-day) {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 96px 0 40px;
  background: var(--bg);
}

.contact::before,
.contact::after {
  position: absolute;
  content: "";
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact::before {
  width: 560px;
  height: 1066px;
  left: -260px;
  bottom: -420px;
  background-image: url("../images/bg01.png");
  background-position: left bottom;
  opacity: 0.7;
}

.contact::after {
  width: 650px;
  height: 320px;
  right: -190px;
  top: 24px;
  background-image: url("../images/bg02.png");
  background-position: right top;
  opacity: 0.65;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(1190px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-heading {
  text-align: center;
}

.contact-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}

.contact-heading p {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.9;
}

.contact-heading p+p {
  margin-top: 8px;
}

.contact-box {
  margin-top: 68px;
  padding: clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(38px, 7vw, 48px);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(31, 60, 69, 0.04);
}

.contact-copy {
  min-width: 0;
  padding: 4px 0;
}

.contact-badge {
  width: fit-content;
  margin: 0 0 30px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.contact-copy h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
}

.contact-lead {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}

.contact-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding: 17px 0 17px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
}

.contact-list li::before {
  position: absolute;
  content: "";
  left: 2px;
  top: 28px;
  width: 15px;
  height: 8px;
  border-left: 3px solid var(--main);
  border-bottom: 3px solid var(--main);
  transform: rotate(-45deg);
}

.contact-form {
  padding: clamp(24px, 3vw, 24px);
  background: #efe9dd;
  border-radius: 4px;
}

.contact-form-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form-head p {
  margin: 12px 0 0;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.8;
}

.formzu-embed {
  min-height: 680px;
  margin-top: 24px;
  display: block;
  background: #fff;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  padding: 16px;
}

.formzu-embed iframe {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 680px;
  border: 0;
}

.closing {
  padding: 56px 0 96px;
  background: var(--bg);
}

.closing-inner {
  width: min(1190px, calc(100% - 48px));
  margin: 0 auto;
}

.closing-card {
  padding: clamp(48px, 6vw, 72px) 40px;
  display: grid;
  justify-items: center;
  gap: 36px;
  border-radius: 28px;
  background: #eef1ed;
  text-align: center;
}

.closing h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.closing-actions .button {
  min-width: 260px;
  min-height: 62px;
  padding: 0 42px;
  font-size: 18px;
  font-weight: 600;
}

.site-footer {
  padding: 56px 0 46px;
  color: rgba(255, 255, 255, 0.72);
  background: #0f252b;
}

.footer-inner {
  width: min(1190px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.footer-brand img {
  width: 176px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-links p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 6px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-links p {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

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

.footer-links .footer-cta {
  margin-top: 4px;
  color: var(--accent);
  font-weight: 700;
}

/* Floating diagnosis button: hidden by default, visible on small screens */
.floating-diagnosis {
  display: none;
}

@media (max-width: 1120px) {

  .header-actions .button-outline,
  .global-nav {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    margin-left: 0;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--main);
    background: rgba(255, 255, 255, 0.4);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 74px 18px auto;
    z-index: 30;
    margin: 0;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(31, 60, 69, 0.12);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 430px;
    margin-left: 0;
  }

  .visual-before {
    width: min(62vw, 540px);
    left: -24px;
  }

  .visual-after {
    width: min(48vw, 430px);
    right: -12px;
  }

  .challenges-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .approach-lead {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-studies-inner {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
  }

  .case-step-card {
    flex-basis: min(560px, calc(100% - 64px));
  }

  .price-grid {
    gap: 16px;
  }

  .price-card-head h4 {
    font-size: 27px;
  }

  .contract-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px 22px;
  }

  .contract-flow-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 880px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    width: min(100% - 32px, 720px);
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 138px;
  }

  .brand span {
    font-size: 12px;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .header-actions .button-primary {
    min-width: 104px;
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .global-nav {
    inset: 68px 18px auto;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 46px;
  }

  .hero::before {
    width: 420px;
    height: 110px;
    right: -96px;
  }

  .hero::after {
    width: 360px;
    height: 686px;
    left: -196px;
    bottom: -418px;
  }

  .hero-inner,
  .challenges-inner,
  .approach-inner,
  .contract-flow-inner,
  .contact-inner,
  .closing-inner,
  .footer-inner {
    width: min(100% - 32px, 720px);
  }

  .case-studies-inner {
    width: auto;
    margin-left: 16px;
    margin-right: 0;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.35;
    white-space: normal;
  }

  .hero-title-line {
    display: block;
  }

  .hero-lead,
  .hero-text {
    font-size: 14px;
  }

  .hero-cta {
    width: 100%;
    min-height: 96px;
    margin-top: 28px;
    padding: 20px 64px 22px 30px;
  }

  .hero-cta span {
    font-size: 15px;
  }

  .hero-cta strong {
    margin-top: 6px;
    font-size: 23px;
  }

  .hero-cta>img {
    right: 34px;
    width: 24px;
    height: 22px;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 20px;
  }

  .visual-before {
    width: min(92vw, 520px);
    left: -52px;
    bottom: 0;
  }

  .visual-arrow {
    width: 42px;
    left: 50%;
    top: 46%;
  }

  .visual-after {
    width: min(64vw, 360px);
    right: -54px;
    bottom: 14px;
  }

  .challenges {
    padding: 56px 0 64px;
  }

  .challenges::before {
    width: 360px;
    height: 686px;
    left: -112px;
  }

  .challenges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .challenge-card h4 {
    font-size: 16px
  }

  .challenge-card p {
    font-size: 12px;
  }

  .approach {
    --approach-wave-height: 163px;
    padding: 118px 0 78px;
  }

  .approach-label {
    transform: translateY(-6px);
  }

  .approach::before {
    height: var(--approach-wave-height);
    background-size: 2000px 163px;
  }

  .approach::after {
    top: 250px;
    height: 280px;
    background-size: auto 280px;
    opacity: 0.44;
  }

  .approach-lead {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .approach-copy {
    max-width: 620px;
    margin: 0 auto;
    padding-top: 0;
  }

  .approach-steps-heading {
    margin-top: 58px;
  }

  .approach-steps {
    gap: 78px 18px;
  }

  .case-studies {
    padding: 72px 0 86px;
  }

  .case-studies::before {
    width: 360px;
    height: 686px;
    left: -210px;
    top: 210px;
  }

  .case-studies::after {
    width: 420px;
    height: 110px;
    right: -140px;
    top: 24px;
  }

  .price::before {
    width: 360px;
    height: 686px;
    left: -180px;
    bottom: -360px;
  }

  .price::after {
    width: 420px;
    height: 110px;
    right: -140px;
    top: 20px;
  }

  .contract-flow::before {
    width: 360px;
    height: 686px;
    right: -190px;
    top: -180px;
  }

  .contract-flow::after {
    width: 420px;
    height: 110px;
    left: -150px;
    bottom: 28px;
  }

  .case-studies-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .case-intro {
    position: static;
  }

  .case-studies .heading-line {
    margin-bottom: 36px;
  }

  .case-intro h3 {
    max-width: 620px;
  }

  .case-head {
    align-items: start;
  }

  .case-step-card {
    flex-basis: calc(100% - 70px);
  }

  .section-cta {
    margin-top: 56px;
    padding: 32px 28px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
  }

  .section-cta .button {
    min-width: min(320px, 100%);
  }

  .price {
    padding: 72px 0 86px;
  }

  .contract-flow {
    padding: 72px 0 86px;
  }

  .contact {
    padding: 72px 0 92px;
  }

  .contact::before {
    width: 360px;
    height: 686px;
    left: -180px;
    bottom: -320px;
  }

  .contact::after {
    width: 420px;
    height: 210px;
    right: -140px;
    top: 20px;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .formzu-embed {
    min-height: 620px;
  }

  .closing {
    padding: 48px 0 78px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .price-inner {
    width: min(100% - 32px, 720px);
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 66px;
  }

  .price-card-head {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .floating-diagnosis {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(233, 122, 61, .28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: background .2s ease, opacity .2s ease, transform .2s ease;
  }

  .floating-diagnosis.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .floating-diagnosis:hover {
    background: var(--accent-dark);
  }

  body {
    padding-bottom: 84px;
  }

  .header-inner {
    width: min(calc(100% - 24px), 366px);
    margin-left: 12px;
    margin-right: auto;
  }

  .brand img {
    width: 118px;
  }

  .sp-no {
    display: none;
  }

  .brand span {
    max-width: 86px;
    white-space: normal;
    line-height: 1.25;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .hero-inner,
  .challenges-inner,
  .approach-inner,
  .contract-flow-inner,
  .contact-inner,
  .closing-inner,
  .footer-inner {
    width: min(calc(100% - 24px), 366px);
    margin-left: 12px;
    margin-right: auto;
  }

  .case-studies-inner {
    width: auto;
    margin-left: 12px;
    margin-right: 12px;
  }

  .hero {
    padding-top: 30px;
  }

  .eyebrow {
    width: 100%;
    padding: 7px 10px;
    text-align: center;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .hero-cta {
    min-height: 90px;
    padding: 18px 56px 20px 24px;
  }

  .hero-cta strong {
    font-size: 21px;
  }

  .hero-cta>img {
    right: 28px;
    width: 22px;
    height: 20px;
  }

  .hero-visual {
    min-height: 190px;
  }

  .visual-before {
    width: min(60vw, 360px);
    left: -24px;
  }

  .visual-arrow {
    width: 34px;
    left: 55%;
    top: 74%;
  }

  .visual-after {
    width: min(50vw, 268px);
    right: -51px;
    bottom: 0;
  }

  .challenges-heading h3 {
    font-size: 25px;
    text-align: left;
  }

  .challenges-heading p {
    text-align: left;
  }



  .challenge-card {
    min-height: 172px;
  }

  .approach {
    --approach-wave-height: 163px;
    padding: 112px 0 64px;
  }

  .approach::before {
    height: var(--approach-wave-height);
    background-size: 2000px 163px;
  }

  .approach::after {
    top: 226px;
    height: 220px;
    background-position: left top;
    background-size: auto 220px;
  }

  .approach-label h2 {
    font-size: 18px;
  }

  .approach-line {
    margin: 22px auto 20px;
  }

  .approach-title {
    width: 100%;
    font-size: 26px;
    text-align: left;
  }

  .approach-copy p {
    font-size: 14px;
    line-height: 2;
  }

  .approach-steps-heading h3 {
    font-size: 24px;
    text-align: left;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .step-card {
    min-height: 236px;
    padding: 32px 22px 24px;
  }

  .step-badge {
    width: 64px;
    height: 64px;
    top: -50px;
  }

  .step-card h4 {
    font-size: 18px;
  }

  .step-badge strong {
    font-size: 18px;
  }

  .step-card p {
    font-size: 14px;
  }

  .case-studies {
    padding: 64px 0 0;
  }

  .case-studies::before {
    width: 360px;
    height: 686px;
    left: -250px;
    top: 250px;
  }

  .case-studies::after {
    width: 360px;
    height: 94px;
    right: -170px;
    top: 18px;
  }

  .price::before {
    width: 360px;
    height: 686px;
    left: -230px;
    bottom: -390px;
  }

  .price::after {
    width: 360px;
    height: 94px;
    right: -170px;
    top: 18px;
  }

  .contract-flow::before {
    width: 360px;
    height: 686px;
    right: -230px;
    top: -210px;
  }

  .contract-flow::after {
    width: 360px;
    height: 94px;
    left: -170px;
    bottom: 24px;
  }

  .case-intro h3 {
    font-size: 27px;
    line-height: 1.65;
  }

  .case-intro>p {
    font-size: 14px;
    line-height: 1.9;
  }

  .case-list {
    gap: 58px;
  }

  .case-item {
    position: relative;
  }

  .case-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-head h3 {
    font-size: 27px;
  }

  .case-controls {
    position: absolute;
    left: 0;
    right: 0;
    top: 360px;
    z-index: 4;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .case-controls .case-arrow {
    width: 44px;
    height: 44px;
    pointer-events: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 20px rgba(31, 60, 69, 0.12);
  }

  .case-controls .case-arrow img {
    width: 44px;
    height: 44px;
  }

  .case-step-card {
    flex-basis: calc(100% - 44px);
    min-height: 302px;
    padding: 30px 22px 26px;
  }

  .case-step-card img {
    height: 132px;
  }

  .case-step-card h4 {
    font-size: 20px;
  }

  .case-step-card p {
    font-size: 13px;
  }

  .price {
    padding: 64px 0 72px;
  }

  .contract-flow {
    padding: 64px 0 72px;
  }

  .contact {
    padding: 64px 0 76px;
  }

  .contact::before {
    width: 360px;
    height: 686px;
    left: -230px;
    bottom: -360px;
  }

  .contact::after {
    width: 360px;
    height: 180px;
    right: -170px;
    top: 16px;
  }

  .contact-heading {
    text-align: left;
  }

  .contact-heading h3 {
    font-size: 28px;
    line-height: 1.65;
  }

  .contact-heading p {
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-box {
    margin-top: 48px;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-copy h4 {
    font-size: 27px;
  }

  .contact-lead,
  .contact-list li {
    font-size: 14px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .formzu-embed {
    min-height: 1000px;

  }

  .formzu-embed iframe {
    min-height: 1000px;
  }

  .closing {
    padding: 40px 0 64px;
  }

  .closing-card {
    padding: 36px 22px;
    border-radius: 18px;
    gap: 28px;
  }

  .closing h2 {
    font-size: 27px;
    line-height: 1.7;
    text-align: left;
  }

  .closing-actions {
    width: 100%;
    gap: 14px;
  }

  .closing-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 24px;
    font-size: 15px;
  }

  .site-footer {
    padding: 44px 0 38px;
  }

  .footer-inner {
    gap: 34px;
  }

  .footer-brand img {
    width: 140px;
  }

  .contract-flow-heading {
    text-align: left;
  }

  .contract-flow-heading h3 {
    font-size: 27px;
  }

  .contract-flow-heading p {
    font-size: 14px;
    line-height: 1.9;
  }

  .contract-flow-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    margin-top: 66px;
  }

  .contract-flow-card {
    min-height: auto;
    padding: 32px 24px 28px;
  }

  .contract-flow-image {
    width: min(100%, 170px);
    height: 128px;
    margin-bottom: 20px;
  }

  .contract-flow-card::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -24px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 16px solid var(--accent);
    border-bottom: 0;
    transform: translateX(-50%);
  }

  .contract-flow-day {
    margin: 0;
  }

  .contract-flow-card:nth-child(2)::after {
    display: block;
  }

  .contract-flow-card:last-child::after {
    display: none;
  }

  .contract-flow-card h4 {
    font-size: 23px;
  }

  .contract-flow-card p:not(.contract-flow-day) {
    font-size: 14px;
    margin: 16px 0 0;
  }

  .price-inner {
    width: min(calc(100% - 24px), 366px);
    margin-left: 12px;
    margin-right: auto;
  }

  .price-heading {
    text-align: left;
  }

  .price-heading h3 {
    font-size: 27px;
  }

  .price-heading p {
    font-size: 14px;
    line-height: 1.9;
  }

  .price-card-head h4 {
    font-size: 24px;
    margin-top: 16px;
  }

  .price-card-head span {
    font-size: 16px;
    margin-top: 12px;
  }

  .price-card-cost {
    min-height: 148px;
  }

  .price-card-cost strong {
    font-size: 48px;
  }

  .price-card-cost span {
    padding-bottom: 8px;
  }

  .price-features li {
    font-size: 14px;
  }

  .section-cta {
    margin-top: 48px;
    padding: 28px 22px;
    gap: 20px;
  }

  .section-cta p {
    font-size: 20px;
    line-height: 1.7;
  }

  .section-cta .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 24px;
    font-size: 15px;
  }

  .section-cta-button-only {
    padding: 0;
    margin: 48px 24px;
  }

  .section-cta-button-only .button {
    min-width: 0;
  }
}