:root {
  --hero-min-height: 768px;
  --hero-title-color: #f6f8ff;
  --hero-text-color: #ffffff;
  --hero-accent: #4b3dff;
  --hero-accent-border: #6f62ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--hero-text-color);
  background: #050914;
}

main {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--hero-min-height);
  padding: 88px 24px 72px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background-image: url("./img/vendor_assets/01_1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(9, 22, 59, 0.45) 0%,
      rgba(5, 12, 37, 0.34) 48%,
      rgba(3, 7, 23, 0.62) 100%
    ),
    radial-gradient(
      circle at 50% -18%,
      rgba(82, 147, 255, 0.46) 0%,
      rgba(82, 147, 255, 0.08) 52%,
      rgba(3, 8, 28, 0) 100%
    );
}

.hero__inner {
  width: min(980px, 100%);
}

.hero__logo {
  width: min(255px, 42vw);
  height: auto;
  margin-bottom: 22px;
}

.hero__title {
  margin: 0;
  font-size: clamp(34px, 5.9vw, 78px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--hero-title-color);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.34);
}

.hero__divider {
  width: 126px;
  height: 2px;
  margin: 34px auto 34px;
  background: rgba(255, 255, 255, 0.72);
}

.hero__lead {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero__emphasis {
  margin: 30px 0 0;
  font-size: clamp(27px, 3.35vw, 52px);
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.33);
}

.hero__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
}

.hero__badges li {
  min-width: 198px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid var(--hero-accent-border);
  background:
    linear-gradient(180deg, rgba(105, 90, 255, 0.98) 0%, rgba(67, 53, 245, 1) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(30, 29, 98, 0.45);
  font-size: clamp(21px, 1.55vw, 27px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero__badges li::before {
  content: "✔";
  display: inline-block;
  margin-right: 8px;
  font-size: 0.95em;
}

.why-section {
  padding: 82px 24px 90px;
  background-color: #edf0f5;
  background-image: url("./img/vendor_assets/02_0.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-section__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.why-section__title {
  margin: 0;
  color: #080b16;
  font-size: clamp(58px, 5vw, 84px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.why-section__title span {
  color: #5347ec;
}

.why-section__cards {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.why-section__card {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(13, 20, 48, 0.1);
}

.why-section__card img {
  display: block;
  width: 100%;
  aspect-ratio: 457 / 293;
  object-fit: cover;
}

.why-section__card-caption {
  min-height: 138px;
  padding: 14px 12px 16px;
  background: #030924;
  color: #fff;
}

.why-section__card-caption strong {
  display: block;
  margin-bottom: 6px;
  color: #4e42ee;
  font-size: clamp(30px, 2vw, 38px);
  line-height: 1;
}

.why-section__card-caption p {
  margin: 0;
  font-size: clamp(25px, 1.35vw, 26px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.why-section__quote {
  margin: 48px 0 0;
  color: #090c1b;
  font-size: clamp(54px, 3.9vw, 66px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.why-section__quote span {
  text-decoration: underline;
  text-decoration-color: #e03d3d;
  text-decoration-thickness: 5px;
  text-underline-offset: 6px;
}

.review-proof-section {
  position: relative;
  padding: 78px 26px 88px;
  color: #ffffff;
  background: url("./img/vendor_assets/05_0.png") center / cover no-repeat;
  overflow: hidden;
}

.review-proof-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 30, 0.84) 0%, rgba(9, 13, 30, 0.88) 100%),
    radial-gradient(circle at 22% 14%, rgba(82, 97, 247, 0.24) 0%, rgba(82, 97, 247, 0) 58%);
}

.review-proof-section__inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.review-proof-section__title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.15vw, 50px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -0.03em;
}

.review-proof-section__title span {
  color: #c4ccff;
  font-size: 1.08em;
}

.review-proof-section__rows {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.review-proof-section__row {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.review-proof-section__row img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.review-proof-section__text-box {
  min-height: 100%;
  padding: 14px 12px;
  background: rgba(2, 6, 25, 0.36);
  border: 1px solid rgba(179, 191, 255, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(2px);
}

.review-proof-section__text-box h3 {
  margin: 0 0 8px;
  color: #d5ff4d;
  font-size: clamp(22px, 1.45vw, 27px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.review-proof-section__text-box p {
  margin: 0;
  color: #f7f8ff;
  font-size: clamp(18px, 1.05vw, 21px);
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: -0.015em;
}

.result-proof-section {
  position: relative;
  padding: 76px 24px 74px;
  color: #f8fbff;
  background: url("./img/vendor_assets/08_0.png") center / cover no-repeat;
  overflow: hidden;
}

.result-proof-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 45, 0.2) 0%, rgba(3, 10, 30, 0.52) 100%),
    radial-gradient(circle at 88% 23%, rgba(87, 128, 255, 0.25) 0%, rgba(87, 128, 255, 0) 42%);
}

.result-proof-section__inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.result-proof-section__title {
  margin: 0;
  font-size: clamp(44px, 4.35vw, 74px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.34);
}

.result-proof-section__frames {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.result-proof-section__frames img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.28));
}

.result-proof-section__stars {
  margin: 18px 0 0;
  color: #f5c84b;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.result-proof-section__quote {
  margin: 16px auto 0;
  width: min(940px, 100%);
  padding-top: 18px;
  border-top: 1px solid rgba(205, 220, 255, 0.35);
  font-size: clamp(42px, 3.55vw, 60px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.03em;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.34);
}

.result-proof-section__quote strong {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.12em;
  font-weight: 900;
}

.curriculum-section {
  position: relative;
  padding: 78px 24px 72px;
  color: #060a18;
  background: url("./img/vendor_assets/07_0.png") center / cover no-repeat;
  overflow: hidden;
}

.curriculum-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(243, 246, 255, 0.82);
}

.curriculum-section__inner {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.curriculum-section__title {
  margin: 0;
  font-size: clamp(48px, 4.5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.curriculum-section__sub {
  margin: 20px 0 0;
  font-size: clamp(30px, 2.2vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.curriculum-section__sub strong {
  font-weight: 900;
}

.curriculum-section__badges {
  list-style: none;
  margin: 30px auto 0;
  padding: 0;
  width: min(860px, 100%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.curriculum-section__badges li {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6656ff 0%, #4438e9 100%);
  color: #fff;
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  box-shadow: 0 10px 18px rgba(63, 63, 147, 0.3);
}

.curriculum-section__badges li::before {
  content: "✔ ";
}

.curriculum-section__handwrite {
  margin: 20px 0 0;
  font-size: clamp(42px, 3.1vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.curriculum-section__handwrite span {
  color: #4338e8;
  text-decoration: underline wavy #e34545;
  text-underline-offset: 6px;
}

.curriculum-section__strong {
  margin: 20px 0 0;
  font-size: clamp(56px, 4.1vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.curriculum-section__flow {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.curriculum-section__flow li {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #4b41e7;
  font-size: clamp(39px, 2.45vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  box-shadow: 0 8px 20px rgba(58, 67, 107, 0.18);
}

.curriculum-section__flow li.is-filled {
  background: linear-gradient(180deg, #5a4eff 0%, #4537ef 100%);
  color: #fff;
}

.curriculum-section__flow .flow-arrow {
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  color: #11141f;
  font-size: clamp(62px, 3.5vw, 74px);
  font-weight: 900;
}

.curriculum-section__bottom {
  margin: 24px 0 0;
  font-size: clamp(46px, 3.25vw, 58px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.curriculum-section__bottom span {
  color: #4d45eb;
  font-weight: 900;
}

.direction-section {
  padding: 84px 24px 78px;
  background: #eceef6;
  color: #090d1e;
}

.direction-section__inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.direction-section__title {
  margin: 0;
  font-size: clamp(50px, 4.4vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.direction-section__title span {
  color: #5148ef;
  text-decoration: underline;
  text-decoration-color: #e54343;
  text-underline-offset: 7px;
  text-decoration-thickness: 4px;
}

.direction-section__sub {
  margin: 20px 0 0;
  font-size: clamp(33px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.direction-section__sub span {
  font-weight: 500;
  margin: 0 8px;
}

.direction-section__cards {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.direction-section__cards li {
  width: min(390px, 42vw);
  min-height: 180px;
  border-radius: 18px;
  background: #f8f8f8;
  box-shadow: 0 12px 20px rgba(39, 49, 88, 0.14);
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px 12px;
}

.direction-section__cards li strong {
  color: #5449f0;
  font-size: clamp(33px, 2.2vw, 40px);
  line-height: 1;
}

.direction-section__cards li h3 {
  margin: 4px 0 0;
  color: #5045ee;
  font-size: clamp(52px, 3.7vw, 66px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.direction-section__cards li p {
  margin: 4px 0 0;
  color: #090d1e;
  font-size: clamp(46px, 3.2vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.direction-section__cards li.is-dark {
  background: #010623;
}

.direction-section__cards li.is-dark p {
  color: #ffffff;
}

.direction-section__handwrite {
  margin: 26px 0 0;
  font-size: clamp(43px, 3.2vw, 55px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.direction-section__handwrite span {
  text-decoration: underline;
  text-decoration-color: #e44747;
  text-underline-offset: 6px;
  text-decoration-thickness: 4px;
}

.oneday-process-section {
  position: relative;
  padding: 76px 24px 70px;
  color: #f6f8ff;
  background: url("./img/vendor_assets/03_1.png") center / cover no-repeat;
  overflow: hidden;
}

.oneday-process-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 30, 0.8) 0%, rgba(7, 11, 30, 0.84) 100%),
    radial-gradient(circle at 50% -15%, rgba(95, 114, 255, 0.2) 0%, rgba(95, 114, 255, 0) 60%);
}

.oneday-process-section__inner {
  position: relative;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.oneday-process-section__title {
  margin: 0;
  color: #b8b4ff;
  font-size: clamp(58px, 4.8vw, 82px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.oneday-process-section__sub {
  margin: 12px 0 0;
  font-size: clamp(36px, 2.6vw, 44px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.oneday-process-section__sub strong {
  font-weight: 900;
}

.oneday-process-section__steps {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  width: min(760px, 100%);
  display: grid;
  gap: 11px;
}

.oneday-process-section__steps li {
  min-height: 74px;
  border-radius: 16px;
  border: 1px solid rgba(119, 135, 255, 0.42);
  background: rgba(5, 11, 33, 0.84);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px 0 20px;
  color: #e9eeff;
  font-size: clamp(29px, 2vw, 33px);
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.oneday-process-section__steps li span {
  color: #9a92ff;
  font-weight: 900;
}

.oneday-process-section__steps li b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(138, 154, 255, 0.4);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
}

.oneday-process-section__handwrite {
  margin: 26px 0 0;
  color: #ffffff;
  font-size: clamp(45px, 3.2vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.oneday-process-section__handwrite span {
  text-decoration: underline wavy #e34a4a;
  text-underline-offset: 5px;
}

.recommend-section {
  position: relative;
  padding: 92px 24px 24px;
  color: #f5f7ff;
  background: url("./img/vendor_assets/06_0.png") center / cover no-repeat;
  overflow: hidden;
}

.recommend-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 28, 0.84) 0%, rgba(3, 8, 28, 0.9) 100%),
    radial-gradient(circle at 17% 34%, rgba(78, 92, 255, 0.18) 0%, rgba(78, 92, 255, 0) 45%);
}

.recommend-section__inner {
  position: relative;
  width: min(940px, 100%);
  margin: 0 auto;
}

.recommend-section__title {
  margin: 0;
  text-align: center;
  font-size: clamp(58px, 4.8vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.recommend-section__title span {
  color: #6559ff;
}

.recommend-section__list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.recommend-section__list li {
  min-height: 70px;
  border-radius: 16px;
  border: 1px solid rgba(114, 127, 255, 0.56);
  background: rgba(7, 11, 36, 0.68);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: #f6f8ff;
  font-size: clamp(33px, 2.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.recommend-section__list li::before {
  content: "⊙";
  color: #9b95ff;
  font-size: 0.9em;
  font-weight: 700;
}

.recommend-section__cta {
  position: relative;
  margin-top: 34px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.recommend-section__cta a {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: clamp(42px, 3vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.recommend-section__phone {
  background: linear-gradient(90deg, #4f40ff 0%, #6254ff 100%);
}

.recommend-section__link {
  background: rgba(1, 3, 10, 0.94);
}

.floating-banners {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  gap: 4px;
}

.floating-banners__item {
  display: block;
  width: min(132px, 19vw);
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  padding: 0;
  border: 0;
}

.floating-banners__item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100vh;
    padding-top: 68px;
    padding-bottom: 52px;
  }

  .hero__logo {
    width: min(200px, 45vw);
    margin-bottom: 16px;
  }

  .hero__divider {
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .hero__badges {
    gap: 10px;
    margin-top: 24px;
  }

  .hero__badges li {
    min-width: 168px;
    padding: 11px 17px;
  }

  .why-section {
    padding: 62px 18px 68px;
  }

  .why-section__title {
    font-size: clamp(42px, 8vw, 68px);
  }

  .why-section__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .why-section__card-caption {
    min-height: 0;
  }

  .why-section__card-caption p {
    font-size: clamp(18px, 3.3vw, 24px);
  }

  .why-section__quote {
    margin-top: 34px;
    font-size: clamp(35px, 6.4vw, 52px);
  }

  .review-proof-section {
    padding: 58px 16px 66px;
  }

  .review-proof-section__title {
    font-size: clamp(30px, 5.3vw, 44px);
  }

  .review-proof-section__rows {
    margin-top: 28px;
    gap: 12px;
  }

  .review-proof-section__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-proof-section__text-box {
    padding: 12px 10px;
  }

  .review-proof-section__text-box h3 {
    font-size: clamp(19px, 3.4vw, 24px);
  }

  .review-proof-section__text-box p {
    font-size: clamp(16px, 2.8vw, 20px);
  }

  .result-proof-section {
    padding: 58px 16px 54px;
  }

  .result-proof-section__title {
    font-size: clamp(34px, 6.4vw, 52px);
  }

  .result-proof-section__frames {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .result-proof-section__stars {
    margin-top: 12px;
    letter-spacing: 0.1em;
  }

  .result-proof-section__quote {
    margin-top: 12px;
    padding-top: 14px;
    font-size: clamp(28px, 5vw, 40px);
  }

  .curriculum-section {
    padding: 58px 16px 56px;
  }

  .curriculum-section__badges {
    margin-top: 22px;
    gap: 8px;
  }

  .curriculum-section__badges li {
    font-size: clamp(18px, 2.9vw, 24px);
  }

  .curriculum-section__flow {
    flex-wrap: wrap;
    gap: 10px 8px;
  }

  .curriculum-section__flow li {
    width: 102px;
    height: 102px;
    font-size: clamp(28px, 4.3vw, 34px);
  }

  .curriculum-section__flow .flow-arrow {
    font-size: clamp(38px, 5.2vw, 52px);
  }

  .direction-section {
    padding: 62px 16px 58px;
  }

  .direction-section__sub {
    margin-top: 14px;
    font-size: clamp(24px, 4vw, 32px);
  }

  .direction-section__cards {
    margin-top: 20px;
  }

  .direction-section__cards li {
    width: min(340px, 48vw);
    min-height: 148px;
  }

  .direction-section__cards li h3 {
    font-size: clamp(40px, 5.5vw, 50px);
  }

  .direction-section__cards li p {
    font-size: clamp(32px, 4.5vw, 42px);
  }

  .oneday-process-section {
    padding: 58px 16px 56px;
  }

  .oneday-process-section__sub {
    font-size: clamp(24px, 4vw, 34px);
  }

  .oneday-process-section__steps {
    margin-top: 20px;
    gap: 9px;
  }

  .oneday-process-section__steps li {
    min-height: 62px;
    border-radius: 12px;
    font-size: clamp(21px, 3.1vw, 28px);
  }

  .oneday-process-section__handwrite {
    margin-top: 20px;
    font-size: clamp(30px, 5vw, 40px);
  }

  .recommend-section {
    padding: 70px 16px 16px;
  }

  .recommend-section__title {
    font-size: clamp(40px, 6.2vw, 58px);
  }

  .recommend-section__list {
    margin-top: 22px;
    gap: 9px;
  }

  .recommend-section__list li {
    min-height: 58px;
    border-radius: 12px;
    font-size: clamp(22px, 3.1vw, 29px);
  }

  .recommend-section__cta a {
    min-height: 70px;
    font-size: clamp(28px, 4.1vw, 39px);
  }

  .floating-banners {
    right: 12px;
    bottom: 12px;
    gap: 3px;
  }

  .floating-banners__item {
    width: min(104px, 20vw);
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    align-items: flex-start;
    min-height: 100dvh;
    padding: 62px 16px 36px;
    background-position: 64% center;
  }

  .hero__inner {
    width: min(580px, 100%);
    margin-inline: auto;
  }

  .hero__title {
    font-size: clamp(28px, 9vw, 52px);
    line-height: 1.16;
  }

  .hero__lead {
    font-size: clamp(18px, 5.1vw, 28px);
    line-height: 1.5;
  }

  .hero__emphasis {
    margin-top: 20px;
    font-size: clamp(24px, 7vw, 38px);
    line-height: 1.38;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero__badges li {
    min-width: auto;
    width: 100%;
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .why-section {
    padding: 52px 14px 56px;
    background-position: 58% center;
  }

  .why-section__title {
    font-size: clamp(34px, 11.2vw, 48px);
    line-height: 1.08;
  }

  .why-section__cards {
    margin-top: 24px;
    gap: 10px;
  }

  .why-section__card {
    border-radius: 12px;
  }

  .why-section__card-caption {
    padding: 12px 10px 14px;
  }

  .why-section__card-caption strong {
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .why-section__card-caption p {
    font-size: clamp(16px, 4.2vw, 20px);
  }

  .why-section__quote {
    margin-top: 28px;
    font-size: clamp(14px, 4.2vw, 24px);
  }

  .why-section__quote span {
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
  }

  .review-proof-section {
    padding: 48px 12px 54px;
    background-position: 56% center;
  }

  .review-proof-section__title {
    font-size: clamp(24px, 6.8vw, 33px);
    line-height: 1.3;
  }

  .review-proof-section__rows {
    margin-top: 20px;
    gap: 10px;
  }

  .review-proof-section__row img {
    border-radius: 18px;
  }

  .review-proof-section__text-box {
    border-radius: 10px;
  }

  .review-proof-section__text-box h3 {
    margin-bottom: 6px;
    font-size: clamp(17px, 4.6vw, 21px);
  }

  .review-proof-section__text-box p {
    font-size: clamp(14px, 3.9vw, 17px);
    line-height: 1.45;
  }

  .result-proof-section {
    padding: 44px 10px 40px;
    background-position: 52% center;
  }

  .result-proof-section__title {
    font-size: clamp(26px, 8.2vw, 36px);
  }

  .result-proof-section__frames {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .result-proof-section__stars {
    font-size: clamp(20px, 6.2vw, 28px);
  }

  .result-proof-section__quote {
    margin-top: 10px;
    font-size: clamp(22px, 6.6vw, 30px);
    line-height: 1.25;
  }

  .curriculum-section {
    padding: 44px 10px 40px;
    background-position: 72% center;
  }

  .curriculum-section__title {
    font-size: clamp(30px, 8.6vw, 40px);
  }

  .curriculum-section__sub {
    margin-top: 12px;
    font-size: clamp(18px, 4.4vw, 24px);
  }

  .curriculum-section__badges {
    width: 100%;
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .curriculum-section__badges li {
    padding: 10px 14px;
    font-size: clamp(17px, 4.7vw, 22px);
  }

  .curriculum-section__handwrite {
    margin-top: 14px;
    font-size: clamp(24px, 6.6vw, 32px);
    white-space: nowrap;
  }

  .curriculum-section__strong {
    font-size: clamp(34px, 8.8vw, 46px);
  }

  .curriculum-section__flow {
    margin-top: 14px;
    gap: 7px 4px;
  }

  .curriculum-section__flow li {
    width: 84px;
    height: 84px;
    font-size: clamp(21px, 5.1vw, 27px);
  }

  .curriculum-section__flow .flow-arrow {
    font-size: clamp(28px, 6vw, 36px);
  }

  .curriculum-section__bottom {
    margin-top: 14px;
    font-size: clamp(24px, 6.8vw, 32px);
  }

  .direction-section {
    padding: 46px 12px 40px;
  }

  .direction-section__title {
    font-size: clamp(33px, 8.6vw, 42px);
  }

  .direction-section__sub {
    margin-top: 12px;
    font-size: clamp(19px, 4.8vw, 25px);
  }

  .direction-section__sub span {
    margin: 0 4px;
  }

  .direction-section__cards {
    margin-top: 16px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .direction-section__cards li {
    width: min(430px, 100%);
    min-height: 132px;
    border-radius: 14px;
  }

  .direction-section__cards li strong {
    font-size: clamp(23px, 6vw, 30px);
  }

  .direction-section__cards li h3 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .direction-section__cards li p {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .direction-section__handwrite {
    margin-top: 16px;
    font-size: clamp(24px, 6.2vw, 32px);
  }

  .oneday-process-section {
    padding: 44px 10px 40px;
    background-position: 50% center;
  }

  .oneday-process-section__title {
    font-size: clamp(34px, 9.2vw, 44px);
  }

  .oneday-process-section__sub {
    margin-top: 10px;
    font-size: clamp(19px, 5vw, 24px);
  }

  .oneday-process-section__steps {
    margin-top: 14px;
  }

  .oneday-process-section__steps li {
    min-height: 54px;
    padding: 0 12px;
    font-size: clamp(17px, 4.7vw, 22px);
  }

  .oneday-process-section__steps li b {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }

  .oneday-process-section__handwrite {
    margin-top: 14px;
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .recommend-section {
    padding: 52px 10px 14px;
  }

  .recommend-section__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .recommend-section__list {
    margin-top: 14px;
    gap: 8px;
  }

  .recommend-section__list li {
    min-height: 50px;
    padding: 0 12px;
    gap: 8px;
    font-size: clamp(17px, 4.5vw, 22px);
  }

  .recommend-section__cta {
    margin-top: 16px;
    grid-template-columns: 1fr;
  }

  .recommend-section__cta a {
    min-height: 56px;
    font-size: clamp(22px, 6vw, 30px);
  }

  .floating-banners {
    right: 8px;
    bottom: 8px;
    gap: 2px;
  }

  .floating-banners__item {
    width: min(84px, 22vw);
    border-radius: 0;
  }
}
