:root {
  --woori-blue: #0072bc;
  --woori-sky: #26bfe8;
  --woori-navy: #0a2f69;
  --bg-light: #dfe7f8;
  --text-black: #111111;
  --text-gray: #8b8b8b;
  --line-gray: #e4e8ed;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--text-black);
  background: #ffffff;
  font-family:
    Pretendard,
    "Noto Sans KR",
    "Malgun Gothic",
    Arial,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  color: inherit;
}

.js .scroll-reveal {
  opacity: 0;
  transform: translateY(42px);

  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);

  transition-delay: var(--reveal-delay, 0ms);
}

.js .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  width: 100%;
  height: 100px;
  background: #ffffff;
  border-bottom: 1px solid var(--line-gray);
  box-shadow: 0 3px 14px rgba(23, 56, 105, 0.06);
}

.header-inner {
  width: min(1440px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
}

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

.header-logo img {
  width: 190px;
  height: 56px;
  object-fit: contain;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.header-logo:hover img {
  transform: scale(1.04);

  filter:
    drop-shadow(
      0 6px 10px rgba(0, 114, 188, 0.18)
    );
}

.hero-section {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #17396d;
}

.hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 8s ease;
}

.hero-section:hover .hero-image {
  transform: scale(1.035);
}

.hero-dim {
  position: absolute;
  inset: 0;

}

.hero-inner {
  position: relative;
  z-index: 2;

  width: min(1440px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-heading {
  position: relative;
  padding: 30px 0 30px 48px;
  border-left: 3px solid #069bdc;
}

.hero-heading::before,
.hero-heading::after {
  content: "";
  position: absolute;
  left: 0;

  width: 66px;
  height: 3px;

  background: #069bdc;
}

.hero-heading::before {
  top: 0;
}

.hero-heading::after {
  bottom: 0;
}

.hero-heading h1 {
  color: #ffffff;

  font-size: 70px;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -3.5px;

  text-shadow:
    0 5px 18px rgba(0, 0, 0, 0.3);
}

.hero-heading p {
  margin-top: 22px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 18px;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.26);
}

.hero-button {
  width: 315px;
  height: 74px;

  margin-top: 34px;
  margin-left: -40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  font-size: 26px;
  font-weight: 800;

  border-radius: 0 40px 40px 0;

  background:
    linear-gradient(
      90deg,
      #058bcf,
      #28c2ed
    );

  box-shadow:
    0 10px 25px rgba(1, 91, 157, 0.3);

  text-shadow:
    0 2px 7px rgba(0, 0, 0, 0.17);

  transition:
    width 0.25s ease,
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-button:hover {
  width: 335px;

  transform: translateY(-3px);

  filter: brightness(1.06);

  box-shadow:
    0 15px 31px rgba(1, 91, 157, 0.38);
}

.logo-line-section {
  width: 100%;
  height: 116px;

  padding: 0 50px;

  display: flex;
  align-items: center;
  gap: 34px;

  background: #ffffff;
}

.logo-line {
  flex: 1;
  height: 2px;

  background: #009ddd;
}

.logo-line-image {
  width: auto;
  height: 30px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 3px 5px rgba(0, 105, 180, 0.12)
    );
}

.intro-section {
  width: 100%;

  padding: 130px 0 100px;

  background: #ffffff;
}

.intro-inner {
  width: min(1320px, calc(100% - 100px));
  min-height: 560px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 590px minmax(0, 1fr);
  gap: 120px;
  align-items: center;
}

.intro-visual {
  position: relative;

  width: 590px;
  height: 540px;
}

.intro-left-block {
  position: absolute;
  left: 0;
  top: 28px;

  width: 250px;
  height: 470px;

  background: #0d8ec9;

  z-index: 1;

  box-shadow:
    0 18px 35px rgba(6, 99, 153, 0.2);
}

.intro-top-bar {
  position: absolute;
  top: 0;
  left: 0;

  width: 470px;
  height: 56px;

  background: #0d8ec9;

  z-index: 1;
}

.intro-bottom-bar {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 470px;
  height: 56px;

  background: #0d8ec9;

  z-index: 1;
}

.intro-main-image {
  position: absolute;
  top: 40px;
  left: 115px;

  width: 510px;
  height: 480px;

  object-fit: cover;
  object-position: center;

  z-index: 2;

  box-shadow:
    0 18px 40px rgba(26, 58, 99, 0.22);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.intro-visual:hover .intro-main-image {
  transform:
    translateY(-6px)
    scale(1.012);

  box-shadow:
    0 25px 50px rgba(26, 58, 99, 0.28);
}

.intro-content h2 {
  margin-bottom: 42px;

  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1.5px;

  text-shadow:
    0 3px 8px rgba(20, 50, 90, 0.09);
}

.intro-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-paragraphs p {
  color: var(--text-gray);

  font-size: 18px;
  line-height: 1.75;
}

.intro-paragraphs strong {
  color: #0a9bd8;
  font-weight: 800;
}

.intro-button {
  width: 190px;
  height: 58px;

  margin-top: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  font-size: 19px;
  font-weight: 800;

  border-radius: 32px;

  background:
    linear-gradient(
      90deg,
      #19addc,
      #29c4e9
    );

  box-shadow:
    0 9px 20px rgba(14, 154, 206, 0.25);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.intro-button:hover {
  transform: translateY(-4px);

  filter: brightness(1.04);

  box-shadow:
    0 14px 27px rgba(14, 154, 206, 0.34);
}

.recommend-section {
  width: 100%;

  padding: 40px 0 120px;

  background: #ffffff;
}

.recommend-inner {
  width: min(1320px, calc(100% - 100px));

  margin: 0 auto;
}

.recommend-inner h2 {
  margin-bottom: 65px;

  color: #111111;

  text-align: center;

  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1.5px;

  text-shadow:
    0 3px 9px rgba(24, 56, 99, 0.11);
}

.recommend-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.recommend-card {
  min-height: 245px;

  padding: 38px 28px 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border: 1px solid #dfe6f2;
  border-radius: 14px;

  box-shadow:
    0 12px 30px rgba(33, 75, 135, 0.11);

  text-align: center;

  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.recommend-card:hover {
  transform: translateY(-9px);

  border-color: #9eb9f1;

  box-shadow:
    0 21px 40px rgba(33, 75, 135, 0.19);
}

.recommend-icon {
  width: 74px;
  height: 74px;

  margin-bottom: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #4878ef,
      #2454c7
    );

  border-radius: 19px;

  box-shadow:
    0 10px 21px rgba(46, 88, 207, 0.34);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.recommend-card:hover .recommend-icon {
  transform:
    translateY(-4px)
    rotate(-3deg)
    scale(1.06);

  box-shadow:
    0 14px 27px rgba(46, 88, 207, 0.41);
}

.recommend-icon svg {
  width: 38px;
  height: 38px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recommend-card p {
  color: #222222;

  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;

  word-break: keep-all;
}

.condition-section {
  width: 100%;

  background:
    linear-gradient(
      90deg,
      #08a1d6,
      #29c0e8
    );

  box-shadow:
    inset 0 10px 20px rgba(0, 74, 130, 0.05),
    inset 0 -10px 20px rgba(0, 74, 130, 0.05);
}

.condition-inner {
  width: min(1320px, calc(100% - 100px));
  min-height: 360px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 60px;
  align-items: center;
}

.condition-content {
  color: #ffffff;
}

.condition-content h2 {
  margin-bottom: 38px;

  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1.5px;

  text-shadow:
    0 4px 12px rgba(0, 61, 110, 0.24);
}

.condition-content p {
  font-size: 20px;
  font-weight: 700;

  text-shadow:
    0 2px 7px rgba(0, 61, 110, 0.2);
}

.condition-check {
  width: 28px;
  height: 28px;

  margin-right: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.9);

  box-shadow:
    0 4px 10px rgba(0, 72, 126, 0.16);

  font-size: 18px;
}

.condition-image-box {
  width: 540px;
  height: 360px;

  overflow: hidden;
}

.condition-image-box img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 13px 17px rgba(0, 76, 124, 0.23)
    );

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.condition-image-box:hover img {
  transform:
    translateY(-5px)
    scale(1.025);
}

.program-section {
  width: 100%;

  padding: 90px 0 120px;

  background: #e4eeff;
}

.program-inner {
  width: min(1360px, calc(100% - 100px));

  margin: 0 auto;
}

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

.section-heading span {
  color: #333333;

  font-size: 18px;
}

.section-heading h2 {
  margin-top: 18px;

  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.8px;

  text-shadow:
    0 3px 9px rgba(24, 56, 99, 0.1);
}

.section-heading p {
  margin-top: 28px;

  color: #646464;

  font-size: 17px;
}

.program-tabs {
  width: 100%;

  margin-top: 70px;

  display: flex;
  justify-content: center;
  gap: 20px;
}

.program-tab {
  min-width: 230px;
  height: 66px;

  padding: 0 30px;

  color: #6f7680;
  background: rgba(255, 255, 255, 0.23);

  border: 1px solid #aeb7c2;
  border-radius: 35px;

  box-shadow:
    0 5px 13px rgba(23, 64, 117, 0.05);

  font-size: 18px;
  font-weight: 500;

  white-space: nowrap;

  cursor: pointer;

  transition:
    color 0.23s ease,
    background 0.23s ease,
    border-color 0.23s ease,
    transform 0.23s ease,
    box-shadow 0.23s ease;
}

.program-tab:hover {
  color: var(--woori-blue);

  border-color: var(--woori-blue);

  transform: translateY(-4px);

  box-shadow:
    0 11px 21px rgba(14, 94, 161, 0.14);
}

.program-tab.active {
  color: #ffffff;
  background: var(--woori-blue);

  border-color: var(--woori-blue);

  font-weight: 800;

  box-shadow:
    0 11px 24px rgba(0, 114, 188, 0.3);
}

.program-tab.active:hover {
  color: #ffffff;
}

.program-detail {
  width: min(1230px, 100%);

  margin: 85px auto 0;

  display: grid;
  grid-template-columns: 610px minmax(0, 1fr);
  gap: 90px;

  align-items: start;
}

.program-detail-image {
  position: relative;

  width: 610px;
  height: 395px;

  overflow: hidden;

  border-radius: 14px;

  background: #d5e2f2;

  box-shadow:
    0 17px 38px rgba(24, 60, 108, 0.2);
}

.program-detail-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  border-radius: inherit;

  opacity: 1;

  transition:
    opacity 0.24s ease,
    transform 0.4s ease,
    filter 0.4s ease;
}

.program-detail-image img.is-changing {
  opacity: 0.2;
}

.program-detail-image:hover img {
  transform: scale(1.025);

  filter: brightness(1.04);
}

.program-detail-content {
  min-width: 0;
  min-height: 395px;

  display: flex;
  flex-direction: column;

  justify-content: flex-start;

  padding-top: 20px;
}

.program-detail-content h3 {
  margin-bottom: 22px;

  color: #0a397b;

  font-size: 34px;
  font-weight: 800;
  line-height: 1.35;

  text-shadow:
    0 3px 8px rgba(10, 57, 123, 0.1);

  word-break: keep-all;
}

.program-detail-content h4 {
  min-height: 78px;

  margin-bottom: 28px;

  font-size: 25px;
  font-weight: 800;
  line-height: 1.55;

  word-break: keep-all;
}

.program-detail-content ul {
  padding-left: 28px;
}

.program-detail-content li {
  margin-bottom: 14px;

  color: #233d69;

  font-size: 19px;
  line-height: 1.55;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.program-detail-content li:hover {
  color: var(--woori-blue);

  transform: translateX(5px);
}

.program-controls {
  margin-top: 60px;

  display: flex;
  justify-content: center;
  gap: 32px;
}

.circle-control {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1265ad;
  background: rgba(255, 255, 255, 0.38);

  border: 4px solid #1265ad;
  border-radius: 50%;

  box-shadow:
    0 7px 18px rgba(18, 101, 173, 0.14);

  font-size: 25px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.circle-control:hover {
  color: #ffffff;
  background: #1265ad;

  transform:
    translateY(-4px)
    scale(1.05);

  box-shadow:
    0 13px 24px rgba(18, 101, 173, 0.27);
}

.circle-control:active {
  transform:
    translateY(-1px)
    scale(0.97);
}

.benefit-section {
  width: 100%;
  min-height: 980px;

  padding-top: 60px;

  background: var(--bg-light);

  overflow: hidden;
}

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

.benefit-heading span {
  color: #333333;

  font-size: 18px;
}

.benefit-heading h2 {
  margin-top: 12px;

  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1.5px;

  text-shadow:
    0 4px 10px rgba(22, 56, 101, 0.11);
}

.benefit-stage {
  position: relative;

  width: min(1500px, calc(100% - 60px));
  min-height: 750px;

  margin: 75px auto 0;
}

.benefit-pillar {
  position: absolute;
  left: 0;
  top: 55px;

  width: 250px;
  height: 610px;

  overflow: hidden;

  z-index: 1;

  box-shadow:
    0 17px 38px rgba(30, 73, 122, 0.17);
}

.benefit-pillar img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.benefit-pillar:hover img {
  transform: scale(1.035);
}

.benefit-top-copy {
  position: relative;

  z-index: 3;

  width: 100%;

  margin-bottom: 70px;

  text-align: center;

  font-size: 20px;
  font-weight: 800;
  line-height: 1.65;

  text-shadow:
    0 3px 8px rgba(25, 58, 103, 0.09);
}

.benefit-slider-wrap {
  position: relative;

  z-index: 3;

  width: 1210px;

  margin-left: 170px;
}

.benefit-viewport {
  width: 1210px;

  padding: 38px 0 30px;

  overflow: hidden;
}

.benefit-track {
  display: flex;
  align-items: stretch;
  gap: 14px;

  will-change: transform;
}

.benefit-card {
  position: relative;

  flex: 0 0 290px;

  height: 410px;

  overflow: visible;

  background: #ffffff;

  border: 1px solid #c9cfd8;

  box-shadow:
    0 9px 22px rgba(22, 63, 112, 0.13);

  cursor: pointer;

  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease;
}

.benefit-card:hover,
.benefit-card.active {
  transform: translateY(-8px);

  border-color: #079fdf;

  box-shadow:
    0 18px 34px rgba(10, 85, 145, 0.22);
}

.benefit-card-image {
  width: 100%;
  height: 220px;

  display: block;

  object-fit: cover;
  object-position: center;

  transition:
    filter 0.35s ease;
}

.benefit-card:hover .benefit-card-image {
  filter: brightness(1.05);
}

.benefit-card-body {
  position: relative;

  height: 190px;

  padding: 50px 22px 24px;

  overflow: visible;

  text-align: center;
}

.benefit-card-icon {
  position: absolute;
  top: -32px;
  left: 22px;

  z-index: 10;

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0859ca;
  background: #a8ebfb;

  border: 7px solid #ffffff;
  border-radius: 15px;

  box-shadow:
    0 7px 16px rgba(8, 89, 202, 0.22);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.benefit-card:hover .benefit-card-icon,
.benefit-card.active .benefit-card-icon {
  transform:
    translateY(-3px)
    scale(1.06);

  box-shadow:
    0 11px 22px rgba(8, 89, 202, 0.3);
}

.benefit-card-icon svg {
  width: 30px;
  height: 30px;

  stroke: #0859ca;
}

.benefit-card-body h3 {
  min-height: 56px;

  margin-bottom: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;

  word-break: keep-all;
}

.benefit-card-body p {
  color: #4f4f4f;

  font-size: 15px;
  line-height: 1.65;

  word-break: keep-all;
}

.benefit-controls {
  position: relative;

  z-index: 3;

  width: 1210px;

  margin-top: 8px;
  margin-left: 170px;

  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-cta-section {
  position: relative;

  width: 100%;
  min-height: 470px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1a2c56;
}

.footer-cta-background {
  position: absolute;
  inset: 0;
}

.footer-cta-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 7s ease;
}

.footer-cta-section:hover
.footer-cta-background img {
  transform: scale(1.025);
}

.footer-cta-inner {
  position: relative;

  z-index: 2;

  width: min(1180px, calc(100% - 80px));

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-cta-copy {
  color: #ffffff;

  text-align: center;
}

.footer-cta-copy p {
  margin-bottom: 8px;

  font-size: 24px;
  font-weight: 700;

  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.48);
}

.footer-cta-copy h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;

  text-shadow:
    0 5px 15px rgba(0, 0, 0, 0.52);
}

.footer-cta-button {
  width: 560px;
  height: 108px;

  margin-top: 70px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  color: #ffffff;
  background: #0876bd;

  border-radius: 32px;

  box-shadow:
    0 15px 32px rgba(0, 0, 0, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  font-size: 34px;
  font-weight: 800;

  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.27);

  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.footer-cta-button span {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;

  transition: transform 0.28s ease;
}

.footer-cta-button:hover {
  transform: translateY(-7px);

  background: #0588d7;

  box-shadow:
    0 23px 42px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-cta-button:hover span {
  transform: translateX(7px);
}

.site-footer {
  width: 100%;

  padding: 44px 0;

  color: #ffffff;
  background: #3f3f3f;

  box-shadow:
    inset 0 6px 16px rgba(0, 0, 0, 0.13);
}

.site-footer-inner {
  width: min(1180px, calc(100% - 80px));

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer-company strong {
  display: block;

  margin-bottom: 15px;

  font-size: 18px;
  font-weight: 800;
}

.footer-company p {
  color: rgba(255, 255, 255, 0.82);

  font-size: 13px;
  line-height: 1.7;
}

.footer-company p span {
  margin: 0 8px;

  color: rgba(255, 255, 255, 0.36);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;

  flex-shrink: 0;
}

.footer-links span {
  width: 1px;
  height: 17px;

  background: rgba(255, 255, 255, 0.25);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
  font-weight: 600;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;

  transform: translateY(-2px);
}

@media screen and (max-width: 1450px) and (min-width: 1201px) {
  .program-inner {
    width: min(1280px, calc(100% - 70px));
  }

  .program-tab {
    min-width: 205px;

    font-size: 16px;
  }

  .benefit-stage {
    width: min(1260px, calc(100% - 40px));
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: 1080px;
  }

  .benefit-slider-wrap,
  .benefit-controls {
    margin-left: 90px;
  }

  .benefit-card {
    flex: 0 0 259px;
  }
}

@media screen and (max-width: 1200px) {
  .intro-inner {
    width: min(980px, calc(100% - 50px));

    grid-template-columns: 430px minmax(0, 1fr);
    gap: 70px;
  }

  .intro-visual {
    width: 430px;
    height: 400px;
  }

  .intro-left-block {
    top: 22px;

    width: 165px;
    height: 346px;
  }

  .intro-top-bar,
  .intro-bottom-bar {
    width: 345px;
    height: 44px;
  }

  .intro-main-image {
    top: 24px;
    left: 60px;

    width: 338px;
    height: 360px;
  }

  .intro-content h2 {
    font-size: 27px;
  }

  .intro-paragraphs p {
    font-size: 15px;
  }

  .recommend-inner {
    width: min(980px, calc(100% - 50px));
  }

  .recommend-card {
    min-height: 220px;

    padding: 32px 20px 28px;
  }

  .recommend-card p {
    font-size: 15px;
  }

  .condition-inner {
    width: min(1050px, calc(100% - 60px));

    grid-template-columns: minmax(0, 1fr) 430px;
  }

  .condition-image-box {
    width: 430px;
    height: 285px;
  }

  .program-detail {
    grid-template-columns: 500px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
  }

  .program-detail-image {
    width: 500px;
    height: 330px;
  }

  .program-detail-content {
    min-height: 330px;
    padding-top: 16px;
  }

  .program-detail-content h4 {
    min-height: auto;
  }

  .benefit-stage {
    width: min(930px, calc(100% - 30px));
  }

  .benefit-pillar {
    width: 188px;
    height: 456px;
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: 690px;
  }

  .benefit-slider-wrap,
  .benefit-controls {
    margin-left: 64px;
  }

  .benefit-card {
    flex: 0 0 220px;

    height: 330px;
  }

  .benefit-card-image {
    height: 175px;
  }

  .benefit-card-body {
    height: 155px;

    padding: 38px 16px 18px;
  }

  .benefit-card-icon {
    top: -27px;
    left: 16px;

    width: 55px;
    height: 55px;

    border-width: 6px;
  }

  .benefit-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .benefit-card-body h3 {
    min-height: 44px;

    margin-bottom: 6px;

    font-size: 16px;
  }

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

  .footer-cta-button {
    width: 500px;
    height: 96px;

    font-size: 30px;
  }
}

@media screen and (max-width: 980px) {
  .hero-heading h1 {
    font-size: 52px;
  }

  .recommend-list {
    gap: 20px;
  }

  .recommend-inner h2 {
    font-size: 30px;
  }

  .program-tabs {
    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 12px;
  }

  .program-tab {
    flex-shrink: 0;
  }

  .program-detail {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 45px;
    align-items: start;
  }

  .program-detail-image {
    width: 400px;
    height: 300px;
  }

  .program-detail-content {
    min-height: 300px;
    padding-top: 12px;
  }

  .program-detail-content h3 {
    font-size: 27px;
  }

  .program-detail-content h4 {
    font-size: 20px;
  }

  .program-detail-content li {
    font-size: 16px;
  }

  .benefit-stage {
    width: calc(100% - 24px);
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: 600px;
  }

  .benefit-card {
    flex: 0 0 210px;
  }
}

@media screen and (max-width: 760px) {
  .site-header {
    height: 74px;
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .header-logo img {
    width: 145px;
    height: 42px;
  }

  .hero-section {
    height: 510px;
  }

  .hero-inner {
    width: calc(100% - 40px);
  }

  .hero-heading {
    padding-left: 24px;
  }

  .hero-heading h1 {
    font-size: 39px;
    letter-spacing: -2px;
  }

  .hero-heading p {
    max-width: 300px;

    font-size: 13px;
  }

  .hero-button {
    width: 220px;
    height: 55px;

    margin-left: -20px;

    font-size: 20px;
  }

  .logo-line-section {
    height: 82px;

    padding: 0 20px;
  }

  .intro-section {
    padding: 65px 0 70px;
  }

  .intro-inner {
    width: calc(100% - 36px);

    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-visual {
    width: min(470px, 100%);
    height: 395px;

    margin: 0 auto;
  }

  .intro-content {
    text-align: center;
  }

  .intro-button {
    margin-left: auto;
    margin-right: auto;
  }

  .recommend-section {
    padding: 35px 0 80px;
  }

  .recommend-inner {
    width: calc(100% - 36px);
  }

  .recommend-inner h2 {
    margin-bottom: 42px;

    font-size: 27px;
  }

  .recommend-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .recommend-card {
    min-height: 205px;
  }

  .recommend-card p {
    font-size: 16px;
  }

  .condition-inner {
    width: calc(100% - 40px);

    padding-top: 48px;

    grid-template-columns: 1fr;
  }

  .condition-image-box {
    width: 100%;
    height: 230px;
  }

  .program-inner {
    width: calc(100% - 40px);
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .program-detail {
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: start;
  }

  .program-detail-image {
    width: 100%;
    height: 270px;
  }

  .program-detail-content {
    min-height: auto;
    padding-top: 0;
  }

  .program-detail-content h4 {
    min-height: auto;
  }

  .benefit-section {
    min-height: 690px;
  }

  .benefit-stage {
    width: calc(100% - 16px);
    min-height: auto;
  }

  .benefit-pillar {
    display: none;
  }

  .benefit-top-copy {
    padding: 0 8px;

    font-size: 13px;
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: 100%;

    margin-left: 0;
  }

  .benefit-viewport {
    padding-top: 35px;
  }

  .benefit-track {
    padding-left: 10px;
  }

  .benefit-card {
    flex: 0 0 250px;

    height: 318px;
  }

  .benefit-card-image {
    height: 170px;
  }

  .benefit-card-body {
    height: 148px;
  }

  .footer-cta-section {
    min-height: 390px;
  }

  .footer-cta-inner {
    width: calc(100% - 40px);
  }

  .footer-cta-copy p {
    font-size: 18px;
  }

  .footer-cta-copy h2 {
    font-size: 26px;
  }

  .footer-cta-button {
    width: min(480px, 100%);
    height: 82px;

    margin-top: 48px;

    border-radius: 25px;

    font-size: 25px;
  }

  .footer-cta-button span {
    font-size: 38px;
  }

  .site-footer {
    padding: 35px 0;
  }

  .site-footer-inner {
    width: calc(100% - 40px);

    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

@media screen and (max-width: 480px) {
  .site-header {
    height: 68px;
  }

  .header-logo img {
    width: 130px;
    height: 38px;
  }

  .hero-heading h1 {
    font-size: 32px;
  }

  .intro-visual {
    height: 330px;
  }

  .intro-left-block {
    top: 18px;

    width: 138px;
    height: 280px;
  }

  .intro-top-bar,
  .intro-bottom-bar {
    width: 78%;
    height: 34px;
  }

  .intro-main-image {
    top: 18px;
    left: 54px;

    width: calc(100% - 78px);
    height: 280px;
  }

  .intro-content h2 {
    font-size: 21px;
  }

  .recommend-inner h2 {
    font-size: 24px;
  }

  .recommend-card {
    padding: 30px 16px 26px;
  }

  .recommend-icon {
    width: 66px;
    height: 66px;

    margin-bottom: 23px;
  }

  .recommend-icon svg {
    width: 33px;
    height: 33px;
  }

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

  .program-detail-image {
    height: 230px;
  }

  .benefit-heading h2 {
    font-size: 24px;
  }

  .benefit-card {
    flex: 0 0 235px;
  }

  .footer-cta-section {
    min-height: 350px;
  }

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

  .footer-cta-copy h2 {
    font-size: 21px;
    line-height: 1.5;
  }

  .footer-cta-button {
    height: 70px;

    margin-top: 38px;

    border-radius: 21px;

    font-size: 21px;
  }

  .footer-cta-button span {
    font-size: 32px;
  }

  .footer-company strong {
    font-size: 16px;
  }

  .footer-company p {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.header-logo {
  display: block;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.header-logo-main {
  height: 58px;
  max-width: 205px;
}

.header-logo-partner {
  height: 34px;
  max-width: 165px;
}

.header-logo-divider {
  width: 1px;
  height: 34px;
  background: #d9e1eb;
}

.header-logo-group:hover .header-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 5px 9px rgba(0, 114, 188, 0.14));
}

.hero-heading h1 {
  font-size: 78px;
}

.hero-heading p {
  font-size: 21px;
}

.schedule-contact-section {
  width: 100%;
  padding: 100px 0 110px;
  background: #ffffff;
}

.schedule-contact-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

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

.schedule-heading span,
.contact-title > span {
  color: #4b5563;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.schedule-heading h2 {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: -1.3px;
}

.schedule-heading p {
  margin-top: 18px;
  color: #707781;
  font-size: 16px;
}

.schedule-card {
  position: relative;
  min-height: 300px;
  margin-top: 55px;
  padding: 52px 420px 52px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #b8ddf7;
  border-radius: 28px;
  background: linear-gradient(135deg, #fafdff 0%, #eef8ff 100%);
  box-shadow: 0 18px 45px rgba(38, 111, 168, 0.12);
  overflow: hidden;
}

.schedule-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(#16b8ee, #1476d4);
}

.schedule-card-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.schedule-icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1596dc;
  border-radius: 18px;
  background: #e6f7ff;
  box-shadow: 0 9px 22px rgba(17, 141, 209, 0.16);
}

.schedule-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schedule-card-copy strong {
  display: block;
  color: #076bb6;
  font-size: 23px;
  line-height: 1.4;
}

.schedule-card-copy p {
  margin-top: 7px;
  color: #8a9098;
  font-size: 14px;
}

.schedule-link {
  width: fit-content;
  margin-top: 28px;
  padding: 14px 22px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(90deg, #087cc8, #19bde9);
  box-shadow: 0 10px 22px rgba(8, 124, 200, 0.24);
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.schedule-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 29px rgba(8, 124, 200, 0.31);
}

.schedule-link span {
  margin-left: 8px;
}

.schedule-art {
  position: absolute;
  right: 34px;
  bottom: 18px;
  width: 360px;
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.schedule-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.contact-panel {
  margin-top: 80px;
  padding: 54px 58px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  background: linear-gradient(135deg, #e6efff, #d7e4fb);
}

.contact-title h2 {
  margin-top: 7px;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -2px;
}

.contact-title p {
  margin-top: 14px;
  color: #7a8390;
  font-size: 15px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  min-height: 74px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 20px rgba(44, 75, 119, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 27px rgba(44, 75, 119, 0.16);
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17b86b;
  background: #dcf8e9;
  border-radius: 50%;
  font-size: 16px;
}

.contact-item-copy {
  flex: 1;
  min-width: 0;
}

.contact-item-copy small {
  display: block;
  color: #969da6;
  font-size: 11px;
}

.contact-item-copy strong {
  display: block;
  margin-top: 2px;
  color: #243348;
  font-size: 16px;
  word-break: break-all;
}

.contact-arrow {
  color: #9ba6b4;
  font-size: 16px;
}

@media screen and (max-width: 980px) {
  .header-logo-group { gap: 14px; }
  .header-logo-main { height: 50px; max-width: 175px; }
  .header-logo-partner { height: 29px; max-width: 125px; }
  .hero-heading h1 { font-size: 60px; }
  .hero-heading p { font-size: 18px; }

  .schedule-card {
    padding-right: 330px;
  }

  .schedule-art {
    width: 290px;
  }
}

@media screen and (max-width: 760px) {
  .header-inner {
    overflow-x: auto;
  }

  .header-logo-group {
    gap: 10px;
    min-width: max-content;
  }

  .header-logo-main { height: 38px; max-width: 135px; }
  .header-logo-partner { height: 24px; max-width: 95px; }
  .header-logo-divider { height: 26px; }

  .hero-heading h1 { font-size: 44px; }
  .hero-heading p { font-size: 15px; }

  .schedule-contact-section {
    padding: 70px 0 75px;
  }

  .schedule-contact-inner {
    width: calc(100% - 36px);
  }

  .schedule-heading h2 {
    font-size: 28px;
  }

  .schedule-card {
    min-height: auto;
    padding: 34px 26px 250px;
    border-radius: 22px;
  }

  .schedule-card-copy strong {
    font-size: 20px;
  }

  .schedule-art {
    right: 20px;
    bottom: 12px;
    width: calc(100% - 40px);
    height: 220px;
  }

  .contact-panel {
    margin-top: 55px;
    padding: 40px 24px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-title h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 480px) {
  .header-logo-main { height: 34px; max-width: 115px; }
  .header-logo-partner { height: 21px; max-width: 78px; }
  .hero-heading h1 { font-size: 35px; }

  .schedule-card-copy {
    align-items: flex-start;
  }

  .schedule-icon {
    width: 52px;
    height: 52px;
  }

  .schedule-card-copy strong {
    font-size: 18px;
  }

  .schedule-link {
    width: 100%;
    justify-content: center;
    display: flex;
  }
}

.benefit-section {
  min-height: 1060px;
}

.benefit-stage {
  width: min(1640px, calc(100% - 40px));
  min-height: 830px;
}

.benefit-slider-wrap,
.benefit-viewport,
.benefit-controls {
  width: 1370px;
}

.benefit-slider-wrap,
.benefit-controls {
  margin-left: 190px;
}

.benefit-viewport {
  padding-top: 44px;
  padding-bottom: 38px;
}

.benefit-track {
  gap: 18px;
}

.benefit-card {
  flex: 0 0 330px;
  height: 490px;
  color: inherit;
  text-decoration: none;
}

.benefit-card-image {
  height: 250px;
}

.benefit-card-body {
  height: 240px;
  padding: 58px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card-icon {
  top: -35px;
  left: 26px;
  width: 70px;
  height: 70px;
}

.benefit-card-body h3 {
  min-height: 62px;
  margin-bottom: 14px;
  font-size: 21px;
}

.benefit-card-body p {
  font-size: 15px;
  line-height: 1.75;
}

.benefit-card-link {
  cursor: pointer;
}

.benefit-card-link-text {
  margin-top: auto;
  padding-top: 13px;
  color: #0876bd;
  font-size: 14px;
  font-weight: 800;
}

.benefit-card-link:focus-visible {
  outline: 4px solid rgba(0, 114, 188, 0.35);
  outline-offset: 5px;
}

@media screen and (max-width: 1450px) and (min-width: 1201px) {
  .benefit-stage {
    width: min(1300px, calc(100% - 30px));
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: 1120px;
  }

  .benefit-slider-wrap,
  .benefit-controls {
    margin-left: 100px;
  }

  .benefit-card {
    flex-basis: 272px;
    height: 470px;
  }

  .benefit-card-image {
    height: 230px;
  }

  .benefit-card-body {
    height: 240px;
    padding: 56px 23px 26px;
  }
}

@media screen and (max-width: 1200px) {
  .benefit-section {
    min-height: 900px;
  }

  .benefit-stage {
    min-height: 690px;
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: 740px;
  }

  .benefit-slider-wrap,
  .benefit-controls {
    margin-left: 75px;
  }

  .benefit-card {
    flex-basis: 240px;
    height: 420px;
  }

  .benefit-card-image {
    height: 205px;
  }

  .benefit-card-body {
    height: 215px;
    padding: 48px 18px 22px;
  }

  .benefit-card-body h3 {
    min-height: 48px;
    font-size: 17px;
  }

  .benefit-card-body p {
    font-size: 13px;
  }
}

@media screen and (max-width: 760px) {
  .benefit-section {
    min-height: 760px;
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: 100%;
    margin-left: 0;
  }

  .benefit-card {
    flex-basis: 278px;
    height: 430px;
  }

  .benefit-card-image {
    height: 210px;
  }

  .benefit-card-body {
    height: 220px;
    padding: 50px 22px 24px;
  }

  .benefit-card-body h3 {
    min-height: 50px;
    font-size: 18px;
  }

  .benefit-card-body p {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .benefit-card {
    flex-basis: 260px;
    height: 420px;
  }

  .benefit-card-image {
    height: 200px;
  }

  .benefit-card-body {
    height: 220px;
  }
}

:root {
  --shadow-soft: 0 10px 28px rgba(24, 64, 112, 0.11);
  --shadow-medium: 0 18px 42px rgba(24, 64, 112, 0.17);
  --shadow-strong: 0 26px 58px rgba(16, 55, 105, 0.23);
  --text-shadow-light: 0 2px 7px rgba(18, 55, 96, 0.12);
  --text-shadow-dark: 0 4px 14px rgba(0, 0, 0, 0.28);
}

h1, h2, h3, h4, strong,
.program-tab,
.hero-button,
.intro-button,
.schedule-link,
.footer-cta-button {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.js .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0) scale(0.985);
  filter: blur(5px);
  transition:
    opacity 0.82s ease,
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.intro-section,
.recommend-section,
.program-section,
.benefit-section,
.schedule-contact-section,
.footer-cta-section {
  transition: background-position 1.2s ease, box-shadow 1.2s ease;
}

.section-in-view {
  background-position: center center;
}

.site-header {
  position: relative;
  z-index: 20;
  box-shadow:
    0 7px 24px rgba(23, 56, 105, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header-logo-group {
  padding: 8px 12px;
  border-radius: 14px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.header-logo-group:hover {
  transform: translateY(-2px);
  background: rgba(246, 251, 255, 0.86);
  box-shadow: 0 10px 24px rgba(24, 81, 132, 0.1);
}

.hero-heading {
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.16));
}

.hero-heading h1 {
  text-shadow:
    0 3px 0 rgba(0, 47, 93, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.36);
}

.hero-heading p {
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.2);
}

.hero-button,
.intro-button,
.schedule-link,
.footer-cta-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-button::before,
.intro-button::before,
.schedule-link::before,
.footer-cta-button::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  z-index: -1;
  width: 34%;
  height: 330%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(18deg);
  transition: left 0.58s ease;
}

.hero-button:hover::before,
.intro-button:hover::before,
.schedule-link:hover::before,
.footer-cta-button:hover::before {
  left: 115%;
}

.hero-button:active,
.intro-button:active,
.schedule-link:active,
.footer-cta-button:active {
  transform: translateY(-1px) scale(0.985);
}

.intro-visual {
  filter: drop-shadow(0 18px 34px rgba(21, 76, 126, 0.12));
  transition: filter 0.35s ease;
}

.intro-visual:hover {
  filter: drop-shadow(0 28px 48px rgba(21, 76, 126, 0.2));
}

.intro-content {
  padding: 34px 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 38px rgba(33, 75, 135, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.intro-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-medium);
}

.intro-content h2,
.recommend-inner h2,
.section-heading h2,
.benefit-heading h2,
.schedule-heading h2,
.contact-title h2 {
  text-shadow: var(--text-shadow-light);
}

.intro-paragraphs p {
  transition: color 0.22s ease, transform 0.22s ease, text-shadow 0.22s ease;
}

.intro-paragraphs p:hover {
  color: #3b526f;
  transform: translateX(5px);
  text-shadow: 0 2px 7px rgba(20, 66, 110, 0.08);
}

.recommend-card {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 15px 36px rgba(33, 75, 135, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.recommend-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(84, 145, 240, 0.14), transparent 48%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recommend-card:hover::before {
  opacity: 1;
}

.recommend-card:hover {
  transform: translateY(-11px) scale(1.012);
  box-shadow: var(--shadow-strong);
}

.recommend-card p {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 7px rgba(26, 59, 99, 0.08);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.recommend-card:hover p {
  color: #0c3976;
  text-shadow: 0 4px 10px rgba(26, 79, 145, 0.13);
}

.program-tabs {
  padding: 14px 8px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.program-tab {
  text-shadow: 0 1px 3px rgba(15, 49, 89, 0.06);
}

.program-tab:hover {
  transform: translateY(-5px) scale(1.015);
}

.program-tab.active {
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.17);
  box-shadow:
    0 14px 30px rgba(0, 114, 188, 0.31),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

.program-detail-image {
  box-shadow:
    0 22px 46px rgba(24, 60, 108, 0.23),
    0 2px 0 rgba(255,255,255,0.7) inset;
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.program-detail-image:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.program-detail-content {
  padding: 32px 34px;
  border: 1px solid rgba(111, 153, 204, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    background 0.34s ease;
}

.program-detail-content:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-medium);
}

.program-detail-content h3,
.program-detail-content h4 {
  text-shadow: var(--text-shadow-light);
}

.program-detail-content li {
  text-shadow: 0 1px 4px rgba(20, 62, 105, 0.06);
}

.program-detail-content li:hover {
  transform: translateX(8px);
  text-shadow: 0 3px 9px rgba(0, 114, 188, 0.13);
}

.circle-control {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 9px 22px rgba(18, 101, 173, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}

.circle-control::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(18, 101, 173, 0.18);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.circle-control:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

.benefit-pillar {
  border-radius: 18px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.benefit-pillar:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.benefit-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 13px 31px rgba(22, 63, 112, 0.15),
    0 1px 0 rgba(255,255,255,0.85) inset;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(7, 159, 223, 0);
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover,
.benefit-card.active {
  transform: translateY(-12px) scale(1.015);
  box-shadow: var(--shadow-strong);
}

.benefit-card:hover::after,
.benefit-card.active::after {
  box-shadow: inset 0 0 0 2px rgba(7, 159, 223, 0.34);
}

.benefit-card-image {
  transition: transform 0.42s ease, filter 0.42s ease;
}

.benefit-card:hover .benefit-card-image,
.benefit-card.active .benefit-card-image {
  transform: scale(1.045);
  filter: brightness(1.06) saturate(1.05);
}

.benefit-card-body h3 {
  text-shadow: 0 2px 7px rgba(18, 56, 103, 0.1);
  transition: color 0.24s ease, text-shadow 0.24s ease;
}

.benefit-card:hover .benefit-card-body h3,
.benefit-card.active .benefit-card-body h3 {
  color: #075eaa;
  text-shadow: 0 4px 11px rgba(8, 89, 202, 0.14);
}

.benefit-card-body p {
  transition: color 0.24s ease;
}

.benefit-card:hover .benefit-card-body p,
.benefit-card.active .benefit-card-body p {
  color: #334b66;
}

.benefit-card-link-text {
  transition: transform 0.24s ease, text-shadow 0.24s ease;
}

.benefit-card-link:hover .benefit-card-link-text {
  transform: translateX(4px);
  text-shadow: 0 3px 8px rgba(8, 118, 189, 0.16);
}

.schedule-card {
  box-shadow:
    0 22px 52px rgba(38, 111, 168, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.85);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.schedule-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.schedule-card-copy strong,
.schedule-heading h2 {
  text-shadow: var(--text-shadow-light);
}

.schedule-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover .schedule-icon {
  transform: translateY(-4px) rotate(-3deg) scale(1.05);
  box-shadow: 0 14px 28px rgba(17, 141, 209, 0.25);
}

.schedule-art img {
  filter: drop-shadow(0 18px 26px rgba(22, 87, 139, 0.14));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.schedule-card:hover .schedule-art img {
  transform: translateY(-6px) scale(1.025);
  filter: drop-shadow(0 24px 34px rgba(22, 87, 139, 0.21));
}

.contact-panel {
  border-radius: 28px 28px 0 0;
  box-shadow:
    0 20px 46px rgba(33, 75, 135, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.62);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-item {
  border: 1px solid rgba(116, 149, 189, 0.13);
  border-radius: 15px;
  box-shadow:
    0 10px 24px rgba(44, 75, 119, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.contact-item:hover {
  transform: translateY(-5px) translateX(3px);
  box-shadow: 0 17px 34px rgba(44, 75, 119, 0.19);
}

.contact-item-icon,
.contact-arrow {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.09) rotate(-5deg);
  box-shadow: 0 8px 18px rgba(23, 184, 107, 0.2);
}

.contact-item:hover .contact-arrow {
  transform: translate(3px, -3px);
}

.contact-item-copy strong {
  text-shadow: 0 2px 6px rgba(23, 51, 82, 0.07);
}

.footer-cta-copy h2 {
  text-shadow:
    0 3px 0 rgba(0,0,0,0.15),
    0 10px 28px rgba(0, 0, 0, 0.55);
}

.footer-cta-button {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255,255,255,0.12) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.footer-cta-button:hover {
  transform: translateY(-9px) scale(1.01);
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(0, 114, 188, 0.32);
  outline-offset: 4px;
}

@media screen and (max-width: 760px) {
  .intro-content {
    padding: 26px 20px;
  }

  .program-detail-content {
    padding: 26px 22px;
  }

  .recommend-card:hover,
  .benefit-card:hover,
  .benefit-card.active,
  .schedule-card:hover,
  .contact-panel:hover {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-button::before,
  .intro-button::before,
  .schedule-link::before,
  .footer-cta-button::before {
    display: none;
  }

  .js .scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-wrap: break-word;
}

.hero-inner,
.intro-inner,
.recommend-inner,
.program-inner,
.schedule-contact-inner,
.footer-cta-inner,
.site-footer-inner {
  box-sizing: border-box;
}

.hero-heading {
  width: min(100%, 760px);
  padding-right: 20px;
}

.hero-heading h1 {
  max-width: 100%;
  font-size: clamp(42px, 5.1vw, 78px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-heading p {
  max-width: 680px;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.65;
  word-break: keep-all;
}

.intro-content {
  min-width: 0;
}

.intro-paragraphs p {
  margin: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.footer-cta-copy {
  width: min(100%, 1100px);
}

.footer-cta-copy h2 {
  font-size: clamp(25px, 2.5vw, 40px);
  line-height: 1.45;
  word-break: keep-all;
}

.footer-cta-copy p {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.6;
  word-break: keep-all;
}

.footer-logo-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-image {
  width: auto;
  height: 28px;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}


.benefit-stage {
  width: min(1500px, calc(100% - 48px));
}

.benefit-slider-wrap,
.benefit-viewport,
.benefit-controls {
  width: min(1370px, calc(100vw - 310px));
  max-width: calc(100% - 190px);
}

.benefit-slider-wrap,
.benefit-controls {
  margin-left: clamp(150px, 12vw, 190px);
  margin-right: 0;
}

.benefit-viewport {
  overflow: hidden;
}

.benefit-card {
  flex: 0 0 clamp(260px, 22vw, 330px);
}

@media screen and (max-width: 1200px) {
  .benefit-stage {
    width: min(1000px, calc(100% - 30px));
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: calc(100% - 80px);
    max-width: none;
  }

  .benefit-slider-wrap,
  .benefit-controls {
    margin-left: 80px;
  }
}

@media screen and (max-width: 980px) {
  .hero-heading h1 {
    font-size: clamp(40px, 7vw, 60px);
  }

  .benefit-pillar {
    display: none;
  }

  .benefit-slider-wrap,
  .benefit-viewport,
  .benefit-controls {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .benefit-track {
    padding-inline: 12px;
  }
}

@media screen and (max-width: 760px) {
  .hero-heading {
    width: 100%;
    padding-right: 8px;
  }

  .hero-heading h1 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -0.04em;
  }

  .footer-cta-copy h2,
  .footer-cta-copy p {
    word-break: keep-all;
  }

  .site-footer-inner {
    align-items: center;
    text-align: center;
  }

  .footer-logo-links {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-heading h1 {
    font-size: clamp(29px, 9.3vw, 36px);
  }

  .footer-logo-image {
    height: 22px;
    max-width: 112px;
  }
}


.hero-heading {
  width: auto;
  max-width: none;
  padding-right: 20px;
}

.hero-heading h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  color: #ffffff;
  font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: clamp(58px, 5.1vw, 78px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.025em;
  word-break: keep-all;
  white-space: nowrap;
}

.hero-title-line {
  display: flex;
  align-items: baseline;
  width: max-content;
  column-gap: 0.24em;
  line-height: 1.18;
  white-space: nowrap;
}

.hero-title-word {
  display: inline-block;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: 0.025em;
  vertical-align: baseline;
  white-space: nowrap;
  word-break: keep-all;
  position: static;
  transform: none;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.02em;
}

.site-footer {
  width: 100%;
  padding: 30px 0;
  color: #ffffff;
  background: #3f3f3f !important;
  box-shadow: none !important;
}

.site-footer-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.footer-company {
  min-width: 0;
}

.footer-company strong {
  display: block;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.footer-company p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}

.footer-company p span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-logo-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-image {
  display: block;
  width: auto;
  height: 58px;
  max-width: 180px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal;
}

@media screen and (max-width: 1200px) {
  .hero-heading h1 {
    font-size: clamp(48px, 5.7vw, 68px);
  }
}

@media screen and (max-width: 980px) {
  .hero-heading h1 {
    font-size: clamp(39px, 6.5vw, 58px);
  }

  .hero-title-line {
    column-gap: 0.19em;
  }
}

@media screen and (max-width: 760px) {
  .hero-heading {
    width: 100%;
    padding-right: 8px;
  }

  .hero-heading h1 {
    font-size: clamp(30px, 8.2vw, 43px);
    line-height: 1.22;
    letter-spacing: 0.02em;
  }

  .hero-title-line {
    column-gap: 0.17em;
    line-height: 1.22;
  }

  .hero-title-word {
    letter-spacing: 0.02em;
  }

  .site-footer {
    padding: 28px 0;
  }

  .site-footer-inner {
    width: calc(100% - 40px);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-company p {
    white-space: normal;
  }

  .footer-logo-link {
    align-self: center;
  }

  .footer-logo-image {
    height: 50px;
    max-width: 160px;
  }
}

@media screen and (max-width: 480px) {
  .hero-heading h1 {
    font-size: clamp(26px, 7.7vw, 34px);
  }

  .hero-title-line {
    column-gap: 0.15em;
  }

  .footer-company strong {
    font-size: 16px;
  }

  .footer-company p {
    font-size: 11px;
  }

  .footer-logo-image {
    height: 44px;
    max-width: 145px;
  }
}
.header-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: visible;
}


.header-logo-ieumgil {
  width: auto !important;
  height: 48px !important;
  max-width: none !important;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
}

@media screen and (max-width: 980px) {
  .header-logo-ieumgil {
    width: auto !important;
    height: 43px !important;
  }
}

@media screen and (max-width: 760px) {
  .header-logo-ieumgil {
    width: auto !important;
    height: 36px !important;
  }
}

@media screen and (max-width: 480px) {
  .header-logo-ieumgil {
    width: auto !important;
    height: 32px !important;
  }
}