        /* =========================
           RESET
        ========================= */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        html,
        body {
          width: 100%;
          min-height: 100%;
        }

        body {
          font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
          color: #111;
          background: #fff;
          overflow-x: hidden;
          font-size: 16px;
        }

        ul,
        li {
          list-style: none;
        }

        a {
          color: inherit;
          text-decoration: none;
        }

        button {
          font-family: inherit;
        }

        /* =========================
           HEADER
        ========================= */
        .header-wrap {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 9999;
          background: transparent;
          border-bottom: 1px solid rgba(255, 255, 255, 0.18);
          transition:
            transform 0.35s ease,
            background 0.35s ease,
            border-color 0.35s ease,
            box-shadow 0.35s ease,
            backdrop-filter 0.35s ease;
          transform: translateY(0);
        }

        /* 스크롤을 내릴 때 헤더 숨김 */
        .header-wrap.is-hidden {
          transform: translateY(-100%);
        }

        .header-wrap.is-scrolled {
          background: #ffffff;
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
          /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08); */
          backdrop-filter: blur(14px);
        }

        .header-wrap:hover {
          background: #fff;
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .header-inner {
          max-width: 100%;
          height: 100px;
          margin: 0 auto;
          padding: 0 7vw;
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        .logo {
          width: 180px;
          display: flex;
          align-items: center;
          font-size: 30px;
          font-weight: 800;
          letter-spacing: -0.05em;
          color: #fff;
          transition: color 0.35s ease;
        }

        .header-wrap.is-scrolled .logo,
        .header-wrap:hover .logo {
          color: #111;
        }

        .gnb {
          height: 100%;
        }

        .gnb>ul {
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 54px;
        }

        .gnb>ul>li {
          height: 100%;
          display: flex;
          align-items: center;
        }

        .gnb>ul>li>a {
          position: relative;
          height: 100%;
          display: flex;
          align-items: center;
          font-size: 20px;
          font-weight: 600;
          color: #fff;
          transition: color 0.25s ease;
        }

        .header-wrap.is-scrolled .gnb>ul>li>a,
        .header-wrap:hover .gnb>ul>li>a {
          color: #111;
        }

        .gnb>ul>li:hover>a {
          color: skyblue !important;
        }

        .gnb>ul>li>a::after {
          content: "";
          position: absolute;
          left: 50%;
          bottom: 27px;
          width: 0;
          height: 1px;
          background: #fff;
          transform: translateX(-50%);
          transition: width 0.25s ease, background 0.25s ease;
        }

        .header-wrap.is-scrolled .gnb>ul>li>a::after,
        .header-wrap:hover .gnb>ul>li>a::after {
          background: skyblue;
        }

        .gnb>ul>li:hover>a::after {
          width: 100%;
        }

        .header-right {
          width: 300px;
          display: flex;
          align-items: center;
          justify-content: flex-end;
          gap: 20px;
        }

        .header-right a {
          font-size: 14px;
          font-weight: 500;
          color: #fff;
          transition: color 0.35s ease;
        }

        .header-wrap.is-scrolled .header-right a,
        .header-wrap:hover .header-right a {
          color: #333;
        }

        .menu-btn {
          width: 34px;
          height: 24px;
          border: 0;
          background: transparent;
          cursor: pointer;
          position: relative;
        }

        .menu-btn span {
          position: absolute;
          right: 0;
          width: 100%;
          height: 2px;
          background: #fff;
          transition: all 0.3s ease;
        }

        .header-wrap.is-scrolled .menu-btn span,
        .header-wrap:hover .menu-btn span {
          background: #111;
        }

        .menu-btn span:nth-child(1) {
          top: 2px;
        }

        .menu-btn span:nth-child(2) {
          top: 11px;
          width: 75%;
        }

        .menu-btn span:nth-child(3) {
          top: 20px;
        }

        .menu-btn:hover span:nth-child(2) {
          width: 100%;
        }

        /* =========================
           FULL SUB MENU
        ========================= */
        .sub-wrap-menu {
          position: absolute;
          top: 100px;
          left: 0;
          width: 100%;
          background: #ffffff;
          border-top: 1px solid rgba(0, 0, 0, 0.06);
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
          opacity: 0;
          visibility: hidden;
          transform: translateY(-10px);
          transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
        }

        .header-wrap:hover .sub-wrap-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }

        .sub-menu-inner {
          max-width: 1560px;
          margin: 0 auto;
          padding: 44px 48px 52px;
          display: flex;
          justify-content: center;
        }

        .sub-menu {
          flex: 1;
          min-height: 230px;
          padding: 0 30px;
          border-right: 1px solid #eee;
          text-align: center;
        }

        .sub-menu:first-child {
          border-left: 0;
        }

        .sub-menu:last-child {
          border-right: 0;
        }

        .sub-menu p {
          margin-bottom: 22px;
          font-size: 20px;
          font-weight: 600;
          color: #555;
          letter-spacing: -0.05em;
        }

        .sub-menu ul li+li {
          margin-top: 13px;
        }

        .sub-menu ul li a {
          display: inline-block;
          font-size: 17px;
          font-weight: 400;
          color: #666;
          letter-spacing: -0.04em;
          line-height: 1.45;
          transition: all 0.22s ease;
        }

        .sub-menu ul li a:hover {
          color: #111;
          font-weight: 700;
        }

        /* =========================
           SITEMAP
        ========================= */
        .sitemap-wrap {
          position: fixed;
          top: 0;
          right: -100%;
          width: 100%;
          height: 100vh;
          z-index: 10000;
          background: #fff;
          transition: right 0.45s ease;
          overflow-y: auto;
        }

        .sitemap-wrap.is-open {
          right: 0;
        }

        .sitemap-head {
          max-width: 1500px;
          height: 100px;
          margin: 0 auto;
          padding: 0 48px;
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        .sitemap-logo {
          font-size: 30px;
          font-weight: 800;
          letter-spacing: -0.05em;
        }

        .sitemap-close {
          width: 46px;
          height: 46px;
          border: 0;
          background: #111;
          border-radius: 50%;
          cursor: pointer;
          position: relative;
        }

        .sitemap-close::before,
        .sitemap-close::after {
          content: "";
          position: absolute;
          left: 50%;
          top: 50%;
          width: 22px;
          height: 2px;
          background: #fff;
        }

        .sitemap-close::before {
          transform: translate(-50%, -50%) rotate(45deg);
        }

        .sitemap-close::after {
          transform: translate(-50%, -50%) rotate(-45deg);
        }

        .sitemap-list {
          max-width: 1560px;
          margin: 0 auto;
          padding: 70px 48px 100px;
          display: flex;
          gap: 0;
        }

        .sitemap-list .sub-menu {
          min-height: 300px;
        }

        .mobile-menu {
          display: none;
        }

        /* =========================
           VISUAL ROLLING BANNER
        ========================= */
        .visual {
          position: relative;
          min-height: 100vh;
          padding-top: 0;
          overflow: hidden;
          background: #222;
        }

        /* .visual::before{
content: "HAEYANG\A HOSPITAL";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 5vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
    pointer-events: none;
    white-space: pre-line;
    font-family: "suit";
    } */


        .visual-slider {
          position: relative;
          width: 100%;
          height: 100vh;
        }

        .visual-slide {
          position: absolute;
          inset: 0;
          opacity: 0;
          visibility: hidden;
          z-index: 0;
          transition: opacity 1.15s ease, visibility 1.15s ease;
        }

        .visual-slide.is-active {
          opacity: 1;
          visibility: visible;
          z-index: 2;
        }

        .visual-media {
          position: absolute;
          inset: 0;
          z-index: 0;
        }

        .visual-media video {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .visual-bg {
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }

        .visual-slide::after {
          content: "";
          position: absolute;
          inset: 0;
          z-index: 1;
          background: linear-gradient(rgba(0, 0, 0, 0.028), rgba(0, 0, 0, 0.028));
          pointer-events: none;
        }

        .visual-content {
          position: relative;
          z-index: 3;
          width: 100%;
          height: 100%;
          margin: 0 auto;
          padding: 0 7vw;
          display: flex;
          flex-direction: column;
          justify-content: center;
          color: #fff;
        }

        .visual-content .eyebrow {
          margin-bottom: 18px;
          font-size: 18px;
          font-weight: 600;
          letter-spacing: 0.08em;
        }

        .visual-content h1 {
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-weight: 600;
          line-height: 1.18;
          letter-spacing: -0.055em;
          font-size: 3vw;
        }

        .visual-content p:last-child {
          margin-top: 26px;
          font-size: 20px;
          line-height: 1.7;
          opacity: 0.92;
        }

        .visual-slide .visual-content .eyebrow,
        .visual-slide .visual-content h1,
        .visual-slide .visual-content p:last-child {
          opacity: 0;
          transform: translateX(-134px);
          transition: opacity 1.85s ease, transform 1.85s ease;
        }

        .visual-slide.is-active .visual-content .eyebrow,
        .visual-slide.is-active .visual-content h1,
        .visual-slide.is-active .visual-content p:last-child {
          opacity: 1;
          transform: translateY(0);
        }

        .visual-slide.is-active .visual-content .eyebrow {
          transition-delay: 0.20s;
        }

        .visual-slide.is-active .visual-content h1 {
          transition-delay: 0.50s;
        }

        .visual-slide.is-active .visual-content p:last-child {
          transition-delay: 0.80s;
        }

        .visual-pagination {
          position: absolute;
          left: 7vw;
          bottom: 150px;
          z-index: 10;
          display: flex;
          gap: 10px;
          align-items: center;
        }

        .visual-dot {
          width: 10px;
          height: 10px;
          border: 0;
          border-radius: 999px;
          background: rgba(255, 255, 255, 0.35);
          cursor: pointer;
          transition: width 0.3s ease, background 0.3s ease;
        }

        .visual-dot.is-active {
          width: 72px;
          background: #fff;
        }

        .visual-control {
          width: 34px;
          height: 34px;
          margin-left: 8px;
          border: 1px solid rgba(255, 255, 255, 0.45);
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.12);
          backdrop-filter: blur(6px);
          cursor: pointer;
          position: relative;
          transition: all 0.25s ease;
        }

        .visual-control:hover {
          background: rgba(255, 255, 255, 0.25);
        }

        .visual-control .pause-icon {
          position: absolute;
          left: 50%;
          top: 50%;
          width: 12px;
          height: 14px;
          transform: translate(-50%, -50%);
        }

        .visual-control .pause-icon::before,
        .visual-control .pause-icon::after {
          content: "";
          position: absolute;
          top: 0;
          width: 4px;
          height: 14px;
          background: #fff;
          border-radius: 2px;
        }

        .visual-control .pause-icon::before {
          left: 0;
        }

        .visual-control .pause-icon::after {
          right: 0;
        }

        .visual-control.is-paused .pause-icon {
          width: 0;
          height: 0;
          border-left: 12px solid #fff;
          border-top: 8px solid transparent;
          border-bottom: 8px solid transparent;
          transform: translate(-38%, -50%);
        }

        .visual-control.is-paused .pause-icon::before,
        .visual-control.is-paused .pause-icon::after {
          display: none;
        }

        /* =========================
           SCROLL REACTION SECTION
        ========================= */
        .scroll-section {
          position: relative;
          height: 100vh;
          overflow: hidden;
        }

        .section-inner {
          width: 100%;
          height: 100%;
          padding: 120px 7vw;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 80px;
        }

        .section-title {
          width: 42%;
          position: relative;
          z-index: 2;
        }

        .section-title .num {
          font-size: 22px;
          color: #ae1857;
          font-weight: 800;
          margin-bottom: 24px;
        }

        .section-title h2 {
          font-size: clamp(42px, 5vw, 82px);
          line-height: 1.08;
          letter-spacing: -0.07em;
        }

        .section-title p {
          margin-top: 28px;
          font-size: 19px;
          line-height: 1.75;
          color: rgba(255, 255, 255, .76);
        }

        .sec-dark {
          background: #fff;
          background-image: url(../img/se01_bg05.png);
          background-size: cover;
        }

        .sec-light {
          background: #f6f2ef;
          color: #111;
        }

        .sec-light .section-title p {
          color: #555;
        }

        .card-wrap {
          width: 58%;
          height: 540px;
          position: relative;
        }

        .card {
          position: absolute;
          width: 360px;
          height: 460px;
          border-radius: 32px;
          overflow: hidden;
          background: #fff;
          color: #111;
          box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
        }

        .card img {
          width: 100%;
          height: 68%;
          object-fit: cover;
        }

        .card .txt {
          padding: 28px;
        }

        .card .txt strong {
          display: block;
          font-size: 24px;
          letter-spacing: -0.05em;
        }

        .card .txt span {
          display: block;
          margin-top: 10px;
          font-size: 15px;
          color: #666;
          line-height: 1.5;
        }

        .card-1 {
          left: 0;
          top: 42px;
          z-index: 3;
        }

        .card-2 {
          left: 260px;
          top: 0;
          z-index: 2;
        }

        .card-3 {
          left: 520px;
          top: 70px;
          z-index: 1;
        }


        /* =========================
   SCROLL CHANGE SECTION
========================= */
        .scroll-change-section {
          position: relative;
          height: 100vh;
          overflow: hidden;
          background: #101820;
          color: #fff;
        }

        .change-inner {
          width: 100%;
          height: 100%;
          padding: 120px 7vw;
          display: grid;
          grid-template-columns: 1.05fr 0.95fr;
          gap: 7vw;
          align-items: center;
        }

        .change-left {
          position: relative;
          height: 100%;
          display: flex;
          align-items: center;
        }

        .change-image-wrap {
          position: relative;
          width: 100%;
          height: 68vh;
          max-height: 680px;
          min-height: 480px;
          border-radius: 42px;
          overflow: hidden;
          box-shadow: 0 36px 90px rgba(0, 0, 0, 0.35);
        }

        .change-image {
          position: absolute;
          inset: 0;
          opacity: 0;
          transform: scale(1.08);
          transition: opacity 0.6s ease, transform 0.9s ease;
        }

        .change-image.is-active {
          opacity: 1;
          transform: scale(1);
          z-index: 2;
        }

        .change-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .change-image::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(rgba(0, 0, 0, 0.08),
              rgba(0, 0, 0, 0.28));
        }

        .change-right {
          position: relative;
          height: 520px;
        }

        .change-copy {
          position: absolute;
          left: 0;
          top: 50%;
          width: 100%;
          opacity: 0;
          transform: translateY(-38%) translateX(60px);
          pointer-events: none;
          transition: opacity 0.55s ease, transform 0.75s ease;
        }

        .change-copy.is-active {
          opacity: 1;
          transform: translateY(-50%) translateX(0);
          pointer-events: auto;
        }

        /* .change-copy span {
            display: block;
            margin-bottom: 26px;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.12em;
            color: #b9885a;
        } */

        .change-copy h2 {
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(42px, 4.4vw, 82px);
          line-height: 1.18;
          font-weight: 700;
          letter-spacing: -0.055em;

        }

        .change-copy p {
          max-width: 640px;
          margin-top: 34px;
          font-size: 19px;
          line-height: 1.85;
          color: rgba(255, 255, 255, 0.74);
          letter-spacing: -0.035em;
        }

        .scroll-change-section::before {
          content: "HAEYANG";
          position: absolute;
          right: -4vw;
          bottom: -4vw;
          font-size: 15vw;
          font-weight: 900;
          letter-spacing: -0.08em;
          color: rgba(255, 255, 255, 0.035);
          pointer-events: none;
        }


        /* =========================
           NEW SCROLL SECTION DESIGN
        ========================= */
        .care-section,
        .system-section {
          position: relative;
          height: 100vh;
          overflow: hidden;
        }

        .care-inner,
        .system-inner {
          width: 100%;
          height: 100%;
          padding: 120px 7vw;
          display: flex;
          align-items: center;
          gap: 3vw;
        }

        .care-copy {
          width: 42%;
          position: relative;
          z-index: 2;
        }

        .care-label {
          display: inline-block;
          margin-bottom: 24px;
          font-size: 16px;
          font-weight: 800;
          letter-spacing: 0.12em;
          color: #b9885a;
        }

        .care-copy h2,
        .system-heading h2 {
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(44px, 4.4vw, 48px);
          line-height: 1.18;
          font-weight: 700;
          letter-spacing: -0.055em;
          color: #333;
        }

        .care-copy p {
          max-width: 620px;
          margin-top: 32px;
          font-size: 19px;
          line-height: 1.85;
          letter-spacing: -0.035em;
          word-break: keep-all;
          color: #555;
        }

        .care-visual {
          width: 58%;
          position: relative;
          display: grid;
          grid-template-columns: 1.1fr 0.9fr;
          gap: 34px;
          align-items: center;
        }

        .care-image {
          height: 620px;
          overflow: hidden;
          background: aliceblue;
        }

        .care-image img,
        .system-photo img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .care-list {
          display: flex;
          flex-direction: column;
          gap: 18px;
        }

        .care-list li {
          padding: 28px 30px;
          border-radius: 26px;
          background: rgba(255, 255, 255, 0.09);
          border: 1px solid rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(10px);
        }

        .care-list li span {
          display: block;
          margin-bottom: 14px;
          font-size: 13px;
          font-weight: 800;
          color: #b9885a;
        }

        .care-list li strong {
          display: block;
          margin-bottom: 10px;
          font-size: 23px;
          font-weight: 800;
          letter-spacing: -0.04em;
        }

        .care-list li p {
          font-size: 15px;
          line-height: 1.65;

        }

        .system-section {
          background: #fdfbf8;
          color: #111;
        }

        .system-inner {
          flex-direction: column;
          align-items: stretch;
          justify-content: center;
          gap: 58px;
        }

        .system-heading {
          display: flex;
          align-items: flex-end;
          justify-content: space-between;
          /* gap: 60px; */
          /* flex-direction: column; */
        }

        .system-heading h2 {
          max-width: 920px;
        }

        .system-content {
          display: grid;
          grid-template-columns: 0.8fr 1.2fr;
          gap: 60px;
          align-items: stretch;
        }

        .system-photo {
          min-height: 500px;
          border-radius: 24px;
          overflow: hidden;
        }

        .system-steps {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 22px;
        }

        .system-step {
          position: relative;
          padding: 34px 34px 32px;
          border-radius: 24px;
          background: #fff;
          border: 1px solid rgba(0, 0, 0, 0.06);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .system-step:hover {
          transform: translateY(-6px);
          box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
        }

        .system-step em {
          display: block;
          margin-bottom: 20px;
          font-size: 13px;
          font-style: normal;
          font-weight: 800;
          letter-spacing: 0.08em;
          color: #b9885a;
        }

        .system-step strong {
          display: block;
          margin-bottom: 14px;
          font-size: 26px;
          font-weight: 600;
          letter-spacing: -0.05em;
        }

        .system-step p {
          font-size: 18px;
          line-height: 1.7;
          color: #666;
          letter-spacing: -0.035em;
        }

        .care-section::before {
          content: "CARE";
          position: absolute;
          right: -2vw;
          bottom: -4vw;
          font-size: 19vw;
          font-weight: 900;
          letter-spacing: -0.08em;
          color: rgba(255, 255, 255, 0.035);
          pointer-events: none;
        }

        /* .system-section::before {
            content: "SYSTEM";
            position: absolute;
            left: -2vw;
            bottom: -5vw;
            font-size: 15vw;
            font-weight: 900;
            letter-spacing: -0.08em;
            color: rgba(0, 0, 0, 0.035);
            pointer-events: none;
        } */

        .big-motion-section {
          position: relative;
          height: 100vh;
          overflow: hidden;
          background: #111;
          color: #fff;
        }

        .big-motion-inner {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .big-motion-text {
          text-align: center;
        }

        .big-motion-text .small {
          margin-bottom: 20px;
          font-size: 20px;
          color: #ae1857;
          font-weight: 800;
        }

        .big-motion-text h2 {
          font-size: clamp(48px, 8vw, 120px);
          line-height: 1.02;
          letter-spacing: -0.08em;
        }

        .big-bg-word {
          position: absolute;
          left: 50%;
          top: 50%;
          font-size: 22vw;
          font-weight: 900;
          letter-spacing: -0.1em;
          color: rgba(255, 255, 255, 0.04);
          transform: translate(-50%, -50%);
          white-space: nowrap;
        }

        /* =========================================================
   HORIZONTAL SECTION - NAMPO LANDMARK STYLE
========================================================= */


        .horizontal-section {
          height: 100vh;
          background: #111;
          overflow: hidden;
        }

        .horizontal-track {
          display: flex;
          height: 100%;
          width: max-content;
        }

        .horizontal-panel {
          width: 100vw;
          height: 100vh;
          padding: 100px 8vw;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
        }

        .horizontal-copy h2 {
          text-align: left;
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(44px, 4.4vw, 48px);
          line-height: 1.15;
          font-weight: 700;
          letter-spacing: -0.065em;
          color: #fff;
        }

        .panel-1 {
          background: #111;
        }

        .panel-2 {
          background: #281018;
        }

        .panel-3 {
          background: #ae1857;
        }

        .horizontal-panel {
          position: relative;
          overflow: hidden;
          justify-content: flex-start;
          background-size: cover;
          background-position: center;
        }

        .horizontal-panel::before {
          content: "";
          position: absolute;
          inset: 0;
          z-index: 1;
          background: linear-gradient(90deg,
              rgba(0, 0, 0, 0.062) 0%,
              rgba(0, 0, 0, 0.038) 48%,
              rgba(0, 0, 0, 0.010) 100%);
        }

        .horizontal-copy {
          position: relative;
          z-index: 2;
          max-width: 780px;
          color: #fff;
        }

        .horizontal-copy span {
          display: block;
          margin-bottom: 24px;
          font-size: 15px;
          font-weight: 800;
          letter-spacing: 0.14em;
          color: rgba(255, 255, 255, 0.76);
        }

        .horizontal-copy p {
          max-width: 660px;
          margin-top: 34px;
          font-size: 18px;
          line-height: 1.8;
          color: rgba(255, 255, 255, 0.82);
          word-break: keep-all;
        }

        .horizontal-bg-01 {
          background-image: url("../img/intro_img_01.jpg");
        }

        .horizontal-bg-02 {
          background-image: url("../img/intro_img_02.jpg");
        }

        .horizontal-bg-03 {
          background-image: url("../img/test_bg.jpg");
        }

        .last {
          min-height: 100vh;
          background: #fff;
          color: #111;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          padding: 120px 24px;
        }

        .last h2 {
          font-size: clamp(42px, 6vw, 86px);
          letter-spacing: -0.07em;
        }

        /* =========================
           FOOTER
        ========================= */
        .site-footer {
          background: rgba(0, 0, 0, 0.01);
          color: #333;
          padding: 80px 7vw 120px;
          border-top: 1px solid #eee;
        }

        .footer-inner {
          width: 100%;
          margin: 0 auto;
        }

        .footer-top {
          display: flex;
          justify-content: space-between;
          gap: 60px;
          padding-bottom: 46px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .footer-brand h2 {
          margin-bottom: 30px;
          font-size: 32px;
          font-weight: 700;
          letter-spacing: -0.05em;
        }

        .footer-brand p {
          font-size: 1.2vw;
          line-height: 1.4;
          letter-spacing: -0.03em;
          font-weight: 700;
          color: #777;
          font-family: 'Nanum Myeongjo';
          ;
        }

        .footer-call {
          min-width: 320px;
          text-align: right;
        }

        .footer-call span {
          display: block;
          margin-bottom: 8px;
          font-size: 15px;
          color: rgba(255, 255, 255, 0.65);
        }

        .footer-call strong {
          display: block;
          font-size: 42px;
          font-weight: 800;
          letter-spacing: -0.04em;
          font-family: 'suit';
        }

        .footer-call p {
          margin-top: 10px;
          font-size: 15px;
        }

        .footer-link-wrap {
          padding: 28px 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-links {
          display: flex;
          flex-wrap: wrap;
          gap: 14px 34px;
        }

        .footer-links a {
          font-size: 18px;
          font-weight: 600;
          transition: color 0.2s ease;
        }

        .footer-links a:hover {
          color: skyblue;
        }

        .footer-info {
          padding-top: 28px;
        }

        .footer-info p {
          display: flex;
          flex-wrap: wrap;
          gap: 8px 22px;
          margin-bottom: 10px;
          font-size: 14px;
          line-height: 1.7;
        }

        .footer-info strong {
          color: #333;
        }

        .footer-bottom {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 30px;
          margin-top: 36px;
          padding-top: 26px;
          border-top: 0px solid #eee;
        }

        .footer-bottom p {
          font-size: 13px;

        }

        .footer-policy {
          display: flex;
          gap: 18px;
        }

        .footer-policy a {
          font-size: 13px;
          /* color: rgba(255, 255, 255, 0.64); */
        }

        .footer-policy a:first-child {
          font-weight: 700;
        }


        /*================================
etc
=================================*/

        .plue_btn {
          position: relative;
          display: inline-block;
          width: 44px;
          height: 44px;
          border: 1px solid #333;
          border-radius: 50%;
          transition: all 0.3s ease;
        }

        .plue_btn::before,
        .plue_btn::after {
          content: "";
          position: absolute;
          left: 50%;
          top: 50%;
          width: 15px;
          height: 1px;
          background: #333;
          transform: translate(-50%, -50%);
          transition: all 0.3s ease;
        }

        .plue_btn::after {
          transform: translate(-50%, -50%) rotate(90deg);
        }

        .plue_btn:hover {
          background: skyblue;
          border: 1px solid skyblue;
        }

        .plue_btn:hover::before,
        .plue_btn:hover::after {
          background: #fff;
        }


        /* =========================
           RESPONSIVE
        ========================= */
        @media (max-width: 1560px) {
          .header-inner {
            padding: 0 4vw;
          }

          .gnb>ul {
            gap: 32px;
          }

          .gnb>ul>li>a {
            font-size: 17px;
          }

          .sub-menu-inner,
          .sitemap-list {
            padding-left: 36px;
            padding-right: 36px;
          }

          .sub-menu {
            padding: 0 18px;
          }

          .sub-menu p {
            font-size: 18px;
          }

          .sub-menu ul li a {
            font-size: 15px;
          }

          .visual-content h1 {
            font-size: clamp(46px, 4vw, 72px);
          }
        }

        @media (max-width: 1360px) {
          .gnb>ul {
            gap: 22px;
          }

          .gnb>ul>li>a {
            font-size: 15px;
          }

          .header-right a {
            display: none;
          }

          .header-right {
            width: auto;
          }

          .logo {
            width: 150px;
            font-size: 26px;
          }
        }

        @media (max-width: 1200px) {
          .gnb>ul {
            gap: 20px;
          }

          .sub-menu {
            padding: 0 14px;
          }

          .card {
            width: 320px;
          }

          .card-2 {
            left: 220px;
          }

          .card-3 {
            left: 440px;
          }
        }

        @media (max-width: 1024px) {
          .header-wrap {
            background: #fff;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
          }

          .header-inner {
            height: 72px;
            padding: 0 22px;
          }

          .logo,
          .header-wrap.is-scrolled .logo,
          .header-wrap:hover .logo {
            width: auto;
            font-size: 25px;
            color: #111;
          }

          .gnb,
          .header-right a,
          .sub-wrap-menu {
            display: none;
          }

          .header-right {
            width: auto;
          }

          .menu-btn span,
          .header-wrap.is-scrolled .menu-btn span,
          .header-wrap:hover .menu-btn span {
            background: #111;
          }

          .mobile-menu {
            display: block;
            position: fixed;
            top: 72px;
            right: -100%;
            width: 100%;
            height: calc(100svh - 72px);
            z-index: 9998;
            background: #fff;
            overflow-y: auto;
            transition: right 0.35s ease;
          }

          .mobile-menu.is-open {
            right: 0;
          }

          .mobile-menu-inner {
            padding: 20px 24px 60px;
          }

          .mobile-item {
            border-bottom: 1px solid #eee;
          }

          .mobile-title {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: -0.05em;
            cursor: pointer;
            transition: color 0.3s ease;
          }

          .mobile-title::after {
            content: "+";
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 300;
            line-height: 1;
            color: #111;
            transition: transform 0.3s ease, color 0.3s ease;
          }

          .mobile-item.is-active .mobile-title {
            color: skyblue;
          }

          .mobile-item.is-active .mobile-title::after {
            content: "+";
            transform: rotate(45deg);
            color: skyblue;
          }

          .mobile-sub {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0;
            transform: translateY(-6px);
            transition:
              max-height 0.38s ease,
              opacity 0.25s ease,
              padding 0.3s ease,
              transform 0.3s ease;
          }

          .mobile-item.is-active .mobile-sub {
            max-height: 620px;
            opacity: 1;
            padding: 0 0 18px;
            transform: translateY(0);
          }

          .mobile-sub a {
            display: block;
            padding: 8px 0;
            font-size: 16px;
            color: #666;
          }

          .mobile-contact {
            display: block;
            margin-top: 28px;
            padding: 17px 20px;
            border-radius: 14px;
            background: skyblue;
            color: #fff;
            font-size: 17px;
            font-weight: 800;
            text-align: center;
          }

          .sitemap-wrap {
            display: none;
          }

          .visual,
          .visual-slider {
            height: 100svh;
            min-height: 640px;
          }

          .visual-content {
            justify-content: center;
            padding: 72px 24px 0;
          }

          .visual-content .eyebrow {
            font-size: 14px;
          }

          .visual-content h1 {
            font-size: clamp(36px, 8vw, 58px);
            line-height: 1.22;
            letter-spacing: -0.045em;
          }

          .visual-content p:last-child {
            max-width: 92%;
            font-size: 16px;
            line-height: 1.65;
          }

          .visual-pagination {
            left: 24px;
            bottom: 42px;
            gap: 8px;
          }

          .visual-dot {
            width: 10px;
            height: 10px;
          }

          .visual-dot.is-active {
            width: 54px;
          }

          .visual-control {
            width: 30px;
            height: 30px;
          }

          .scroll-section {
            height: auto;
            min-height: 100vh;
            overflow: visible;
          }

          .section-inner {
            flex-direction: column;
            align-items: flex-start;
            padding: 100px 24px;
            gap: 50px;
          }

          .section-title,
          .card-wrap {
            width: 100%;
          }

          .section-title h2 {
            font-size: 44px;
          }

          .section-title p {
            font-size: 17px;
          }

          .card-wrap {
            height: auto;
            display: grid;
            gap: 24px;
          }

          .card {
            position: relative;
            left: auto;
            top: auto;
            width: 100%;
            height: auto;
          }

          .card img {
            height: 240px;
          }

          .big-motion-section {
            height: auto;
            min-height: 80vh;
            padding: 120px 24px;
          }

          .big-motion-inner {
            min-height: 60vh;
          }

          .horizontal-section {
            height: auto;
          }

          .horizontal-track {
            display: block;
            width: 100%;
          }

          .horizontal-panel {
            width: 100%;
            height: auto;
            min-height: 70vh;
          }

          .site-footer {
            padding: 64px 24px 38px;
          }

          .footer-top {
            flex-direction: column;
            gap: 34px;
            padding-bottom: 36px;
          }

          .footer-call {
            min-width: 0;
            text-align: left;
          }

          .footer-call strong {
            font-size: 34px;
          }

          .footer-bottom {
            flex-direction: column-reverse;
            align-items: flex-start;
            gap: 18px;
          }
        }

        @media (max-width: 1024px) {
          .scroll-change-section {
            height: auto;
            overflow: visible;
          }

          .change-inner {
            height: auto;
            padding: 100px 24px;
            display: block;
          }

          .change-left {
            height: auto;
            margin-bottom: 46px;
          }

          .change-image-wrap {
            height: 420px;
            min-height: 420px;
            border-radius: 28px;
          }

          .change-right {
            height: auto;
            display: grid;
            gap: 32px;
          }

          .change-copy {
            position: relative;
            top: auto;
            opacity: 1;
            transform: none;
            padding: 30px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
            pointer-events: auto;
          }

          .change-copy h2 {
            font-size: clamp(34px, 8vw, 54px);
          }

          .change-copy p {
            font-size: 16px;
          }

          .change-image {
            opacity: 0;
          }

          .change-image:first-child {
            opacity: 1;
            transform: scale(1);
          }
        }

        @media (max-width: 768px) {
          .change-inner {
            padding: 84px 20px;
          }

          .change-image-wrap {
            height: 320px;
            min-height: 320px;
            border-radius: 24px;
          }

          .change-copy h2 {
            font-size: 36px;
            line-height: 1.25;
          }

          .change-copy p {
            font-size: 15px;
          }
        }

        @media (max-width: 480px) {
          .change-inner {
            padding: 74px 18px;
          }

          .change-image-wrap {
            height: 260px;
            min-height: 260px;
            border-radius: 22px;
          }

          .change-copy span {
            font-size: 12px;
            margin-bottom: 18px;
          }

          .change-copy h2 {
            font-size: 31px;
          }

          .change-copy p {
            font-size: 14px;
          }
        }



        @media (max-width: 768px) {
          .header-inner {
            height: 68px;
            padding: 0 20px;
          }

          .logo {
            font-size: 22px;
          }

          .mobile-menu {
            top: 68px;
            height: calc(100svh - 68px);
          }

          .visual,
          .visual-slider {
            min-height: 600px;
          }

          .visual-content {
            padding: 68px 20px 0;
          }

          .visual-content .eyebrow {
            margin-bottom: 14px;
            font-size: 13px;
          }

          .visual-content h1 {
            font-size: clamp(32px, 9vw, 48px);
            line-height: 1.26;
          }

          .visual-content p:last-child {
            margin-top: 20px;
            font-size: 15px;
          }

          .visual-pagination {
            left: 20px;
            bottom: 34px;
          }

          .section-inner {
            padding: 80px 20px;
          }

          .section-title h2 {
            font-size: clamp(32px, 8vw, 44px);
          }

          .card img {
            height: 220px;
          }

          .site-footer {
            padding: 56px 20px 34px;
          }

          .footer-brand h2 {
            font-size: 28px;
          }

          .footer-brand p {
            font-size: 15px;
          }

          .footer-call strong {
            font-size: 30px;
          }

          .footer-call p {
            font-size: 14px;
          }

          .footer-link-wrap {
            padding: 24px 0;
          }

          .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px 16px;
          }

          .footer-links a {
            font-size: 15px;
          }

          .footer-info p {
            display: block;
            font-size: 13px;
          }

          .footer-info span,
          .footer-info strong {
            display: block;
            margin-bottom: 4px;
          }

          .footer-policy {
            flex-wrap: wrap;
            gap: 12px 16px;
          }
        }

        @media (max-width: 480px) {
          .header-inner {
            height: 64px;
            padding: 0 16px;
          }

          .logo {
            font-size: 21px;
          }

          .menu-btn {
            width: 30px;
            height: 22px;
          }

          .menu-btn span:nth-child(1) {
            top: 2px;
          }

          .menu-btn span:nth-child(2) {
            top: 10px;
          }

          .menu-btn span:nth-child(3) {
            top: 18px;
          }

          .mobile-menu {
            top: 64px;
            height: calc(100svh - 64px);
          }

          .mobile-menu-inner {
            padding: 14px 18px 46px;
          }

          .mobile-title {
            padding: 18px 0;
            font-size: 17px;
          }

          .mobile-sub a {
            font-size: 14px;
          }

          .visual,
          .visual-slider {
            min-height: 560px;
          }

          .visual-content {
            padding: 64px 18px 0;
          }

          .visual-content .eyebrow {
            font-size: 12px;
            letter-spacing: 0.06em;
          }

          .visual-content h1 {
            font-size: clamp(30px, 7.5vw, 42px);
            line-height: 1.28;
          }

          .visual-content p:last-child {
            max-width: 100%;
            font-size: 14px;
            line-height: 1.65;
          }

          .visual-pagination {
            left: 18px;
            right: 18px;
            bottom: 28px;
            gap: 7px;
          }

          .visual-dot {
            width: 9px;
            height: 9px;
          }

          .visual-dot.is-active {
            width: 40px;
          }

          .visual-control {
            width: 28px;
            height: 28px;
            margin-left: 3px;
          }

          .section-inner {
            padding: 70px 18px;
          }

          .card {
            border-radius: 20px;
          }

          .card img {
            height: 200px;
          }

          .card .txt {
            padding: 22px;
          }

          .site-footer {
            padding: 50px 18px 30px;
          }

          .footer-brand h2 {
            font-size: 26px;
          }

          .footer-call strong {
            font-size: 28px;
          }

          .footer-links {
            grid-template-columns: 1fr;
          }

          .footer-bottom {
            margin-top: 28px;
            padding-top: 22px;
          }
        }

        @media (max-width: 360px) {
          .visual-content h1 {
            font-size: 29px;
          }

          .visual-content p:last-child {
            font-size: 13px;
          }

          .visual-dot.is-active {
            width: 34px;
          }

          .footer-call strong {
            font-size: 25px;
          }
        }

        /* =========================
           NEW SECTION RESPONSIVE OVERRIDE
        ========================= */
        @media (max-width: 1024px) {

          .care-section,
          .system-section {
            height: auto;
            min-height: auto;
            overflow: visible;
          }

          .care-inner,
          .system-inner {
            height: auto;
            padding: 100px 24px;
            flex-direction: column;
            align-items: flex-start;
            gap: 46px;
          }

          .care-copy,
          .care-visual,
          .system-heading,
          .system-content {
            width: 100%;
          }

          .care-copy h2,
          .system-heading h2 {
            font-size: clamp(34px, 8vw, 54px);
          }

          .care-copy p {
            font-size: 16px;
          }

          .care-visual {
            grid-template-columns: 1fr;
          }

          .care-image {
            width: 100%;
            height: 420px;
            border-radius: 28px;
          }

          .care-list li {
            padding: 24px;
            border-radius: 22px;
          }

          .system-heading {
            display: block;
          }

          .system-content {
            grid-template-columns: 1fr;
            gap: 100px;
          }

          .system-photo {
            min-height: 380px;
            border-radius: 28px;
          }

          .system-steps {
            grid-template-columns: 1fr 1fr;
            gap: 18px;
          }

          .system-step {
            padding: 28px;
            border-radius: 24px;
          }

          .system-step strong {
            font-size: 22px;
          }
        }

        @media (max-width: 768px) {

          .care-inner,
          .system-inner {
            padding: 84px 20px;
          }

          .care-copy h2,
          .system-heading h2 {
            font-size: 36px;
            line-height: 1.25;
          }

          .care-image {
            height: 320px;
          }

          .care-list li strong {
            font-size: 20px;
          }

          .system-photo {
            min-height: 300px;
          }

          .system-steps {
            grid-template-columns: 1fr;
          }

          .system-step {
            padding: 24px;
          }
        }

        @media (max-width: 480px) {

          .care-inner,
          .system-inner {
            padding: 74px 18px;
          }

          .care-copy h2,
          .system-heading h2 {
            font-size: 28px;
          }

          .care-copy p,
          .system-step p,
          .care-list li p {
            font-size: 14px;
          }

          .care-image,
          .system-photo {
            height: 260px;
            min-height: 260px;
            border-radius: 22px;
          }
        }


        /* =========================================================
           SCROLL CHANGE SECTION - 50/50 PIN SCROLL OVERRIDE
           왼쪽 이미지 50% / 오른쪽 텍스트 50% / 100vh 고정
        ========================================================= */
        .scroll-change-section {
          position: relative !important;
          width: 100% !important;
          height: 100vh !important;
          overflow: hidden !important;
          background: #fff !important;
          color: #111 !important;
        }

        .scroll-change-section .change-inner {
          width: 100% !important;
          height: 100vh !important;
          padding: 0 !important;
          display: grid !important;
          grid-template-columns: 50% 50% !important;
          gap: 0 !important;
          align-items: stretch !important;
        }

        .scroll-change-section .change-left {
          position: relative !important;
          width: 100% !important;
          height: 100vh !important;
          display: block !important;
          overflow: hidden !important;
          margin: 0 !important;
        }

        .scroll-change-section .change-image-wrap {
          position: relative !important;
          width: 100% !important;
          height: 100vh !important;
          min-height: 0 !important;
          max-height: none !important;
          border-radius: 0 !important;
          overflow: hidden !important;
          box-shadow: none !important;
        }

        .scroll-change-section .change-image {
          position: absolute !important;
          inset: 0 !important;
          width: 100% !important;
          height: 100% !important;
          opacity: 1 !important;
          transform: none;
          transition: none !important;
          overflow: hidden !important;
          z-index: 1;
        }

        .scroll-change-section .change-image img {
          display: block !important;
          width: 100% !important;
          height: 100% !important;
          object-fit: cover !important;
        }

        .scroll-change-section .change-image::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16));
          pointer-events: none;
        }

        .scroll-change-section .change-right {
          position: relative !important;
          width: 100% !important;
          height: 100vh !important;
          background: #fff !important;
          display: flex !important;
          align-items: center !important;
          justify-content: center !important;
          padding: 0 8vw !important;
          overflow: hidden !important;
        }

        .scroll-change-section .change-copy {
          position: absolute !important;
          left: 8vw !important;
          right: 8vw !important;
          top: 50% !important;
          width: auto !important;
          max-width: 720px !important;
          opacity: 0;
          transform: translateY(-50%);
          pointer-events: none;
          transition: none !important;
          padding: 0 !important;
          border: 0 !important;
        }

        /* .scroll-change-section .change-copy span {
            display: block;
            margin-bottom: 34px;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 0.04em;
            color: #d27b42;
        } */

        .scroll-change-section .change-copy h2 {
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(44px, 4.4vw, 48px);
          line-height: 1.18;
          font-weight: 700;
          letter-spacing: -0.055em;
          color: #333;
        }

        .t-color {
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(44px, 4.4vw, 48px);
          line-height: 1.18;
          font-weight: 700;
          letter-spacing: -0.055em;
          color: skyblue;
        }

        .scroll-change-section .change-copy p {
          max-width: 620px;
          margin-top: 42px;
          font-size: 18px;
          line-height: 1.75;
          color: #555;
          /* letter-spacing: -0.04em; */
          word-break: keep-all;
        }

        .scroll-change-section::before {
          display: none !important;
        }

        @media (max-width: 1024px) {
          .scroll-change-section {
            height: auto !important;
            overflow: visible !important;
          }

          .scroll-change-section .change-inner {
            height: auto !important;
            display: block !important;
          }

          .scroll-change-section .change-left {
            width: 100% !important;
            height: 56vh !important;
            min-height: 420px !important;
          }

          .scroll-change-section .change-image-wrap {
            height: 100% !important;
          }

          .scroll-change-section .change-image {
            opacity: 0 !important;
            transform: none !important;
          }

          .scroll-change-section .change-image:first-child {
            opacity: 1 !important;
          }

          .scroll-change-section .change-right {
            width: 100% !important;
            height: auto !important;
            display: block !important;
            padding: 80px 24px !important;
            overflow: visible !important;
          }

          .scroll-change-section .change-copy {
            position: relative !important;
            left: auto !important;
            right: auto !important;
            top: auto !important;
            width: 100% !important;
            max-width: none !important;
            opacity: 1 !important;
            transform: none !important;
            padding: 36px 0 !important;
            border-bottom: 1px solid #eee !important;
            pointer-events: auto !important;
          }

          .scroll-change-section .change-copy:last-child {
            border-bottom: 0 !important;
          }

          .scroll-change-section .change-copy h2 {
            font-size: clamp(34px, 8vw, 54px);
          }

          .scroll-change-section .change-copy p {
            margin-top: 24px;
            font-size: 16px;
          }
        }

        @media (max-width: 768px) {
          .scroll-change-section .change-left {
            height: 48vh !important;
            min-height: 340px !important;
          }

          .scroll-change-section .change-right {
            padding: 70px 20px !important;
          }

          .scroll-change-section .change-copy h2 {
            font-size: 36px;
            line-height: 1.25;
          }

          .scroll-change-section .change-copy p {
            font-size: 15px;
          }
        }

        @media (max-width: 480px) {
          .scroll-change-section .change-left {
            height: 42vh !important;
            min-height: 280px !important;
          }

          .scroll-change-section .change-right {
            padding: 60px 18px !important;
          }

          .scroll-change-section .change-copy span {
            margin-bottom: 18px;
            font-size: 12px;
          }

          .scroll-change-section .change-copy h2 {
            font-size: 28px;
          }

          .scroll-change-section .change-copy p {
            font-size: 14px;
          }
        }


        /* =========================================================
           SEC05 FINAL STABILITY PATCH
           이미지 전환 중 빈 영역/흰 배경이 보이지 않도록 왼쪽 영역은 검정 배경으로 고정
        ========================================================= */
        @media (min-width: 1025px) {

          .scroll-change-section,
          .scroll-change-section .change-inner {
            min-height: 100vh !important;
          }

          .scroll-change-section .change-left,
          .scroll-change-section .change-image-wrap {
            background: #111 !important;
          }

          .scroll-change-section .change-image {
            will-change: transform;
            backface-visibility: hidden;
          }

          .scroll-change-section .change-right {
            background: #fff !important;
            z-index: 10;
          }
        }

        /* =========================================================
           SEC05 IPARK BRAND CORE STYLE FINAL
           - pin 대신 CSS sticky 구조
           - section은 300vh, 내부 화면만 100vh 고정
           - 왼쪽 이미지는 이동하지 않고 clip-path로 덮임
           - 오른쪽 텍스트는 단계별 fade
        ========================================================= */
        @media (min-width: 1025px) {
          .scroll-change-section.sec05 {
            position: relative !important;
            height: 500vh !important;
            min-height: 300vh !important;
            overflow: visible !important;
            background: #fff !important;
            color: #111 !important;
          }

          .scroll-change-section.sec05 .change-inner {
            position: sticky !important;
            top: 0 !important;
            width: 100% !important;
            height: 100vh !important;
            min-height: 100vh !important;
            padding: 0 !important;
            display: grid !important;
            grid-template-columns: 50% 50% !important;
            gap: 0 !important;
            align-items: stretch !important;
            overflow: hidden !important;
          }

          .scroll-change-section.sec05 .change-left {
            position: relative !important;
            width: 100% !important;
            height: 100vh !important;
            overflow: hidden !important;
            background: #111 !important;
            margin: 0 !important;
            display: block !important;
          }

          .scroll-change-section.sec05 .change-image-wrap {
            position: relative !important;
            width: 100% !important;
            height: 100vh !important;
            min-height: 100vh !important;
            max-height: none !important;
            border-radius: 0 !important;
            overflow: hidden !important;
            box-shadow: none !important;
            background: #111 !important;
          }

          .scroll-change-section.sec05 .change-image {
            position: absolute !important;
            inset: 0 !important;
            width: 100% !important;
            height: 100% !important;
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
            overflow: hidden !important;
            will-change: clip-path;
            backface-visibility: hidden;
          }

          .scroll-change-section.sec05 .change-image:nth-child(1) {
            z-index: 1 !important;
          }

          .scroll-change-section.sec05 .change-image:nth-child(2) {
            z-index: 2 !important;
          }

          .scroll-change-section.sec05 .change-image:nth-child(3) {
            z-index: 3 !important;
          }

          .scroll-change-section.sec05 .change-image img {
            display: block !important;
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
          }

          .scroll-change-section.sec05 .change-right {
            position: relative !important;
            width: 100% !important;
            height: 100vh !important;
            background: #fff !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 0 8vw !important;
            overflow: hidden !important;
            z-index: 5 !important;
          }

          .scroll-change-section.sec05 .change-copy {
            position: absolute !important;
            left: 8vw !important;
            right: 8vw !important;
            top: 50% !important;
            width: auto !important;
            max-width: 720px !important;
            opacity: 0;
            transform: translateY(-44%);
            pointer-events: none;
            transition: opacity .45s ease, transform .45s ease !important;
            padding: 0 !important;
            border: 0 !important;
          }

          .scroll-change-section.sec05 .change-copy.is-active {
            opacity: 1 !important;
            transform: translateY(-50%) !important;
            pointer-events: auto !important;
          }
        }














        /* 커스텀 AOS: reveal-line만 직접 제어 */
        [data-aos="reveal-line"] {
          opacity: 0;
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          transition:
            opacity 0.3s ease,
            clip-path 1.5s ease-out,
            -webkit-clip-path 1.5s ease-out;
        }

        [data-aos="reveal-line"].aos-animate {
          opacity: 1;
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }


        /* =========================================================
   SEC01 CARE CARD ZIGZAG STYLE
========================================================= */

        .care-card-visual {
          width: 61%;
          height: 92vh;
          min-height: 820px;
          max-height: 980px;
          position: relative;
          display: block !important;
        }

        .care-card {
          position: absolute;
          display: block;
          width: 46.5%;
          height: 44%;
          border-radius: 24px;
          overflow: hidden;
          background: #ddd;
          color: #fff;
          /* box-shadow: 0 28px 72px rgba(0, 0, 0, 0.16); */
          isolation: isolate;
          transform: translateZ(0);
        }

        .care-card::after {
          content: "";
          position: absolute;
          inset: 0;
          z-index: 1;
          background: linear-gradient(to bottom,
              rgba(0, 0, 0, 0.20) 0%,
              rgba(0, 0, 0, 0.18) 42%,
              rgba(0, 0, 0, 0.62) 100%);
          pointer-events: none;
        }

        .care-card img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transform: scale(1.04);
        }

        .care-card-01 img {
          object-position: 20% center;
        }

        .care-card-02 img {
          object-position: 50% center;
        }

        .care-card-03 img {
          object-position: left center;
        }

        .care-card-04 img {
          object-position: left center;
        }


        .care-card-txt {
          position: absolute;
          left: 30px;
          right: 30px;
          bottom: 30px;
          z-index: 2;
        }

        .care-card-txt span {
          display: block;
          margin-bottom: 10px;
          font-size: 15px;
          font-weight: 800;
          color: rgba(255, 255, 255, 0.9);
        }

        .care-card-txt strong {
          display: block;
          font-size: clamp(23px, 1.65vw, 32px);
          line-height: 1.22;
          font-weight: 600;
          letter-spacing: -0.06em;
          color: #fff;
        }

        .care-card-txt p {
          margin-top: 12px;
          font-size: 15px;
          line-height: 1.55;
          letter-spacing: -0.04em;
          color: rgba(255, 255, 255, 0.88);
        }

        /* 왼쪽 컬럼 */
        .care-card-01 {
          left: 0;
          top: 3%;
          z-index: 2;
        }

        .care-card-03 {
          left: 0;
          bottom: 3%;
          z-index: 1;
        }

        /* 오른쪽 컬럼 - 지그재그는 유지하되 세로 간격은 왼쪽과 동일하게 */
        .care-card-02 {
          right: 0;
          top: 7%;
          z-index: 3;
        }

        .care-card-04 {
          right: 0;
          bottom: -1%;
          z-index: 2;
        }

        .care-card:hover img {
          transform: scale(1.1);
          transition: transform 0.6s ease;
        }

        @media (max-width: 1024px) {
          .care-card-visual {
            width: 100%;
            height: auto;
            min-height: 0;
            max-height: none;
            display: grid !important;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
          }

          .care-card {
            position: relative;
            left: auto;
            right: auto;
            top: auto;
            bottom: auto;
            width: 100%;
            height: 360px;
            border-radius: 26px;
          }
        }

        @media (max-width: 768px) {
          .care-card-visual {
            grid-template-columns: 1fr;
          }

          .care-card {
            height: 320px;
          }

          .care-card-txt {
            left: 24px;
            right: 24px;
            bottom: 24px;
          }

          .care-card-txt strong {
            font-size: 24px;
          }

          .care-card-txt p {
            font-size: 14px;
          }

          .t-color {
            font-size: 28px !important;
          }
        }

        @media (max-width: 480px) {
          .care-card {
            height: 280px;
            border-radius: 22px;
          }

          .care-card-txt {
            left: 20px;
            right: 20px;
            bottom: 20px;
          }
        }

        /* =========================================================
   CARD SECTION
   스크롤 시 카드가 중앙에서 겹쳐지는 구조
========================================================= */

        .card-section {
          position: relative;
          min-height: 330vh;
          padding: 0px 7vw 200px;
          /* background: #f7f4ef; */
          overflow: visible;
        }

        .card-section-inner {
          position: relative;
          width: 100%;
        }

        .card-section-title {
          position: sticky;
          /* top: 120px; */
          z-index: 1;
          max-width: 980px;
          margin: 0 auto;
          min-height: 72vh;
          display: flex;
          flex-direction: column;
          justify-content: center;
          text-align: center;
        }

        .card-section-title span {
          display: block;
          margin-bottom: 24px;
          font-size: 15px;
          font-weight: 800;
          letter-spacing: 0.14em;
          color: #b9885a;
        }

        .card-section-title h2 {
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(44px, 4.4vw, 48px);
          line-height: 1.12;
          font-weight: 700;
          color: #333;
        }

        /* .card-section-title h2 span{
    font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
    font-size: clamp(44px, 4.4vw, 48px);
    line-height: 1.12;
    font-weight: 700;    
    color: skyblue;
    margin: inherit;
    display: inline;
    letter-spacing: normal;
} */

        .card-section-title p {
          max-width: 720px;
          margin: 34px auto 0;
          font-size: 19px;
          line-height: 1.85;
          color: #555;
          word-break: keep-all;
        }

        .stack-card-list {
          position: relative;
          z-index: 3;
          /* max-width: 1600px; */
          margin: -18vh auto 0;
        }

        .stack-card-item {
          position: sticky;
          /* top: 110px; */
          min-height: 68vh;
          margin-bottom: 70px;
          padding: 58px;
          border-radius: 42px;
          background: #fff;
          display: grid;
          grid-template-columns: 0.7fr 1.3fr;
          gap: 56px;
          align-items: center;
          overflow: hidden;
          transform-origin: center top;
          will-change: auto;
          backface-visibility: hidden;
          transform: translateZ(0);
        }

        .stack-card-item:nth-child(1) {
          top: 110px;
          z-index: 1;
        }

        .stack-card-item:nth-child(2) {
          top: 126px;
          z-index: 2;
        }

        .stack-card-item:nth-child(3) {
          top: 142px;
          z-index: 3;

        }

        .stack-card-item:nth-child(4) {
          top: 158px;
          z-index: 4;
        }

        .stack-card-item:nth-child(5) {
          top: 174px;
          z-index: 5;
          margin-bottom: 0;
        }




        .stack-card-num {
          position: absolute;
          left: 46px;
          top: 38px;
          font-size: 26px;
          font-weight: 800;
          letter-spacing: 0.12em;
          color: #b9885a;
        }

        .stack-card-copy {
          position: relative;
          z-index: 2;
          padding-top: 48px;
        }

        .stack-card-copy h3 {
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(34px, 3vw, 42px);
          line-height: 1.22;
          font-weight: 700;
          letter-spacing: -0.06em;
          color: #333;
          word-break: keep-all;
        }

        /* .stack-card-copy span {
    display: block;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #b9885a;
} */
        .stack-card-copy p {
          max-width: 520px;
          margin-top: 28px;
          font-size: 18px;
          line-height: 1.85;
          color: #555;
          word-break: keep-all;
        }

        .stack-card-image {
          height: 52vh;
          min-height: 420px;
          border-radius: 30px;
          overflow: hidden;
          background: #eee;
        }

        .stack-card-image {
          position: relative;
          overflow: hidden;
        }

        .stack-card-image .swiper,
        .stack-card-image .swiper-wrapper,
        .stack-card-image .swiper-slide {
          width: 100%;
          height: 100%;
        }

        .stack-card-image .swiper-slide {
          overflow: hidden;
          position: relative;
        }

        .stack-card-image .swiper-slide p {
          position: absolute;
          padding: 20px 30px;
          background-color: #101820;
          color: #eee;
          bottom: 0;
        }

        .stack-card-image .swiper-slide img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }

        .stack-card-image .swiper-slide img.pos-top {
          object-position: center 30%;
        }

        /* 페이지네이션 */
        .stack-card-image .swiper-pagination {
          bottom: 18px !important;
          z-index: 5;
        }

        .stack-card-image .swiper-pagination-bullet {
          width: 8px;
          height: 8px;
          background: rgba(255, 255, 255, 0.65);
          opacity: 1;
        }

        .stack-card-image .swiper-pagination-bullet-active {
          width: 24px;
          border-radius: 999px;
          background: #ffffff;
        }

        .stack-card-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .card-bg-01 {
          background: #f6fbff;
        }

        .card-bg-02 {
          background: #f4faf8;
        }

        .card-bg-03 {
          background: #fffaf2;
        }

        .card-bg-04 {
          background: #f5f7fb;
        }

        .card-bg-05 {
          background: #f7f8f8;
        }

        /* 모바일 */
        @media (max-width: 1024px) {
          .card-section {
            min-height: auto;
            padding: 100px 24px;
          }

          .card-section-title {
            position: relative;
            top: auto;
            min-height: auto;
            margin-bottom: 50px;
          }

          .stack-card-list {
            margin: 0;
          }

          .stack-card-item {
            position: relative;
            top: auto;
            min-height: auto;
            margin-bottom: 28px;
            padding: 34px;
            grid-template-columns: 1fr;
            gap: 30px;
            border-radius: 30px;
          }

          .stack-card-image {
            height: 360px;
            min-height: 360px;
            order: -1;
          }
        }

        @media (max-width: 768px) {
          .card-section {
            padding: 84px 20px;
          }

          .card-section-title h2 {
            font-size: 28px;
            line-height: 1.22;
          }

          .card-section-title p {
            font-size: 16px;
          }

          .stack-card-item {
            padding: 26px;
            border-radius: 26px;
          }

          .stack-card-copy {
            padding-top: 38px;
          }

          .stack-card-copy h3 {
            font-size: 24px;
          }

          .stack-card-copy p {
            font-size: 15px;
          }

          .stack-card-image {
            height: 280px;
            min-height: 280px;
            border-radius: 22px;
          }
        }

        /* =========================================================
   GNUBOARD CARD SECTION STICKY FIX
   ---------------------------------------------------------
   증상: HTML 단독 파일에서는 #cardSection 의 sticky 카드가
        잘 동작하지만 그누보드 서버에 올리면 카드가 그냥 흘러내림
   원인: position: sticky 는 조상 요소 중 하나라도
        overflow: hidden / auto / scroll 이 걸려 있으면 작동하지 않음.
        그누보드 basic 테마 head.php 의 표준 wrapper 구조
        (#wrapper > #container_wr > #container) 와 그 default
        스타일에 overflow:hidden 이 들어 있어 sticky 컨텍스트가
        끊겨버림. 또한 html/body 의 overflow-x: hidden 도
        브라우저에 따라 sticky 를 무력화함.
   해법: 조상 wrapper 들의 overflow / transform / contain 해제.
        body/html 의 overflow-x 는 hidden → clip 으로 교체
        (clip 은 sticky 컨텍스트를 깨지 않으면서 가로스크롤만 차단).
========================================================= */
        html,
        body {
          overflow-x: clip !important;
          overflow-y: visible !important;

        }

        /* 그누보드 basic 테마 표준 wrapper + 흔한 커스텀 wrapper 들 */
        body #wrapper,
        body #container_wr,
        body #container,
        body #contents,
        body #content,
        body .main_inner,
        body .wrap,
        body .wrapper {
          overflow: visible !important;
          transform: none !important;
          filter: none !important;
          perspective: none !important;
          contain: none !important;
        }

        /* sticky 카드 자신에 GPU 가속(transform/will-change/backface) 이
   걸려 있으면 GSAP 의 gsap.from 트윈이 transform 을 만질 때
   sticky 위치 계산이 어긋남. PC 에서는 모두 해제 */
        @media (min-width: 1025px) {
          body #cardSection .stack-card-item {
            transform: none !important;
            -webkit-transform: none !important;
            will-change: auto !important;
            backface-visibility: visible !important;
            -webkit-backface-visibility: visible !important;
          }
        }

        /* =========================================================
   MAIN PAIN & REHABILITATION CENTER
   통증재활치료센터 대표 페이지의 INTRO / TARGET / PROGRAM 요약
========================================================= */
        .hy-main-rehab {
          position: relative;
          padding: 150px 7vw 160px;
          overflow: hidden;
          background: #f6f8fb;
          color: #26302b;
        }

        /* .hy-main-rehab::before {
          content: "REHAB";
          position: absolute;
          right: -1.5vw;
          top: 28px;
          font-size: clamp(110px, 15vw, 280px);
          line-height: 1;
          font-weight: 900;
          letter-spacing: -0.08em;
          color: rgba(35, 50, 43, 0.025);
          pointer-events: none;
        } */

        .hy-main-rehab-inner {
          position: relative;
          z-index: 1;
          width: 100%;
          margin: 0 auto;
        }

        .hy-main-rehab-intro {
          display: grid;
          grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
          gap: 7vw;
          align-items: end;
        }

        .hy-main-rehab-kicker,
        .hy-main-rehab-target-head>span,
        .hy-main-rehab-program-head>div>span,
        .hy-main-rehab-target-copy>span {
          display: block;
          margin-bottom: 18px;
          color: #9b7a4c;
          font-size: 14px;
          font-weight: 900;
          letter-spacing: 0.16em;
        }

        .hy-main-rehab-heading h2 {
          margin: 0;
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(42px, 4.4vw, 48px);
          line-height: 1.18;
          font-weight: 700;
          letter-spacing: -0.065em;
          color: #303934;
          word-break: keep-all;
        }

        .hy-main-rehab-heading h2 em {
          color: #75a9ba;
          font-style: normal;
        }

        .hy-main-rehab-intro-side {
          padding-bottom: 6px;
        }

        .hy-main-rehab-intro-side>p {
          max-width: 640px;
          margin: 0;
          color: #5d6762;
          font-size: 18px;
          line-height: 1.85;
          letter-spacing: -0.035em;
          word-break: keep-all;
        }

        .hy-main-rehab-more {
          display: inline-flex;
          align-items: center;
          gap: 16px;
          margin-top: 30px;
          color: #29332e;
          font-size: 18px;
          font-weight: 800;
        }

        .hy-main-rehab-more i {
          position: relative;
          width: 44px;
          height: 44px;
          border: 1px solid rgba(38, 48, 43, 0.3);
          border-radius: 50%;
          transition: background 0.25s ease, border-color 0.25s ease;
        }

        .hy-main-rehab-more i::before,
        .hy-main-rehab-more i::after {
          content: "";
          position: absolute;
          left: 50%;
          top: 50%;
          background: #29332e;
          transform: translate(-50%, -50%);
          transition: background 0.25s ease;
        }

        .hy-main-rehab-more i::before {
          width: 13px;
          height: 1px;
        }

        .hy-main-rehab-more i::after {
          width: 1px;
          height: 13px;
        }

        .hy-main-rehab-more:hover i {
          background: #75a9ba;
          border-color: #75a9ba;
        }

        .hy-main-rehab-more:hover i::before,
        .hy-main-rehab-more:hover i::after {
          background: #fff;
        }

        .hy-main-rehab-key-grid {
          display: grid;
          grid-template-columns: repeat(4, minmax(0, 1fr));
          gap: 14px;
          margin-top: 58px;
        }

        .hy-main-rehab-key-card {
          min-height: 146px;
          padding: 26px 28px;
          border: 1px solid rgba(47, 59, 52, 0.08);
          border-radius: 26px;
          background: rgba(255, 255, 255, 0.88);
        }

        .hy-main-rehab-key-card em {
          display: block;
          margin-bottom: 18px;
          color: #c29d66;
          font-size: 12px;
          font-style: normal;
          font-weight: 900;
          letter-spacing: 0.12em;
        }

        .hy-main-rehab-key-card strong {
          display: block;
          color: #2f3934;
          font-size: clamp(18px, 1.55vw, 23px);
          line-height: 1.38;
          font-weight: 600;
          letter-spacing: -0.05em;
          word-break: keep-all;
        }

        .hy-main-rehab-target {
          display: grid;
          grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
          gap: 28px;
          margin-top: 110px;
          align-items: stretch;
        }

        .hy-main-rehab-target-visual {
          position: relative;
          min-height: 700px;
          overflow: hidden;
          border-radius: 42px;
          background: #dce3e0;
        }

        .hy-main-rehab-target-visual::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(180deg, rgba(23, 31, 27, 0.02) 5%, rgba(23, 31, 27, 0.18) 46%, rgba(23, 31, 27, 0.86) 100%);
          pointer-events: none;
        }

        .hy-main-rehab-target-visual img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          will-change: transform;
        }

        .hy-main-rehab-target-copy {
          position: absolute;
          z-index: 2;
          left: 48px;
          right: 48px;
          bottom: 48px;
          color: #fff;
        }

        .hy-main-rehab-target-copy>span {
          color: #d8bd8a;
        }

        .hy-main-rehab-target-copy h3 {
          margin: 0;
          color: #fff;
          font-family: "Pretendard", "Noto Serif KR", serif;
          font-size: clamp(34px, 3vw, 42px);
          line-height: 1.22;
          font-weight: 600;
          letter-spacing: -0.06em;
          word-break: keep-all;
        }

        .hy-main-rehab-target-copy p {
          max-width: 560px;
          margin-top: 20px;
          color: rgba(255, 255, 255, 0.76);
          font-size: 16px;
          line-height: 1.75;
          word-break: keep-all;
        }

        .hy-main-rehab-target-panel {
          padding: 46px;
          border: 1px solid rgba(47, 59, 52, 0.08);
          border-radius: 42px;
          background: #fff;
        }

        .hy-main-rehab-target-head {
          margin-bottom: 34px;
        }

        .hy-main-rehab-target-head h3,
        .hy-main-rehab-program-head h3 {
          margin: 0;
          color: #303934;
          font-family: "Pretendard", "Noto Serif KR", serif;
          font-size: clamp(32px, 2.8vw, 42px);
          line-height: 1.22;
          font-weight: 600;
          letter-spacing: -0.06em;
          word-break: keep-all;
        }

        .hy-main-rehab-target-head p,
        .hy-main-rehab-program-head p {
          max-width: 650px;
          margin-top: 16px;
          color: #68716d;
          font-size: 16px;
          line-height: 1.75;
          word-break: keep-all;
        }

        .hy-main-rehab-target-list {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 12px;
        }

        .hy-main-rehab-target-item {
          min-height: 148px;
          display: grid;
          grid-template-columns: 36px minmax(0, 1fr);
          gap: 14px;
          align-items: start;
          padding: 24px;
          border-radius: 24px;
          background: #f6f8fb;
        }

        .hy-main-rehab-target-item em {
          color: #c29d66;
          font-size: 15px;
          font-style: normal;
          font-weight: 900;
          letter-spacing: 0.08em;
        }

        .hy-main-rehab-target-item strong {
          display: block;
          color: #303934;
          font-size: clamp(20px, 2.4vw, 24px);
          line-height: 1.4;
          font-weight: 700;
          letter-spacing: -0.045em;
          word-break: keep-all;
        }

        .hy-main-rehab-target-item p {
          margin-top: 8px;
          color: #6b746f;
          font-size: clamp(15px, 1.45vw, 18px);
          line-height: 1.65;
          letter-spacing: -0.03em;
          word-break: keep-all;
        }

        .hy-main-rehab-program {
          position: relative;
          margin-top: 120px;
        }

        .hy-main-rehab-program-head {
          display: flex;
          justify-content: space-between;
          align-items: flex-end;
          gap: 50px;
          margin-bottom: 44px;
        }

        .hy-main-rehab-controls {
          display: flex;
          flex: 0 0 auto;
          gap: 10px;
        }

        .hy-main-rehab-prev,
        .hy-main-rehab-next {
          position: relative;
          width: 52px;
          height: 52px;
          border: 1px solid rgba(38, 48, 43, 0.24);
          border-radius: 50%;
          background: transparent;
          cursor: pointer;
          transition: background 0.25s ease, border-color 0.25s ease;
        }

        .hy-main-rehab-prev::before,
        .hy-main-rehab-next::before {
          content: "";
          position: absolute;
          left: 50%;
          top: 50%;
          width: 10px;
          height: 10px;
          border-top: 1px solid #2f3934;
          border-right: 1px solid #2f3934;
        }

        .hy-main-rehab-prev::before {
          transform: translate(-38%, -50%) rotate(-135deg);
        }

        .hy-main-rehab-next::before {
          transform: translate(-62%, -50%) rotate(45deg);
        }

        .hy-main-rehab-prev:hover,
        .hy-main-rehab-next:hover {
          background: #75a9ba;
          border-color: #75a9ba;
        }

        .hy-main-rehab-prev:hover::before,
        .hy-main-rehab-next:hover::before {
          border-color: #fff;
        }

        .hy-main-rehab-prev.swiper-button-disabled,
        .hy-main-rehab-next.swiper-button-disabled {
          opacity: 0.3;
          cursor: default;
        }

        .hy-main-rehab-slider-window {
          --hy-main-rehab-card-height: 460px;
          position: relative;
          width: 100%;
          height: calc(var(--hy-main-rehab-card-height) + 10px);
          overflow: hidden;
          margin: 0;
          padding: 0;
        }

        .hyMainRehabSwiper {
          width: 100%;
          height: calc(var(--hy-main-rehab-card-height) + 10px) !important;
          overflow: hidden;
        }

        .hyMainRehabSwiper .swiper-wrapper {
          height: var(--hy-main-rehab-card-height) !important;
          align-items: stretch;
        }

        .hyMainRehabSwiper .swiper-slide {
          display: flex;
          height: var(--hy-main-rehab-card-height) !important;
          box-sizing: border-box;
        }

        .hy-main-rehab-program-card {
          width: 100%;
          height: var(--hy-main-rehab-card-height) !important;
          min-height: 0;
          display: flex;
          flex-direction: column;
          overflow: hidden;
          box-sizing: border-box;
          border: 1px solid rgba(47, 59, 52, 0.08);
          border-radius: 32px;
          background: #fff;
          transition: transform 0.28s ease, background 0.28s ease;
        }

        .hy-main-rehab-program-card:hover {
          transform: translateY(-6px);
          background: #fbfcff;
        }

        .hy-main-rehab-program-image {
          position: relative;
          flex: 0 0 270px;
          height: 270px;
          overflow: hidden;
          background: #dce3e0;
        }

        .hy-main-rehab-program-image::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(180deg, rgba(25, 33, 29, 0.02), rgba(25, 33, 29, 0.38));
          pointer-events: none;
        }

        .hy-main-rehab-program-image img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.6s ease;
        }

        .hy-main-rehab-program-card:hover .hy-main-rehab-program-image img {
          transform: scale(1.055);
        }

        .hy-main-rehab-program-image em {
          position: absolute;
          z-index: 2;
          left: 26px;
          bottom: 22px;
          color: #fff;
          font-size: 14px;
          font-style: normal;
          font-weight: 900;
          letter-spacing: 0.14em;
        }

        .hy-main-rehab-program-body {
          flex: 1 1 auto;
          min-height: 0;
          padding: 30px 30px 38px;
          box-sizing: border-box;
          background: #fff;
        }

        .hy-main-rehab-program-body>span {
          display: block;
          margin-bottom: 12px;
          color: #9b7a4c;
          font-size: 12px;
          font-weight: 900;
          letter-spacing: 0.12em;
        }

        .hy-main-rehab-program-body h4 {
          margin: 0;
          color: #303934;
          font-size: clamp(22px, 1.65vw, 27px);
          line-height: 1.35;
          font-weight: 700;
          letter-spacing: -0.05em;
        }

        .hy-main-rehab-program-body p {
          margin-top: 14px;
          color: #68716d;
          font-size: clamp(16px, 1.3vw, 18px);
          line-height: 1.7;
          letter-spacing: -0.03em;
          word-break: keep-all;
        }

        @media (max-width: 1280px) {
          .hy-main-rehab-intro {
            grid-template-columns: 1fr;
            gap: 28px;
          }

          .hy-main-rehab-key-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
          }

          .hy-main-rehab-target {
            grid-template-columns: 1fr;
          }

          .hy-main-rehab-target-visual {
            min-height: 560px;
          }
        }

        @media (max-width: 1024px) {
          .hy-main-rehab {
            padding: 110px 24px 120px;
          }

          .hy-main-rehab::before {
            top: 50px;
            font-size: 20vw;
          }

          .hy-main-rehab-heading h2 {
            font-size: clamp(38px, 7vw, 56px);
          }

          .hy-main-rehab-target {
            margin-top: 80px;
          }

          .hy-main-rehab-target-visual,
          .hy-main-rehab-target-panel {
            border-radius: 32px;
          }

          .hy-main-rehab-program {
            margin-top: 90px;
          }
        }

        @media (max-width: 768px) {
          .hy-main-rehab {
            padding: 88px 20px 96px;
          }

          .hy-main-rehab-kicker,
          .hy-main-rehab-target-head>span,
          .hy-main-rehab-program-head>div>span,
          .hy-main-rehab-target-copy>span {
            font-size: 12px;
            letter-spacing: 0.12em;
          }

          .hy-main-rehab-heading h2 {
            font-size: 34px;
            line-height: 1.25;
          }

          .hy-main-rehab-intro-side>p {
            font-size: 16px;
          }

          .hy-main-rehab-key-grid,
          .hy-main-rehab-target-list {
            grid-template-columns: 1fr;
          }

          .hy-main-rehab-key-grid {
            margin-top: 42px;
          }

          .hy-main-rehab-key-card {
            min-height: 0;
            padding: 22px;
            border-radius: 22px;
          }

          .hy-main-rehab-key-card em {
            margin-bottom: 10px;
          }

          .hy-main-rehab-target {
            margin-top: 68px;
            gap: 18px;
          }

          .hy-main-rehab-target-visual {
            min-height: 460px;
            border-radius: 26px;
          }

          .hy-main-rehab-target-copy {
            left: 26px;
            right: 26px;
            bottom: 28px;
          }

          .hy-main-rehab-target-copy h3,
          .hy-main-rehab-target-head h3,
          .hy-main-rehab-program-head h3 {
            font-size: 29px;
          }

          .hy-main-rehab-target-panel {
            padding: 28px 22px;
            border-radius: 26px;
          }

          .hy-main-rehab-target-item {
            min-height: 0;
            grid-template-columns: 32px minmax(0, 1fr);
            padding: 20px;
            border-radius: 20px;
          }

          .hy-main-rehab-program {
            margin-top: 74px;
          }

          .hy-main-rehab-program-head {
            display: block;
            margin-bottom: 30px;
          }

          .hy-main-rehab-controls {
            margin-top: 24px;
          }

          .hy-main-rehab-prev,
          .hy-main-rehab-next {
            width: 46px;
            height: 46px;
          }

          .hy-main-rehab-slider-window {
            --hy-main-rehab-card-height: 450px;
          }

          .hy-main-rehab-program-card {
            border-radius: 24px;
          }

          .hy-main-rehab-program-image {
            flex-basis: 230px;
            height: 230px;
          }

          .hy-main-rehab-program-body {
            min-height: 0;
            padding: 24px 24px 32px;
          }
        }

        @media (max-width: 480px) {
          .hy-main-rehab {
            padding: 76px 18px 84px;
          }

          .hy-main-rehab-heading h2 {
            font-size: 29px;
          }

          .hy-main-rehab-more {
            margin-top: 24px;
          }

          .hy-main-rehab-target-visual {
            min-height: 400px;
          }

          .hy-main-rehab-target-copy p {
            font-size: 14px;
          }

          .hy-main-rehab-target-item strong {
            font-size: 16px;
          }

          .hy-main-rehab-target-item p,
          .hy-main-rehab-program-body p {
            font-size: 14px;
          }

          .hy-main-rehab-slider-window {
            --hy-main-rehab-card-height: 430px;
          }

          .hy-main-rehab-program-image {
            flex-basis: 210px;
            height: 210px;
          }
        }

        @media (prefers-reduced-motion: reduce) {

          .hy-main-rehab *,
          .hy-main-rehab *::before,
          .hy-main-rehab *::after {
            scroll-behavior: auto !important;
            animation: none !important;
            transition: none !important;
          }
        }


                /* =========================================================
           진료 건강검진 요약
        ========================================================= */

        .hy-last-care-section {
          position: relative;
          padding: 120px 0px 130px;
          background:
            radial-gradient(circle at 12% 10%, rgba(210, 181, 137, 0.18), transparent 34%),
            linear-gradient(135deg, #f8f3eb 0%, #fffaf4 48%, #eef5f2 100%);
          overflow: hidden;
          font-family: inherit;
          color: #2f332f;
        }
    
    
    
        .hy-last-care-inner {
          position: relative;
          z-index: 1;
          /* max-width: 1280px; */
          margin: 0 auto;
          padding: 0 7vw;
        }
    
        .hy-last-care-head {
          display: flex;
          justify-content: space-between;
          gap: 40px;
          align-items: flex-end;
          margin-bottom: 48px;
        }
    
        .hy-last-care-kicker {
          display: inline-flex;
          align-items: center;
          gap: 9px;
          margin-bottom: 16px;
          padding: 9px 16px;
          border: 1px solid rgba(133, 111, 79, 0.2);
          border-radius: 999px;
          background: rgba(255, 255, 255, 0.62);
          color: #8a704d;
          font-size: 14px;
          font-weight: 700;
          letter-spacing: -0.02em;
        }
    
    
        .hy-last-care-title {
          margin: 0;
          font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
          font-size: clamp(44px, 4.4vw, 48px);
          line-height: 1.15;
          font-weight: 700;
          letter-spacing: -0.065em;
          color: #1f2824;
        }
    
        .hy-last-care-title span {
          color: #9b7a4c;
        }
    
        .hy-last-care-desc {
          max-width: 440px;
          margin: 0;
          font-size: 17px;
          line-height: 1.75;
          color: #68706a;
          letter-spacing: -0.035em;
        }
    
        .hy-last-care-grid {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 24px;
        }
    
        .hy-last-care-card {
          position: relative;
          min-height: 430px;
          padding: 42px;
          border-radius: 30px;
          background: #fff;
          border: 1px solid rgba(255, 255, 255, 0.85);
          backdrop-filter: blur(14px);
          overflow: hidden;
          transition: transform 0.35s ease, box-shadow 0.35s ease;
        }
    
        .hy-last-care-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 10px 20px rgba(68, 59, 45, 0.05);
        }
    
        .hy-last-care-card.hy-care-guide {}
    
        .hy-last-care-card.hy-checkup-guide {}
    
        .hy-last-care-card::before {
          content: "";
          position: absolute;
          inset: 0;
          background: #fff;
          z-index: 0;
        }
    
        .hy-last-care-card>* {
          position: relative;
          z-index: 1;
        }
    
    
    
        .hy-last-care-card h3 {
          margin: 0 0 14px;
          display: block;
          margin-bottom: 14px;
          font-size: 26px;
          font-weight: 600;
          letter-spacing: -0.05em;
        }
    
        .hy-last-care-card p {
          margin: 0 0 28px;
          font-size: 18px;
          line-height: 1.75;
          color: #68706a;
          letter-spacing: -0.035em;
          word-break: keep-all;
        }
    
        .hy-last-care-list {
          display: grid;
          gap: 11px;
          margin: 0 0 34px;
          padding: 0;
          list-style: none;
        }
    
        .hy-last-care-list li {
          display: flex;
          align-items: center;
          gap: 10px;
          font-size: 18px;
          font-weight: 600;
          /* letter-spacing: -0.035em; */
          color: #37413a;
        }
    
        .hy-last-care-list li::before {
          content: "";
          width: 6px;
          height: 6px;
          border-radius: 50%;
          background: #a88959;
          box-shadow: 0 0 0 5px rgba(168, 137, 89, 0.12);
          flex: 0 0 auto;
        }
    
        .hy-last-care-btns {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
        }
    
        .hy-last-care-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          min-height: 48px;
          padding: 0 22px;
          border-radius: 999px;
          font-size: 15px;
          font-weight: 700;
          letter-spacing: -0.035em;
          text-decoration: none;
          transition: all 0.28s ease;
        }
    
        .hy-last-care-btn.primary {
          background: #2d3a33;
          color: #fff;
    
        }
    
        .hy-last-care-btn.primary:hover {
          background: #9b7a4c;
          color: #fff;
          transform: translateY(-2px);
        }
    
        .hy-last-care-btn.line {
          background: rgba(255, 255, 255, 0.72);
          border: 1px solid rgba(45, 58, 51, 0.16);
          color: #2d3a33;
        }
    
        .hy-last-care-btn.line:hover {
          border-color: rgba(155, 122, 76, 0.45);
          color: #9b7a4c;
          transform: translateY(-2px);
        }
    
        .hy-last-care-bottom {
          display: grid;
          grid-template-columns: 1.2fr 0.8fr;
          gap: 24px;
          margin-top: 24px;
        }
    
        .hy-last-info-box {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 28px;
          padding: 34px 40px;
          border-radius: 30px;
          background: rgba(45, 58, 51, 0.92);
          color: #fff;
        }
    
        .hy-last-info-box h3 {
          margin: 0 0 8px;
          margin-bottom: 14px;
          font-size: 26px;
          font-weight: 600;
          letter-spacing: -0.05em;
        }
    
        .hy-last-info-box p {
          margin: 0;
          color: rgba(255, 255, 255, 0.72);
          font-size: 18px;
          line-height: 1.65;
          letter-spacing: -0.03em;
        }
    
        .hy-last-tel {
          white-space: nowrap;
          font-size: clamp(26px, 3vw, 38px);
          font-weight: 800;
          letter-spacing: -0.04em;
          color: #f0d6a7;
          text-decoration: none;
        }
    
        .hy-last-mini-box {
          display: flex;
          flex-direction: column;
          justify-content: center;
          padding: 30px 34px;
          border-radius: 30px;
          background: #fff;
          border: 1px solid rgba(255, 255, 255, 0.85);
    
        }
    
        .hy-last-mini-box strong {
          display: block;
          margin-bottom: 8px;
          color: #9b7a4c;
          font-size: 15px;
          letter-spacing: -0.03em;
        }
    
        .hy-last-mini-box span {
          display: block;
          color: #2d3a33;
          font-size: 22px;
          line-height: 1.45;
          font-weight: 800;
          letter-spacing: -0.055em;
        }
    
        @media (max-width: 1024px) {
          .hy-last-care-section {
            padding: 92px 18px 100px;
          }
    
          .hy-last-care-head {
            display: block;
          }
    
          .hy-last-care-desc {
            margin-top: 22px;
          }
    
          .hy-last-care-grid,
          .hy-last-care-bottom {
            grid-template-columns: 1fr;
          }
    
          .hy-last-care-card {
            min-height: auto;
          }
        }
    
        @media (max-width: 640px) {
          .hy-last-care-section {
            padding: 76px 16px 84px;
          }
    
          .hy-last-care-head {
            margin-bottom: 34px;
          }
    
          .hy-last-care-kicker {
            font-size: 13px;
          }
    
          .hy-last-care-title {
            font-size: 34px;
          }
    
          .hy-last-care-desc {
            font-size: 15px;
          }
    
          .hy-last-care-card {
            padding: 30px 24px;
            border-radius: 26px;
          }
    
          .hy-last-care-card h3 {
            font-size: 25px;
          }
    
          .hy-last-care-card p,
          .hy-last-care-list li {
            font-size: 15px;
          }
    
          .hy-last-care-btns {
            display: grid;
            grid-template-columns: 1fr;
          }
    
          .hy-last-care-btn {
            width: 100%;
          }
    
          .hy-last-info-box {
            display: block;
            padding: 30px 24px;
            border-radius: 26px;
          }
    
          .hy-last-tel {
            display: inline-block;
            margin-top: 18px;
            font-size: 30px;
          }
    
          .hy-last-mini-box {
            padding: 28px 24px;
            border-radius: 26px;
          }
    
          .hy-last-mini-box span {
            font-size: 20px;
          }
        }